来自 Gradle 开发团队:
We have confirmation from our China team that https://maven.google.com is blocked in China. As such, can we please change the google() shortcut to point to 'https://dl.google.com/dl/android/maven2'? That URL is not blocked.
我们从中国团队那里确认到 https://maven.google.com
在中国被屏蔽。因此,我们可以将 google()
更改为指向 https://dl.google.com/dl/android/maven2
。该网址没有被屏蔽。
详细请看 #Issue 2151 google() needs to point to 'https://dl.google.com/dl/android/maven2'。
具体操作:
在项目根目录的 build.gradle
文件的 repositories
块中添加
maven { url 'https://dl.google.com/dl/android/maven2/' }
注意要放在 google()
前面。
buildscript {
...
repositories {
maven { url 'https://dl.google.com/dl/android/maven2/' }
google()
jcenter()
}
dependencies {
...
}
}
allprojects {
repositories {
maven { url 'https://dl.google.com/dl/android/maven2/' }
google()
jcenter()
}
}
网友评论