码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2021-06-04 19:09:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:aliyun   modules   ldd   long   镜像   classpath   repo   ups   maven   

修改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下载不动,修改为阿里镜像

标签:aliyun   modules   ldd   long   镜像   classpath   repo   ups   maven   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!