首页 > Web开发 > 详细

JCenter下载太慢, jcenter修改 https为http也许能帮助你

时间:2018-06-16 11:06:21      阅读:236      评论:0      收藏:0      [点我收藏+]

今天导入一个工程到studio,一直卡在下载那块。

看到下载地址是:
https://jcenter.bintray.com/........
https!!!!

到浏览器下载,果然也下载不下来。。

于是把https换成http,到浏览器下载,很快就能下载下来。。

好的,怎么修改成http呢?我找了半天没找到。结果,尝试了一下,OK了!!!

下面是build.gradle的内容:主要增加了jcenter(){url ‘http://jcenter/bintray.com/‘} 

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter(){ url ‘http://jcenter.bintray.com/‘}
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:2.0.0‘

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter(){url ‘http://jcenter.bintray.com/‘}
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

希望能帮到大家。

JCenter下载太慢, jcenter修改 https为http也许能帮助你

原文:https://www.cnblogs.com/kenshinobiy/p/9189956.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!