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

一万年来谁著史,三千里外欲封侯。这篇文章主要讲述解决android studio引用远程仓库下载慢(JCenter下载慢)相关的知识,希望能为你提供帮助。
使用开源中国的maven库
阿里云的(速度飞快):http://maven.aliyun.com/nexus/content/groups/public/

替换项目根目录下build.gradle中的
repositories { jcenter() }

【解决android studio引用远程仓库下载慢(JCenter下载慢)】为:
repositories { maven{url ‘http://maven.aliyun.com/nexus/content/groups/public/‘} }


    推荐阅读