gradle版本镜像
用腾讯镜像。https://mirrors.cloud.tencent.com/gradle/ 。
在 gradle-wrapper.properties 文件中修改:
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-6.5.1-all.zip
腾讯有很多软件的镜像,比如docker、homebrew、Ubuntu等,非常方便。
仓库镜像
使用阿里云 公共代理库 。
allprojects {
repositories {
// Insert local test repo here
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/google'
}
jcenter()
google()
}
}