首页 > 移动平台 > 详细

【Android】Gradle下载不动,修改为阿里镜像

时间:2021-06-04 01:32:07      阅读:14      评论:0      收藏:0      [点我收藏+]

修改build.gradle文件

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        //添加镜像
        maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.1"

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

allprojects {
    repositories {
        google()
        //添加镜像
        maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
        jcenter() // Warning: this repository is going to shut down soon
    }
}

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

 

【Android】Gradle下载不动,修改为阿里镜像

原文:https://www.cnblogs.com/360School/p/14847739.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!