启动react native,在genymotion中报错“unable to load script from assets 'index.android.bundle'.”的解决办法

一段时间没启react native,最近启动后报错:

unable to load script from assets 'index.android.bundle'.Make sure your bundle ispackged correctly or you are running a packger server.

经查找终于知道原因了,是因为react native的版本更新后启动入口文件会寻找目录android\app\src\main\assets\index.android.bundle。项目下没有该文件会报错。

解决办法:

1、进入\android\app\src\main,新建assets文件夹

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
最后再运行react-native run-android,就不再报错了。

你可能感兴趣的:(react,native)