美文网首页React Native开发
the developerment server returne

the developerment server returne

作者: 蜗牛的学习方法 | 来源:发表于2018-05-17 13:37 被阅读9次

    昨天下午打包的时候遇到这个问题,在此记录下这个问题的解决方法。

    首先是报出这个错误,

    按照报错行数注释之后会出现下面的404错误

    该错误是因为react-native 版本自动下载到了最新版,需要在项目中指定版本

    1、修改android/build.gradle ,添加如下代码:

    configurations.all {

      resolutionStrategy {

          force'com.facebook.react:react-native:0.41.2'

      }

    }

    2、修改android/app/build.gradle 修改如下代码

    compile ("com.facebook.react:react-native:0.41.2") { force = true }

    这样就能解决该问题

    参考链接如下:https://www.jianshu.com/p/37baac2d9f65

    相关文章

      网友评论

        本文标题:the developerment server returne

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