错误:任务':app:processDebugGoogleServices'的执行失败。 >请修复版本冲突Android

时间:2016-09-21 12:00:55

标签: android firebase google-play-services

我知道已经有很多类似的问题,但他们所有的解决方案都提到了添加

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

在gradle文件的底部,我有。或者将google-services更新为3.0.0,我也有。

错误是:

Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]
Error:Execution failed for task ':app:processDebugGoogleServices'. 
Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 9.0.0.
Information:BUILD FAILED

回滚到com.google.android.gms:play-services:9.0.0有效,但与Firebase产生冲突,我完全无法使用。我正在尝试使用播放服务9.4.0。

这是我的顶级构建渐变文件:

    buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0'
        classpath 'com.google.gms:google-services:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的应用级gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion '24.0.2'
    defaultConfig {
        applicationId "com.studio08.ronen.Zivug"
        minSdkVersion 16
        targetSdkVersion 24
        multiDexEnabled true
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
//        debug {
//            debuggable true
//        }
    }
}

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'
    })
    // third-parties
    // https://github.com/lopspower/CircularImageView
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.mikhaellopez:circularimageview:3.0.2'
    // material design and appcompat
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:design:24.2.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha4'
    compile 'com.android.support:support-v4:24.2.1'
    compile 'com.android.support:palette-v7:24.2.1'
    compile 'com.android.support:cardview-v7:24.2.1'
    // google
    compile 'com.google.firebase:firebase-core:9.0.0'
    compile 'com.firebaseui:firebase-ui:0.5.3'
    compile 'com.google.firebase:firebase-auth:9.4.0'
    //    compile 'com.google.android.gms:play-services-maps:9.4.0'
    //    compile 'com.google.android.gms:play-services:9.4.0'
    testCompile 'junit:junit:4.12'
    compile 'com.google.android.gms:play-services:9.4.0'


}

// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'

非常感谢。

3 个答案:

答案 0 :(得分:2)

试试这个:

删除

compile 'com.google.android.gms:play-services:9.4.0'

因为当你说:apply plugin:' com.google.gms.google-services'您是否包含Google Play服务依赖项。 告诉我是否有效。

答案 1 :(得分:2)

更改firebase核心版本

History.pushState()

删除

compile 'com.google.firebase:firebase-core:9.4.0'
compile 'com.google.firebase:firebase-auth:9.4.0'

答案 2 :(得分:1)

如果有人使用 classpath'com.google.gms:google-services:3.1.0'

只需将版本减少到3.0.0(不知道原因)。但是工作

    classpath 'com.google.gms:google-services:3.0.0'