Hi I added icons to android/app/src/main/res/..., the app icon showing perfectly in home screen like first image, but when minimize the app it showing default app icon like second image. how can change that icon also. I cleaned build folder, gradlew and reinstalled the app but no changes. Please help me on this
Asked
Active
Viewed 3,989 times
1
-
did you check my answer? – codehesh Oct 28 '21 at 12:59
-
1After clear cache in mobile device the app icon appears properly – Joshi G Oct 29 '21 at 05:47
2 Answers
0
put this on AndroidManifest.xml and try
<application
...
android:icon="@drawable/ic_launcher"
...
</application>
also hope you update the icons properly. please refer this https://code.tutsplus.com/tutorials/how-to-update-the-launcher-icon-for-your-android-app--cms-30624

codehesh
- 875
- 10
- 29
0
I'm not sure if this comes after you setup androidManifest.xml but you will need icons in these two folders:
- android/app/src/main/res/mipmap.
- ios//Images.xcassets/AppIcon.appiconset
I've used the resize-reactnative-launcher-icon shell scrip to generate my icons. It takes a png image and creates the 25 variations you need by size and resolution.

Lucas S.
- 77
- 6