错误:(23,13)无法解决:com.google.android.gms:play-services:11.2.0“安装存储库和同步项目”无效

时间:2017-08-15 07:56:38

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

我正在尝试在我的Android应用中获取位置并更新到服务器。 这是我的Gradle代码,这里我包含了compile 'com.google.android.gms:play-services:11.2.0'。这一行是from the documentation

dependencies {
    compile 'com.google.android.gms:play-services:11.2.0'

    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:support-v4:25.3.1'       
}

但这是我得到的错误:

Error:(23, 13) Failed to resolve: com.google.android.gms:play-services:11.2.0
Install Repository and sync project
Show in File
Show in Project Structure dialog

单击“安装存储库和同步项目”不起作用。

3 个答案:

答案 0 :(得分:29)

将其添加到项目级build.gradle文件中:

repositories {
    maven {
        url "https://maven.google.com"
    }
}

答案 1 :(得分:1)

尝试更新新版Google Play服务

  1. 启动Android Studio。
  2. 在“工具”菜单上,点击Android> SDK Manager。
  3. 更新Android Studio SDK Manager:单击SDK工具,展开支持
  4. 存储库,选择Google存储库,然后单击“确定”。

答案 2 :(得分:0)

build.gradle文件中:

repositories {
    maven {
        url "https://maven.google.com"
    }
}

同一问题,更多解决方案在这里

Error:(39, 13) Failed to resolve: com.android.support:appcompat-v7:26.0.0