如何在React Native 0.71.2中为Android生成构建APK

jmo0nnb3  于 2023-03-03  发布在  React
关注(0)|答案(1)|浏览(181)

我使用react原生版本“0.71.2”创建了一个新项目。在APK中,资产没有捆绑,并且在Build.gradle中没有bundleInDebug选项
希望生成捆绑js和资产的构建APK

2w2cym1i

2w2cym1i1#

使用资产生成调试:

您可以使用以下步骤构建调试版本:
1.使用(一个时间步长)创建资源目录

mkdir ./android/app/src/main/assets/

1.创建一个名为www.example.com的空白文件index.android(一个时间步骤)

touch ./android/app/src/main/assets/index.android

1.捆绑应用程序使用

react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/src/main/assets/index.android --assets-dest ./android/app/src/main/res/
react_native_generate_debug_apk1

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

1.使用构建调试APK

cd android/ 
./gradlew assembleDebug

使用资产构建版本:

您可以使用以下命令构建一个发布版本,这要容易得多:

cd android
./gradlew assembleRelease

相关问题