The launch icon is not display well on devices with OS 8.0/8.1 Oreo. I make everything like here Launcher Icon is not Shown in Oreo 8.0/8.1, but the result is that:
Can someone help with that?
The launch icon is not display well on devices with OS 8.0/8.1 Oreo. I make everything like here Launcher Icon is not Shown in Oreo 8.0/8.1, but the result is that:
Can someone help with that?
After nougat there are two layers for an icon one is foreground and one is background What you need to do is Right click on the app icon then go to new -> image asset -> choose launcher icons -> then there you can choose background and foreground layer then finish the process and in manifest as follows -
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
you will find both the icons in mipmap folder in your resources
The solution was just to upload a svg file for the foreground layer and put some color for the background layer. Now the launch icon is shown correct. Hope this can help to someone else ;)