Skip to content Skip to sidebar Skip to footer

Cannot Change Launcher Icon Android

I am trying to change launcher icon for the application I am developing but the icon remains same (Android Studio 3.0). I have tried changing it from manifest.xml and minimap. It a

Solution 1:

try to move your your ic_launcher_torch icon into mipmap directory

Solution 2:

  1. Remove the ic_launcher_torch.png file from drawables folder.
  2. Right click on res folder> New Image Asset > Icon type > Action Bar and Tab Icons > Asset type - image > Choose your logo in path > finish.
  3. Add android:icon="@mipmap/yourLogoName"

The image will be saved in /res/drawable folder. Learn more: https://developer.android.com/studio/write/image-asset-studio.html

Solution 3:

Copy & paste launcher icon .png file to mipmap folder. Better if you add icon to all screen types hdpi, mdpi, xhdpi & etc. Then change android manifest code like this.

android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"

Solution 4:

make changes in manifest file at both location android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round"

First uninstall the app from the phone(dont reinstall when you already have it installed) After the app is uninstalled ,try installing it once again . I had the same issue ,wasted around 2 hrs and this worked for me

Post a Comment for "Cannot Change Launcher Icon Android"