在我的Android应用程序中使用谷歌地图活动时,我收到此错误。
“无法解析com.google.android.gms:播放服务:11.8.0。”
项目级别 Gradle文件:
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用程序级别 Gradle文件:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.google.android.gms:play-services:11.8.0'
}
答案 0 :(得分:9)
所以,最后我得到了答案,
我已经开启了gradle offline模式,这就是为什么它找不到该版本播放服务的缓存文件的原因。
我关闭了它(在文件设置 - 构建,执行,部署 - Gradle下)并再次同步项目和一些文件已经下载然后它现在可以工作。
答案 1 :(得分:2)
您需要在项目级 gradle 中包含此类路径。
classpath 'com.google.gms:google-services:3.0.0'
以及内部应用级 build.gradle 。
apply plugin: 'com.google.gms.google-services'