解决android studio引用远程仓库下载慢(JCenter下载慢)
Posted 煦色韶光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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下载慢)的主要内容,如果未能解决你的问题,请参考以下文章
解决Android Studio(2022版)gradle下载慢问题
android studio更新gradle失败的解决办法-转