我正在尝试在我的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
单击“安装存储库和同步项目”不起作用。
答案 0 :(得分:29)
将其添加到项目级build.gradle
文件中:
repositories {
maven {
url "https://maven.google.com"
}
}
答案 1 :(得分:1)
尝试更新新版Google Play服务
答案 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