Explanation:
I have a working app in google play market. Everything works fine in android versions from 4.0-7.0.
Case:
When the client downloaded it on his Android 8.0 (Oreo) a launcher icon did not seem to show instead android's default launcher icon is showing!!
Question:
Anyone who has encountered such issue? I need any hints to solve it since it seems weird because I have all 4 typed .png icons in mipmap folder.

- 37,901
- 21
- 84
- 115

- 2,077
- 4
- 19
- 42
7 Answers

- 1,713
- 15
- 28
-
Now I will try and let you know whether it will work or not. – Zafar Kurbonov Dec 22 '17 at 09:23
-
1Yes. it did work. If I had an .svg icons would it still be a problem @Nirav Joshi? – Zafar Kurbonov Dec 22 '17 at 09:25
-
1Best and easiest way to do it. – GONeale May 24 '18 at 06:18
-
https://android.jlelse.eu/android-and-the-mystery-of-the-disappearing-launcher-icon-154f9267f98e – Nirav Joshi Jun 04 '18 at 11:21
-
How to open this asset studio ? I mean can you please tell teh steps to open assests studio ? – B.shruti Jul 03 '18 at 08:29
-
3File -> New - > Image Asset @B.shruti – Nirav Joshi Jul 05 '18 at 10:00
-
Thanks @Nirav Joshi – B.shruti Jul 05 '18 at 12:03
-
when i'm tapping the next button screen is shaking, its not creating can you please help me – Harish Oct 04 '18 at 10:21
This might not be the ideal solution. But deleting the directory named mipmap-anydpi-v26 will resolve the issue if you have correct icons in relevant folders.

- 619
- 7
- 14
I was having the same problem make sure you have set drawable or mipmap to icon attribute as well as roundIcon attribute under application tag in your Manifest file
<application
android:icon="@drawable/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round">
</application>
This might resolve someone's issue. Thanks.

- 1,511
- 1
- 13
- 37
None of the previous answers worked for me. I discovered my project had a file app/src/main/res/drawable-v24/ic_launcher_foreground.xml
while another project didn't. That was the reason the other project did have an icon in Android 8 and this project not. When I removed the drawable-v24
folder I got my icon back!

- 1,304
- 1
- 11
- 29
Android -> Project -> App - > src -> res
right-click on res then -> new -> image asset -> inside add image set as your logo ratio

- 1,699
- 16
- 13