I'm currently struggling to change the default Android app icon in react native. I've got it to work on ios, but for some reason it won't update on Android.
My folder structure is:
android/app/src/main/res
+-- drawable
| +-- splashscreen.xml
+-- drawable-hdpi
| +-- splashscreen_image.png
+-- drawable-mdpi
| +-- splashscreen_image.png
+-- drawable-xhdpi
| +-- splashscreen_image.png
+-- drawable-xxhdpi
| +-- splashscreen_image.png
+-- drawable-xxxhdpi
| ++--splashscreen_image.png
+-- mipmap-anydpi-v26
| +-- ic_launcher_round.xml
| +-- ic_launcher.xml
+-- mipmap-hdpi
| +-- ic_launcher_foreground.png
| +-- ic_launcher_round.png
| +-- ic_launcher.png
+-- mipmap-anydpi-mdpi
| +-- ic_launcher_foreground.png
| +-- ic_launcher_round.png
| +-- ic_launcher.png
+-- mipmap-anydpi-xhdpi
| +-- ic_launcher_foreground.png
| +-- ic_launcher_round.png
| +-- ic_launcher.png
+-- mipmap-anydpi-xxhdpi
| +-- ic_launcher_foreground.png
| +-- ic_launcher_round.png
| +-- ic_launcher.png
+-- mipmap-anydpi-xxxhdpi
| +-- ic_launcher_foreground.png
| +-- ic_launcher_round.png
| +-- ic_launcher.png
I've changed the ic_launcher.png files to my own original ones and they won't update. I've also tried deleting the mipmap-anydpi-v26 xml files and rebuilding it but that hasn't worked.
I really appreciate any help on this issue.
