Android stuido新建Project Gradle:Download https:// jcenter.bintray.com/ 下载慢,超时问题解决方法。

 

转载请标明出处:https://blog.csdn.net/mars314/article/details/81910789

网上搜索资料说的两种方式,自己也发现一种放到这里总结一下。

 

方法一:

https 改成 http 协议下载,修改项目根目录下 build.gradle 文件:

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

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

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

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

亲测,此方法成功率很低。

方法二:

切换到国内的Maven镜像仓库。
修改项目根目录下 build.gradle 文件,将 jcenter() 或者 mavenCentral() 替换掉即可。可以用国内的仓库代替:

  • 阿里的仓库地址:http://maven.aliyun.com/nexus/content/groups/public/
  • OSChina的仓库地址:http://maven.oschina.net/content/groups/public/

buildscript {
    
    repositories {
    maven{ url 'http://maven.aliyun.com/nexus/content/repositories/central/'}
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'
        

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

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

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

亲测,很有效;阿里有效,OSChina自行验证。

 

方法三:

手机开热点,电脑连接上手机热点,用手机完成;

亲测有效。

 

方法四:

万能方法,此方法怎么着都行,离线gradle都成。下载https://download.csdn.net/download/mars314/10618153覆盖你的gradle,可解决无法下jcenter缓慢超时问题!

 

总结:原地址:https:// jcenter.bintray.com/一亘有一次下载成功了,以后都会成功。修改协议:后续工程也得修改协议/

你可能感兴趣的:(Android,Studio,配置)