首先百度 “Android Studio 依赖国内镜像”
好些文章都是在介绍这个方式,我试验了一下,行不通。
后来找到了这篇文章Android Studio配置阿里云镜像地址,加速依赖资源下载,感觉有希望。
于是用里面的链接http://maven.aliyun.com/nexus/content/groups/public 访问了一下,如下:
阿里云镜像
最后访问到了阿里云的镜像。参考里面的说明,我的文件如下:
文件内容,用了阿里的最新地址
allprojects{
repositories {
def ALIYUN_REPOSITORY_URL = 'https://maven.aliyun.com/repository/central'
def ALIYUN_JCENTER_URL = 'https://maven.aliyun.com/repository/public'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('http://repo1.maven.org/maven2')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
remove repo
}
if (url.startsWith('https://jcenter.bintray.com/') || url.startsWith('http://jcenter.bintray.com/')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
remove repo
}
}
}
maven {
url ALIYUN_REPOSITORY_URL
url ALIYUN_JCENTER_URL
}
}
buildscript{
repositories {
def ALIYUN_REPOSITORY_URL = 'https://maven.aliyun.com/repository/central'
def ALIYUN_JCENTER_URL = 'https://maven.aliyun.com/repository/public'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('http://repo1.maven.org/maven2')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
remove repo
}
if (url.startsWith('https://jcenter.bintray.com/') || url.startsWith('http://jcenter.bintray.com/')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
remove repo
}
}
}
maven {
url ALIYUN_REPOSITORY_URL
url ALIYUN_JCENTER_URL
}
}
}
}
以为大功告成了,结果还是遇到了几个问题。
1、需要把gradle中的也进行替换,如下截图:
2、出现类似 Could not find com.github.chrisbanes:PhotoView:1.2.6 的问题
关于此库的介绍https://cloud.tencent.com/developer/article/1330894 原来它是来源于
所以,试着增加为,结果是可以了。
3、最怪异的问题,一开始使用“仓库服务”老是出现Connection refused。确定没有使用proxy ,Android Studio重启了也还是不行。
最终,找到了如下文件,把这四行删除,试一下就行了,感觉是Android Studio的bug。
通过此问题,发现一个简单的道理,像Android Studio也是去操作电脑文件中的配置文件,也存在操作不成功的问题。