Skip to content

Instantly share code, notes, and snippets.

@akamahesh
Created April 18, 2018 15:26
Show Gist options
  • Save akamahesh/687f07a5ca834888bf965fd473ecd27f to your computer and use it in GitHub Desktop.
Save akamahesh/687f07a5ca834888bf965fd473ecd27f to your computer and use it in GitHub Desktop.
Generating Unsigned AndroidAPK for react native

You need to manually create the bundle for a debug build. Bundle debug build:

react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug

Create debug build: cd android ./gradlew assembleDebug For Windows: gradlew assembleRelease Generated apk will be located at android/app/build/outputs/apk P.S. Another approach might be to modify gradle scripts.

Note : mark android.enableAapt2=false on gradle.properties file to solve .flat icon error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment