1即碗、問題產(chǎn)生的原因?
? ? 因?yàn)橐螺d的文件需要翻墻涝桅。
2拜姿、解決的方法
? ??修改項(xiàng)目根目錄下?build.gradle?文件,將 jcenter() 或者 mavenCentral() 替換掉即可冯遂∪锓剩可以用國內(nèi)的倉庫代替:
????阿里的倉庫地址:http://maven.aliyun.com/nexus/content/groups/public/
? ??OSChina的倉庫地址:http://maven.oschina.net/content/groups/public/
注意:必須注釋掉 jcenter()。
repositories {
google()
//? ? ? ? jcenter()
? ? ? ? maven{url'https://maven.aliyun.com/repository/jcenter'}
}
allprojects {
repositories {
google()
maven {url"https://maven.google.com" }
maven{url'https://maven.aliyun.com/repository/jcenter'}
//? ? ? ? jcenter()?
}
}
如圖配置就行了蛤肌,問題完美解決壁却!