美文网首页
React native问题:Unable to load sc

React native问题:Unable to load sc

作者: 木木禾木 | 来源:发表于2019-05-05 16:10 被阅读0次

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

相关文章

网友评论

      本文标题:React native问题:Unable to load sc

      本文链接:https://www.haomeiwen.com/subject/wjdhoqtx.html