Prepare Android app for Google Play

Checklist

Launcher Icons

Size your image assets.

  • mipmap-mdpi: 48 x 48

  • mipmap-hdpi:72 x 72

  • mipmap-xhdpi: 96 x 96

  • mipmap-xxhdpi: 144 x 144

Replace the icons in these folder with your own icons.

  • myawesomeproject/android/app/src/main/res/mipmap-hdpi/ic_launcher.png

  • myawesomeproject/android/app/src/main/res/mipmap-mdpi/ic_launcher.png

  • myawesomeproject/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

  • myawesomeproject/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

SplashScreen

https://medium.com/@101/splash-screen-in-android-769d3b0bafd0#.cep53047v

$ cd android
$ ./gradlew assembleRelease
$ react-native run-android --variant=release

Last updated

Was this helpful?