Answers for "how to generate apk file of a react native app"

7

react native android build apk

For apk : cd android && ./gradlew assembleRelease
For aab : cd android && ./gradlew bundleRelease
Posted by: Guest on January-25-2022
5

react native build apk

'
For apk : cd android && ./gradlew assembleRelease
For aab : cd android && ./gradlew bundleRelease
,
Posted by: Guest on February-13-2022
16

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 android build apk

cd android
./gradlew assembleRelease
Posted by: Guest on May-18-2020
0

create apk react native

cd android 
./gradlew assemble 

</----if this error shows up 

 Could not open settings generic class cache for settings file 
 > BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 60
Change Java version to the 8 or 11 and execute ./gradlew assembleRelease

-----/>

java -version
/usr/libexec/java_home -v 1.8.0_311 --exec javac -version
Posted by: Guest on January-25-2022

Code answers related to "how to generate apk file of a react native app"

Code answers related to "Javascript"

Browse Popular Code Answers by Language