Android Studio版本冲突/谷歌地图

笛里谁知壮士心,沙头空照征人骨。这篇文章主要讲述Android Studio版本冲突/谷歌地图相关的知识,希望能为你提供帮助。
错误:任务':app:processDebugGoogleServices'的执行失败。

请通过更新google-services插件的版本(有关最新版本的信息可在https://bintray.com/android/android-tools/com.google.gms.google-services/获取)或将com.google.android.gms的版本更新为9.0.0来修复版本冲突。
【Android Studio版本冲突/谷歌地图】在尝试将谷歌地图实施到我的项目时,我一直收到此错误,有关如何修复它的任何想法?
以下是目前的代码......
dependencies {implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' implementation 'com.android.support:design:26.1.0'implementation 'com.google.android.gms:play-services-maps:11.6.2' compile 'com.google.android.gms:play-services-auth:9.0.0'testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'}

答案这两个依赖项:
implementation 'com.google.android.gms:play-services-maps:11.6.2' compile 'com.google.android.gms:play-services-auth:9.0.0'

必须是相同的版本。这样可行:
implementation 'com.google.android.gms:play-services-maps:11.6.2' implementation 'com.google.android.gms:play-services-auth:11.6.2'//using implementation instead of compile. compile is deprecated

请注意,这适用于所有播放服务依赖项。还有其他依赖项(尽管你没有使用它们)。无论您安装的游戏服务组件是什么,它们都必须具有相同的版本
您设置的实际版本由您决定,但它们都必须匹配。他们都可以成为9.0.0
另一答案尝试将两种Google依赖项设置为11.6.0(如果可用,则设置为11.6.2):
implementation 'com.google.android.gms:play-services-maps:11.6.0' implementation 'com.google.android.gms:play-services-auth:11.6.0'


    推荐阅读