添加我运行代码:
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
得到这个错误:
在任何根目录中找不到条目文件index.android.js:[“E:\ git_app”]?
为什么会出现这个错误?以及如何进行研究?谢谢!
ENV: 窗口10 android studio 3.0.1 Cmder
答案 0 :(得分:0)
我看到根项目中有名为App和index的文件。我假设你使用新版本的本地反应。
您无法使用该命令,因为将index.android.js
更改为index.js
。
请尝试使用此代码:
mkdir 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
在此链接上查看原始答案:
Unable to load script from assets index.android.bundle on windows