When I first built my Android application the launcher logo was automatically set to this:
android:icon="@mipmap/ic_launcher"
which shows the Android logo. Now I changed it (with the instruction of this link) to a flashlight picture. If I try to run my app everything is working fine and it is the right launcher logo (flashlight).
But I decided to take a new launcher logo, so I deleted the whole new folder which was created in my mipmap
folder. At first, I changed the android:icon in the AndroidManifest.xml
back to the ic_launcher
.
But if I try to run the app again, my launcher logo is still the flashlight. But it should be the Android logo. What did I do wrong?
I followed the instruction again and tried to add a new .png file, but now not even the new mipmap-folder is created.
Is there something else I need to consider?