美文网首页
React Native关于jcenter.bintray崩溃的

React Native关于jcenter.bintray崩溃的

作者: 以德扶人 | 来源:发表于2019-03-21 17:32 被阅读0次

    今天很多RN的安卓项目同时跑不起来了,是因为https://jcenter.bintray.com/ 网站挂了,产生的问题.

    具体会报错: Could not resolve com.android.tool.build:gradle:2.3.+

    目前解决方法是替换为阿里云的镜像.
    将报错用到的安卓组件在build.gradle文件里面的jcenter() 都替换掉
    具体是这样:

    repositories {
        google()
        maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    //    jcenter()
      
    }
    
    
    allprojects {
        repositories {
            mavenLocal()
            google()
            maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
            maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
            //jcenter()
           
        }
    }
    
    

    相关文章

      网友评论

          本文标题:React Native关于jcenter.bintray崩溃的

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