Android Studio 无法访问 Google Maven

2018-12-03  本文已影响0人  Little丶Jerry

来自 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()
    }
}
上一篇下一篇

猜你喜欢

热点阅读