通过更新 google-services 插件的版本,任务 processDebugGoogleServices 或版本冲突执行失败
Posted
技术标签:
【中文标题】通过更新 google-services 插件的版本,任务 processDebugGoogleServices 或版本冲突执行失败【英文标题】:Execution failed for task processDebugGoogleServices or version conflict either by updating the version of the google-services plugin 【发布时间】:2018-07-31 14:31:32 【问题描述】:将谷歌库版本从 9.6.0 更新到 11.8.0 时 它产生了这么多问题,我无法编译代码。
请看下面的模块 Gradle 文件依赖
compile 'com.android.support:appcompat-v7:26.0.2'
compile 'com.android.support:support-v4:27.0.1'
compile 'com.android.support:support-v13:27.0.1'
compile 'com.android.support:design:27.0.1'
compile 'com.android.support:cardview-v7:27.0.1'
compile 'com.android.support:recyclerview-v7:27.0.1'
compile 'com.android.support:customtabs:27.0.1'
//noinspection GradleCompatible
compile 'com.google.android.gms:play-services-analytics:11.8.0'
compile 'com.google.android.gms:play-services-maps:11.8.0'
compile 'com.google.android.gms:play-services-location:11.8.0'
compile 'com.google.firebase:firebase-crash:11.0.4'
compile 'com.google.firebase:firebase-messaging:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
以下是项目的gradle依赖
dependencies
// classpath 'com.android.tools.build:gradle:2.0.0-rc1'
// classpath 'com.google.firebase:firebase-plugins:1.1.1'
classpath 'com.google.firebase:firebase-plugins:1.1.5'
classpath 'com.android.tools.build:gradle:3.1.0-alpha06'
classpath 'com.google.gms:google-services:3.1.0'
classpath "io.realm:realm-gradle-plugin:3.0.0"
【问题讨论】:
【参考方案1】:所有谷歌库版本都应该有相同的版本:
变化:
compile 'com.android.support:appcompat-v7:26.0.2'
到:
compile 'com.android.support:appcompat-v7:27.0.1'
和:
compile 'com.google.firebase:firebase-crash:11.0.4'
compile 'com.google.firebase:firebase-messaging:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
到:
compile 'com.google.firebase:firebase-crash:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
compile 'com.google.firebase:firebase-core:11.8.0'
【讨论】:
你救了我的命,我在过去 2 小时内一直在修复它 :( 在编译应用程序时,它会抛出问题“ProGuard 配置解析器错误:C:\Users\ahmars\.gradle\caches\transforms-1\files-1.1\play-services-base-11.8 .0.aar" @AhmadArslan 似乎 progaurd 有问题。检查this 是否对您有帮助 不,不,它已修复,我不得不禁用即时运行并构建库。现在一切正常:)以上是关于通过更新 google-services 插件的版本,任务 processDebugGoogleServices 或版本冲突执行失败的主要内容,如果未能解决你的问题,请参考以下文章
Google Play Services 9.2.1 和 google-services 插件
错误“模块根文件夹中缺少文件 google-services.json。没有它,Google 服务插件无法运行”[重复]