美文网首页
集成React Native遇到的bug

集成React Native遇到的bug

作者: 哎一不小心就 | 来源:发表于2019-04-18 13:50 被阅读0次

    一、用as打包的时候报错(react-native版本0.57.8打包遇到一个莫名其妙的错误:Duplicate resources)

    解决方法:在node_modules/react-native/react.gradle 增加doLast代码块

    解决方法二:把raw目录下的文件删除(可以先copy一份),文件是react native生成的

    二、运行React Native 目录下的Android项目时报错没有找到index.android.bundle文件

    解决方法:在android/app/src/main目录下创建assets资产目录然后调用如下命令行

    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遇到的bug

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