react-native 环境搭建 遇到的坑

作者: Super面包 | 来源:发表于2018-06-25 17:24 被阅读22次

    问题:Cannot find entry file index.android.js in any of the roots

    解决方案:

    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

    执行成功后会在seests下自动生成两个文件

    备注:上面的命令中indexr.js文件名字要和根目录下js文件名字相同,RN版本不同创建的首页的js文件不同,有的解决方案是输入android.js

    根目录

    附:

    React-Native环境搭建详细教程:https://blog.csdn.net/mybook1122/article/details/78562797?locationNum=8&fps=1

    相关文章

      网友评论

        本文标题:react-native 环境搭建 遇到的坑

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