Answers for "compile react native to apk"

10

build apk react native

After run this in cmd

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 assembleDebug

then you can get apk app/build/outputs/apk/debug/app-debug.apk
Posted by: Guest on September-02-2020
2

react native apk build

For windows, gradlew assembleRelease

For Linux, ./gradlew assembleRelease
Posted by: Guest on June-06-2021
1

export apk react native

Before uploading the release build to the Play Store, 
make sure you test it thoroughly. 

mkdir -p android/app/src/main/assets
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
react-native run-android --variant=release

Export Apk -
cd android && ./gradlew bundleRelease -x bundleReleaseJsAndAssets

- Your AAB BUNDLE will be present in the folder
<project>/android/app/build/outputs/bundle/release
Posted by: Guest on April-27-2020
1

location of release apk in react native

For Windows 'cd android' and then run gradlew assembleRelease command , and find your signed apk under android/app/build/outputs/apk/app-release.apk
Posted by: Guest on December-16-2020
0

react native generate release apk

Prerequisite:
-----------------
react-native version > 0.57

How to generate one in 3 steps?
---------------------------------  
Step 1: Go to the root of the project in the terminal and run the below command:
---------------------------------------------------------------------------------
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

Step 2: Go to android directory:
---------------------------------

  cd android

Step 3: Now in this android folder, run this command
------------------------------------------------------
  ./gradlew assembleDebug
  
There! you'll find the apk file in the following path:
yourProject/android/app/build/outputs/apk/debug/app-debug.apk

Now you have your .apk file generated, install it on your android phone and enjoy!

Thank you.
Posted by: Guest on August-07-2021

Browse Popular Code Answers by Language