1

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:

enter image description here

Can someone help with that?

MrVasilev
  • 1,503
  • 2
  • 17
  • 34

3 Answers3

3

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

Faysal Ahmed
  • 7,501
  • 5
  • 28
  • 50
Rohit Sharma
  • 1,384
  • 12
  • 19
1

May be the resolution of the icon is not proper. You can generate icon with proper resolution and other properties try this. Here you can choose and edit app icons as per android icon specifications.

Veeresh P
  • 436
  • 3
  • 15
0

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 ;)

MrVasilev
  • 1,503
  • 2
  • 17
  • 34