Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

build apk from react native

React Version 0.62.1
In your root project directory

Make sure you have already directory => android/app/src/main/assets/, 
if not create directory, after that 
create new file and save as index.android.bundle 
and put your file like this android/app/src/main/assets/index.android.bundle

///////////////////////
// building bundles //
//////////////////////
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/

///////////////////////
// building Debug Apk //
//////////////////////
cd android && ./gradlew assembleDebug

///////////////////////
/////Get the Apk/////
//////////////////////
cd app/build/outputs/apk/
  
  

///////////////////////
// building Release Apk //
//////////////////////
cd android && ./gradlew assembleRelease
Source by medium.com #
 
PREVIOUS NEXT
Tagged: #build #apk #react #native
ADD COMMENT
Topic
Name
6+9 =