Android Studio依赖项版本冲突gradle

时间:2017-08-09 10:49:59

标签: android build.gradle

我与我的依赖项存在冲突,无论我推荐哪个版本,它都没有解决问题。环顾四周没有帮助,所以这是我的最后一招。这是我的错误;

  

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

我的Gradle;

buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'
    classpath 'com.google.gms:google-services:3.1.0'
}
 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:design:26.+'
    compile 'com.nightonke:boommenu:2.1.0'
    compile 'com.google.firebase:firebase-messaging:11.0.2'
    compile 'com.google.firebase:firebase-core:11.0.4'
    compile 'com.google.firebase:firebase-ads:10.0.1'
    compile 'com.google.android.gms:play-services-plus:11.0.2'
    testCompile 'junit:junit:4.12'
}


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

3 个答案:

答案 0 :(得分:1)

您应该从gradle中删除以下行

compile 'com.google.android.gms:play-services-plus:11.0.2'

Firebase依赖项必须具有相同的版本

compile 'com.google.firebase:firebase-messaging:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-ads:11.0.4'
compile 'com.google.android.gms:play-services-plus:11.0.4'

答案 1 :(得分:0)

compile 'com.google.firebase:firebase-messaging:11.0.2'
compile 'com.google.firebase:firebase-core:11.0.2'
compile 'com.google.firebase:firebase-ads:11.0.2'

compile 'com.google.android.gms:play-services-plus:11.0.2'

使用此版本更改这些依赖关系。

答案 2 :(得分:0)

  

错误:任务':app:processDebugGoogleServices'执行失败。   请通过更新版本来修复版本冲突   谷歌服务插件

您应该使用 FIREBASE &的 SAME 版本 GMS

使用 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-ads:11.0.4'
compile 'com.google.android.gms:play-services-plus:11.0.4'

最后清理 - 重建 - 运行