解决android studio引用远程仓库下载慢(JCenter下载慢)

使用开源中国的maven库

阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/

替换项目根目录下的build.gradle中的

repositories{

jcenter()

}

repositories{ 

 maven{url'http://maven.aliyun.com/nexus/content/groups/public/'}

}

你可能感兴趣的:(解决android studio引用远程仓库下载慢(JCenter下载慢))