Skip to content

Instantly share code, notes, and snippets.

@full-stack-king
Last active November 8, 2022 05:44
Show Gist options
  • Save full-stack-king/4aba241ef017d76916f68513c7683848 to your computer and use it in GitHub Desktop.
Save full-stack-king/4aba241ef017d76916f68513c7683848 to your computer and use it in GitHub Desktop.
React / React Native apk build release build and cache clear

Clear bundle cache before release build

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/

Get a release build

cd android && ./gradlew assembleRelease && ../

Get a debug build

cd android && ./gradlew assembleDebug && ../
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment