Home > Software engineering >  Android app icon / ic_launch icon has white padding
Android app icon / ic_launch icon has white padding

Time:10-15

Generated an app icon using https://appicon.co/

Ive used this before for other apps and its working great but this time my app icon has white padding on android OS, , any idea why ?

Im using react native & already added assets to android native side

app icon

How icon looks on android home

icon on android

CodePudding user response:

Try using this website to generate icons before uploading the image here make sure your icon doesn't have any transparent padding. I've used this website multiple times works perfectly.

CodePudding user response:

Turns out the issue is because the icon I'm using has transparent background. IOS did add white bg by default and handled it, android handled it by rapping the icon with white padding also.

Fixed after changing background to be white.

  • Related