AS第一次导入新工程时,需要下载配置的依赖和gradle插件,很多需要访问谷歌网络,很容易导致长时间下不下来。解决这个问题可以在工程根目录的build.gradle中添加阿里云的国内镜像仓库地址,或者各大公司内部的maven仓,可以快速下载需要的依赖。
buildscript {
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}
}
allprojects {
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}
}
网友评论