react native应用程序不是打包的最新页面

时间:2019-08-21 03:24:04

标签: android react-native

应用程序开发完成后,我想将其打包以供发布。在我的手机上安装它,而不是最新页面

反应性:0.58.6 反应:16.8.3

cd android && gradlew assembleRelease

2 个答案:

答案 0 :(得分:0)

尝试运行(对于RN android)

1. react-native start --reset-cache
 2. 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
 3. cd android
 4. gradlew clean
 5. gradlew assembleDebug

答案 1 :(得分:0)

以下是解决此问题所需执行的步骤。

删除android文件夹并执行本机升级(不是本机运行android)

在以下位置创建文件夹。

your_app / android / app / src / main 在根目录中执行以下命令。 (只需复制并粘贴以下代码)

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/
Please note if you are using index.android.js then replace it in --entry-file.

最后

cd android && ./gradlew installDebug

希望这可以解决您的问题。

Go to this reference