使用FirebaseUI的DexException:com.android.dex.DexException:多个dex文件定义Lcom / google / android / gms / internal / zzeg;

时间:2017-10-18 21:09:08

标签: android firebase android-gradle firebase-authentication firebaseui

我正在尝试在项目中包含Firebase身份验证(特别是使用FirebaseUI身份验证的电子邮件/密码身份验证)。由于我是新手,我正在使用一本书的例子(“Firebase Essentials Android Edition”)。它们按预期工作,当我被迫使用时出现问题:

compile 'com.google.firebase:firebase-auth:11.2.0'

而不是书中建议的版本11.0.4(为了使用谷歌地图)。注销和删除帐户的功能会停止工作。

我搜索了信息,我正在努力更新所有内容。我正在使用Android Studio 2.3.3。目前,我有以下build.gradle脚本:

project build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.0.0'
    }
}

allprojects {
    repositories {
        jcenter()
        maven { url 'https://maven.google.com' }
    }
}

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

app build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"
    defaultConfig {
        applicationId "com.doov.firetest"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

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'
    })
    compile 'com.android.support:appcompat-v7:26.0.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-auth:11.2.0'
    compile 'com.firebaseui:firebase-ui:2.0.1'
    compile 'com.firebaseui:firebase-ui-auth:2.0.1'
    testCompile 'junit:junit:4.12'
}

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

但是当我构建时,我得到了下一个错误(我在其他时间看过它们,这就是为什么我提出了一个“通用”问题,可能会解决所有这些类型的问题):

  

错误:任务执行失败   ':应用程序:transformClassesWithDexForDebug' &GT。   com.android.build.api.transform.TransformException:   com.android.ide.common.process.ProcessException:   java.util.concurrent.ExecutionException:com.android.dex.DexException:   多个dex文件定义Lcom / google / android / gms / internal / zzeg;

我该如何解决? 非常感谢您在这件事上的时间和帮助。

1 个答案:

答案 0 :(得分:0)

您正在使用:

AccessDeniedException

检查official doc.
您需要确保使用所选版本的FirebaseUI所需的版本。

    compile 'com.google.firebase:firebase-auth:11.2.0'
    compile 'com.firebaseui:firebase-ui:2.0.1'
    compile 'com.firebaseui:firebase-ui-auth:2.0.1'

你必须使用:

FirebaseUI Version  ->  Firebase/Play Services Version    
     3.1.0              11.4.2
     3.0.0              11.4.2 
     2.4.0              11.4.0
     2.3.0              11.0.4
     2.2.0              11.0.4

或表中的其他组合。