在编译的过程中,有的依赖库在google库中, 没有翻墙就下载编译不了,将用阿里库的话,速度快, 也能下载
以下内容就是如何更改android里依赖下载地址
Aliyun Maven地址:http://maven.aliyun.com
在项目级别的build.gradle中添加如下Maven地址:
buildscript {
repositories {
maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/’}
jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:2.3.3’
}
}
allprojects {
repositories {
maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/’}
jcenter()
}
}
此为转发, 留以后备用, 感谢原创作者
https://blog.csdn.net/guodongandroid/article/details/74598095