跑的时候会报unable to load script from assets ‘index.android bundle’ ,make sure your bundle is packaged correctly or youu’re runing a packager server这个错误!
我查资料后采用的方法是
解决报错的方法:
第一步:在Android/app/src/main目录下创建一个空的assets文件夹,
第二步:进入项目根目录执行下面代码:
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/
这样子的解决方法带来的后果是
Cannot find entry file index.android.js in any of the roots: ["E:\\reactProject\\helloWord"]
唉不知所措啦
推荐使用Genymotion模拟器测试吧!然后在真机测试吧!