Win7 React Native真机调试:
Unable to load script from assets 'index.android.bundle'. Make sure your bundle is packaged correctly or you're running a packager server
image.png
解决:
1、打开React Native的项目文件夹(如RNApp),在...\android\app\src\main目录下创建一个空的assets文件夹;
2、用cmd进入项目根目录(RNApp),执行下面代码:
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
注意:
第2步中有些博客中命令是错误的:
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,而是index.js
网友评论