android gradle使用阿里mirror

修改 google()和 jcenter() 为

maven{url 'https://maven.aliyun.com/repository/public'}
maven{url 'https://maven.aliyun.com/repository/google'}

修改后的gradle文件如下:

buildscript {
    repositories {
        maven{url 'https://maven.aliyun.com/repository/public'}
        maven{url 'https://maven.aliyun.com/repository/google'}

//        google()
//        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.1.0"

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

allprojects {
    repositories {
        maven{url 'https://maven.aliyun.com/repository/public'}
        maven{url 'https://maven.aliyun.com/repository/google'}

//        google()
//        jcenter()
    }
}

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

其他的maven的mirror:

  • 阿里云maven mirror: https://maven.aliyun.com/mvn/guide

猜你喜欢

转载自blog.csdn.net/yao_zhuang/article/details/109522689
今日推荐