I can't really figure out how to change the app's icon that appears when you install the app, the one on the screen that you have to click.
What i did:
- I created a new icon --> new > Image asset (mipmap)
- I deleted ic_launcher (the default one)
- I named the new asset like the old icon (ic_launcher)
- Rebuild
- Clean project
- Invalidate cache and restart
- Installed app
nothing. I still have my app with the annoying default mipmap ic_launcher icon.
I don't really know what to do more than this..
Can anyone help me?
EDIT: Sorry, I forgot the manifest.
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true" >
...
...
</application>