1

I have replaced the standard android studio app icon (ic_launcher) with my own(one for each dimension in the mipmap folders) and deleted the ic_launcher round icons since i won't be using round icons on my app. The problem is that although the icons show up correctly in the res->mipmap->ic_launcher folder, when i install the app on my phone the app's icon is the default one and not the one i chose. Also, if you go into tje phone's app info, the app's icon shows up correctly. I have no clue on why this is happening. Any idea?

Zoe
  • 27,060
  • 21
  • 118
  • 148
Stelios Papamichail
  • 955
  • 2
  • 19
  • 57

2 Answers2

1

Go to manifest and look for roundicon and dont forget to change there.

Prits Ramani
  • 100
  • 4
0

Go to manifest and replace default icon name with yours here:

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