React Native - How to change App Icon and App Name

Change App icon 

App icon path is referred in AndroidManifest.xml







Path : android/app/src/main/res/

Delete all folder starting with mipmap-*







Create new icon (square and circle) from the below link and download each respectively.









https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html

copy the folders and paste it in android/app/src/main/res/

Important : Each mipmap folder should have a square and circle icon or else build will give error.


Change App Name

In android/app/src/main/res//values/strings.xml

Change the app name inside the <string> tag





Source : https://www.youtube.com/watch?v=uw3SuJzX6CQ





Comments