Set Android app Icon - building Enterprise

Hi,

I do not seems to understand how to assign the proper Android app icon. When I build and deploy, I do not see the Android icon we have design. It is always the android robot icon. Our icons are ok as we are use to this with Corona Pro.

But with Enterprise, we do not understand how to establish the link with our Android Icons.

Any help or pointing in a direction will help.

Thanks

I manually put them in the standard location for native Android projects which is the /res directory of the project.

Each resolution is further put into its own “drawable” directory.

/res/drawable-hdpi/icon.png /res/drawable-ldpi/icon.png /res/drawable-mdpi/icon.png /res/drawable-xhdpi/icon.png /res/drawable-xxhdpi/icon.png

Also make sure your AndroidManifest.xml declares the icon “@drawable/icon” in its <application> element

\<application android:name="CoronaApplication" android:label="MyAwesomeApp" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:debuggable="false"\>

Thanks @ingemar, works perfectly :slight_smile:

I manually put them in the standard location for native Android projects which is the /res directory of the project.

Each resolution is further put into its own “drawable” directory.

/res/drawable-hdpi/icon.png /res/drawable-ldpi/icon.png /res/drawable-mdpi/icon.png /res/drawable-xhdpi/icon.png /res/drawable-xxhdpi/icon.png

Also make sure your AndroidManifest.xml declares the icon “@drawable/icon” in its <application> element

\<application android:name="CoronaApplication" android:label="MyAwesomeApp" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:debuggable="false"\>

Thanks @ingemar, works perfectly :slight_smile: