如何在Android Studio中将Google Play服务仓库更新为上一版本?

时间:2017-09-27 15:32:22

标签: android android-studio google-play-services

我已经安装了Android Studio的最新版本2.3.3,它说没有找到更新。 我在Play Services website上看到最新版本是2017年9月的11.4.0。 但是在我的系统上,我在路径Android/sdk/extras/google/m2repository/com/google/android/gms/play-services中看到我从2017年6月起最新的11.0.4。 设置中的Android Studio表示Google Play服务已安装且没有更新,修订版为45。 如何将其更新到最新版本?

1 个答案:

答案 0 :(得分:9)

他们现在使用自己的maven repo而不是本地回购, 将其添加到您的顶级build.gradle

allprojects {
    repositories {
        maven { url 'https://maven.google.com' }
    }
}