任务':app:processDebugGoogleServices'执行失败Firebase和Android Studio

时间:2018-05-25 11:08:21

标签: android firebase firebase-realtime-database

我想将Firebase数据库添加到我的Android应用程序中,但我遇到了错误。

失败:构建因异常而失败。

  • 出了什么问题: 任务':app:processDebugGoogleServices'。

    执行失败
      

    请修改版本冲突,方法是更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms版本更新为11.8.0

  • 尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。使用--scan运行以获得全面的见解。

build.gradle app

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.lukasz.ogloszenia"
        minSdkVersion 14
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
        }
    }
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support.constraint:constraint-layout:1.1.0'
        implementation 'com.android.support:support-v4:27.1.1'
        implementation 'com.google.firebase:firebase-database:11.8.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-                    core:3.0.2'

        implementation 'com.google.android.gms:play-services-maps:12.0.1'
        compile 'com.google.gms:google-services:4.0.1'

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

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

改变这个:

implementation 'com.google.firebase:firebase-database:11.8.0'

到此:

implementation 'com.google.firebase:firebase-database:12.0.1'

所有Google Play服务和firebase依赖项都需要具有相同的版本号。

此更改从版本号15开始:

  

每个Maven依赖项匹配com.google.android.gms:play-services- *和com.google.firebase:firebase- *不再需要具有相同的版本号才能在构建时正确运行运行时间。

https://android-developers.googleblog.com/2018/05/announcing-new-sdk-versioning.html