Skip to content

Instantly share code, notes, and snippets.

View ChousinRahit's full-sized avatar

K Chousin Rahit ChousinRahit

  • ThinkJs
  • Bengaluru
View GitHub Profile
@dmandrade
dmandrade / gist:e76a2da8da8a325f3ab9e275da15d5d9
Last active May 2, 2024 23:27
React Native build unsigned apk without development server
# create assets folder in the current project
$ mkdir android/app/src/main/assets
# create bundle script
$ 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/
# execute command to run android to create debug apk
$ react-native run-android
# change to android folder