码迷,mamicode.com
首页 > Web开发 > 详细

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

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

标签:repo   tag   nbsp   you   task   option   ldd   com   conf   

今天导入一个工程到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也许能帮助你

标签:repo   tag   nbsp   you   task   option   ldd   com   conf   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!