Android App Icon showing Corona Default Icon

I’m using daily build Corona-3582. I’ve replaced the icons in the “AndroidResources” directory with my app’s icons while keeping the exact same sizes and file names (only the ic_launcher ones not the ic_launcher_foreground) and after installing it shows the Corona Default Icon (grey with “ICON” text). Replacing the iOS ones works just fine.

What am I doing wrong?

I’ve created a new project and replaced just the icons in the AndroidResources directory and still NOTHING.
I’m not sure where it’s grabbing the default image from.
Is anyone encountering this?

You probably have an Android device running Android 8 or newer. Icon design has been changed with Android 8, and will use the ic_launcher_foreground.png instead of the older Androids’ ic_launcher.png

https://docs.coronalabs.com/guide/distribution/androidResources/index.html
https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive

The needed icons will be a bit different sized than they used to be in Android 7, check the correct sizes and be aware of the safe zone (66 dp zone in the middle of your 108 dp icon)

1 Like

Thank you!

I was confident that the ‘ic_launcher.png’ should be replaced and not ‘ic_launcher_foreground.png’. After changing them it does show them.