本人图方便,使用jitpack的仓库,结果是令人奔溃的,每次升级依赖库,build的速度可以让让砸电脑的冲动。。。
网上找了很多方法,这个特别66666.。。。。
配置方法:
以MAC为例
1、Finder进入到 [用户名]/.gradle/目录下; 2、在里面新建一个 init.gradle 的文件,文本编辑器打开,复制以下代码进入,保存;
3、重新build项目时,就飞一般的快了。
代码:
allprojects{
repositories {
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
}
}
|