I updated my project ic_launcher
icon from drawable
to mipmap
with the following configuration:
Old project:
drawable
- ic_launcher.png(5)
-- ic_launcher.png(hdpi)
-- ic_launcher.png(mdpi)
-- ic_launcher.png(xhdpi)
-- ic_launcher.png(xxhdpi)
-- ic_launcher.png(xxxhdpi)
Manifest android:icon="@drawable/ic_launcher"
New project:
mipmap
- ic_launcher.png(5)
-- ic_launcher.png(hdpi)
-- ic_launcher.png(mdpi)
-- ic_launcher.png(xhdpi)
-- ic_launcher.png(xxhdpi)
-- ic_launcher.png(xxxhdpi)
Manifest: android:icon="@mipmap/ic_launcher"
After a new release of my application I had a bad surprise, users that made the update to the new version had all the default android icon instead of the app icon provided.
How to be able to make this transition working? Because I used every tricks without any outputs.