gradle版本镜像
    用腾讯镜像。https://mirrors.cloud.tencent.com/gradle/
    在 gradle-wrapper.properties 文件中修改:

    1. distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-6.5.1-all.zip

    腾讯有很多软件的镜像,比如docker、homebrew、Ubuntu等,非常方便。

    仓库镜像
    使用阿里云 公共代理库

    1. allprojects {
    2. repositories {
    3. // Insert local test repo here
    4. maven {
    5. url 'https://maven.aliyun.com/repository/public/'
    6. }
    7. maven {
    8. url 'https://maven.aliyun.com/repository/google'
    9. }
    10. jcenter()
    11. google()
    12. }
    13. }