美文网首页
react-native 0.46升级0.51报错:Bundli

react-native 0.46升级0.51报错:Bundli

作者: IDO0 | 来源:发表于2018-01-04 14:41 被阅读0次

    如图:


    0.46updateto0.51.png

    解决:
    1:android /app/build.gradle
    添加如下:

    project.ext.react = [
            entryFile: "index.js"
    ]
    

    2:在MainApplication里面

     @Override
        protected String getJSMainModuleName() {
          return "index";
        }
    

    3:修改index.ios.js&&index.android.ios->index.js
    将这两个文件合并一个命名index.js.

    参考:https://github.com/wuyunqiang/ReactNativeUtil/issues/33

    相关文章

      网友评论

          本文标题:react-native 0.46升级0.51报错:Bundli

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