当前位置: 首页 > 知识库问答 >
问题:

错误:修复版本冲突(谷歌服务插件)

裴卓君
2023-03-14

根据这个SO线程,我知道存在版本冲突,但在谷歌发布新版本后,问题仍然存在。

错误:任务': app: Process DebugGoogleServices'执行失败。请通过更新google-service插件的版本(有关最新版本的信息可在https://bintray.com/android/android-tools/com.google.gms.google-services/获得)或将com.google.android.gms的版本更新为10.0.1来修复版本冲突。

我的build.gradle(模块: app)

....
dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
    })
   compile 'com.android.support:appcompat-v7:26.+'
   compile 'com.android.support.constraint:constraint-layout:1.0.2'
   testCompile 'junit:junit:4.12'
   compile 'com.google.firebase:firebase-messaging:10.0.1'
   compile 'com.google.android.gms:play-services-maps:11.0.4'
   compile 'com.google.android.gms:play-services-location:11.0.4'
}

apply plugin: 'com.google.gms.google-services'


现在需要做哪些改变?

共有3个答案

颜哲彦
2023-03-14

所有3个库只能使用一个版本

compile 'com.google.firebase:firebase-messaging:11.0.4'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'com.google.android.gms:play-services-location:11.0.4'

或者对3个LIB只使用10.0.1

米景辉
2023-03-14

apply plugin: 'com.google.gms.google-services'

未添加到模块build.gradle文件的底部。

潘翰藻
2023-03-14

我觉得你变了

compile 'com.google.firebase:firebase-messaging:11.0.4'
 类似资料:
  • 最终解决方案 我只是个白痴。增加版本后的真正问题是,我已经应用了插件而不是在文件末尾。检查这个主题,我之前搜索得很糟糕 原始问题 我从来都不明白Gradle是怎么工作的,很抱歉问了一些愚蠢的问题。 我正面临一个问题,我不知道问题出在哪里,也不知道现在该怎么办。我有GCM的应用程序,一切都很好,直到我们添加了第二语言的应用程序。 然后我得到一个错误,即< code>google_app_id没有被翻

  • 我正在遵循官方的Google身份验证流程。我的应用程序已经使用了最新版本的Google地图。 项目 应用程序 地图下方有一条红线,弹出窗口显示找到了11.8.0和11.4.2。构建错误消息如下:, 错误:任务“:应用程序:进程”的执行失败。 请通过更新谷歌服务插件的版本来修复版本冲突(有关最新版本的信息,请访问https://bintray.com/android/android-tools/co

  • 我收到了这个错误 已经跟踪了https://developers.google.com/admin-sdk/directory/v1/guides/delegation 我使用这个库,并在laravel 5.7:https://github.com/spatie/laravel-google-calendar上运行它 有什么办法可以解决这个问题。请帮忙。

  • 处理gRPC服务中的错误通常需要消息和error。两者都有两个定义: Google API定义(googleapis/go genproto)——为通用协议缓冲区类型生成的go包,以及为Google的gRPC API生成的gRPC代码 <代码>状态和<代码>代码两种定义的Go包是: 谷歌API 状态:google.golang.org/genproto/googleapis/rpc/status