Answers for "building apk react native"

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

react-native make android apk

cd android && ./gradlew assembleRelease
Posted by: Guest on July-28-2020
0

react native create apk

Place your terminal directory to android using:

cd android
)================
For Windows, 
  gradlew assembleRelease
)=================

)=================
For Linux and Mac OSX:

./gradlew assembleRelease
)==================
Posted by: Guest on May-11-2021
-1

how to make apk in android studio reac native

$ keytool -genkey -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
Posted by: Guest on June-30-2020

Browse Popular Code Answers by Language