android - com.android.builder.dexing.DexArchiveBuilderException : Error while dexing

标签 android firebase gradle android-gradle-plugin

我在尝试运行我的项目时遇到了这个问题 -

com.android.builder.dexing.DexArchiveBuilderException: Failed to process .gradle\caches\transforms-1\files-1.1\firebase-analytics-impl-11.8.0.aar\0e3311be69809df8820438f9666651f5\jars\classes.jar
com.android.builder.dexing.DexArchiveBuilderException: Error while dexing.
com.android.tools.r8.CompilationFailedException: Compilation failed to complete com.android.tools.r8.utils.AbortException: Error: Type com.google.android.gms.common.internal.zzf is referenced as an interface from com.google.android.gms.internal.zzcku.

Caused by: com.android.builder.dexing.DexArchiveBuilderException: Failed to process Firebase-analytics-impl-11.8.0.aar\jars\classes.jar

构建.gradle

apply plugin: 'com.android.application'

android {

    compileSdkVersion 28
    defaultConfig {
        applicationId "com.xxxxxx.xxxx"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 171312
        versionName "1.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        project.archivesBaseName = "doctor"
        vectorDrawables.useSupportLibrary = true
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles fileTree(dir: "proguard", include: ["*.pro"]).asList().toArray()
            proguardFiles getDefaultProguardFile('proguard-android.txt')
        }
        debug {
            minifyEnabled false
            proguardFiles fileTree(dir: "proguard", include: ["*.pro"]).asList().toArray()
            proguardFiles getDefaultProguardFile('proguard-android.txt')
        }
    }
    flavorDimensions "environment"
    productFlavors {
        staging {
            applicationIdSuffix ".staging"
        }
        production {
        }
        development {
            applicationIdSuffix ".development"
        }
    }
    dataBinding {
        enabled = true
    }
    buildToolsVersion '28.0.3'
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

ext {
    retrofitVersion = '2.3.0'
    firebaseVersion = '15.0.2'
}
dependencies {
    implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    implementation "com.android.support:design:${rootProject.ext.supportLibVersion}"
    implementation "com.android.support:support-v13:$rootProject.ext.supportLibVersion"
    implementation "com.android.support:support-compat:${rootProject.ext.supportLibVersion}"
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation project(path: ':quickblox')
}

QuickBlox模块的build.gradle

apply plugin: 'com.android.library'
android {
    compileSdkVersion 28
    defaultConfig {
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    flavorDimensions "default"
    defaultPublishConfig "doctorDebug"
    publishNonDefault true
    productFlavors {
        doctor {
            buildConfigField "boolean", "IS_DOCTOR", "true"
            versionNameSuffix "-doctor"
        }
        patient {
            buildConfigField "boolean", "IS_DOCTOR", "false"
            versionNameSuffix "-patient"
        }
    }
    android {
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_8
            targetCompatibility JavaVersion.VERSION_1_8
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation project(':library')
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.quickblox:quickblox-android-sdk-videochat-webrtc:3.8.1'
    implementation 'com.facebook.fresco:fresco:1.8.1'
    api('com.quickblox:quickblox-android-sdk-messages:3.8.1')
}

我在 gradle.properties 中添加了这个 android.enableD8.desugaring = true。不过,我面临着同样的问题。

有什么解决办法吗?

最佳答案

请同时添加这个依赖

implementation 'com.google.firebase:firebase-core:16.0.7'

希望这个问题能得到解决。

关于android - com.android.builder.dexing.DexArchiveBuilderException : Error while dexing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54645126/

相关文章:

部署函数时 Firebase CLI 不起作用。错误 : HTTP Error: 404, 找不到方法

android - Firebase 电话身份验证和电话号码选择器

火力基地工具 "Error: certificate has expired"

java - Gradle 从同一个项目创建 war 和 jar

eclipse - 从未知根目录的子项目运行gradle任务

java - 将 android studio 更新到 4.2 Beta1 后,Gradle 构建失败

php - 从android到php再到mysql

android - 如何将数组转换为可观察的

android - 如何让 LibGDX 的 AndroidApplication 类支持 Android Fragments?

java - 我应该使用哪些 Android API?简单的 map 应用