下载慢的原因是下载jar需要到maven的本地仓库到国外去下,解决办法有两种
1 自己进行翻墙
2 去配置文件讲下载地址改为阿里云镜像网址
在.grade文件中写入以下代码
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/')) {
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
}
}