Skip to content

Instantly share code, notes, and snippets.

@mallendeo
Created January 11, 2021 15:34
Show Gist options
  • Save mallendeo/a5817788466008ee769356e4bc81643c to your computer and use it in GitHub Desktop.
Save mallendeo/a5817788466008ee769356e4bc81643c to your computer and use it in GitHub Desktop.
Build react-native release apk for android
npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
cd android && ./gradlew assembleRelease; cd ..
cp android/app/build/outputs/apk/release/app-release.apk ~/Desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment