gradle替换国内源

如果用gradle wrapper,会自动从https\://services.gradle.org/distributions/gradle去下载合适的gradle版本,可以替换成国内源。
修改gradle/wrapper/gradle-wrapper.properties:

distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-8.5-bin.zip

build.gradle替换成阿里源:

repositories {
    maven {
        url "https://maven.aliyun.com/repository/public"
    }
}

你可能感兴趣的:(开发小笔记,gradle)