"无法合并dex"使用房间时

时间:2017-11-08 17:02:30

标签: android android-room

我试图添加一个"房间"到我的项目。

当我尝试构建项目时,出现错误:

  

错误:任务':app:transformDexArchiveWithExternalLibsDexMergerForDebug'执行失败。    java.lang.RuntimeException:java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex

我已经做过的事情:

  1. 清理/重建项目
  2. 我添加了#34; multiDexEnabled true"在defaultConfig {}中。然后我得到错误:
      

    错误:任务':app:transformClassesWithMultidexlistForDebug'执行失败。   java.io.IOException:无法写[C:\ Users \ user1 \ AndroidStudioProjects \ git \ mobile \ app \ build \ intermediates \ multi-dex \ debug \ componentClasses.jar]   (可'吨阅读[C:\用户\ user1.gradle \缓存\变换-1 \文件-1.1 \支撑芯utils的-26.1.0.aar \ a6c34f6784b0b6bc5c2fc7a7815426da \罐子\ classes.jar(;;; ;;; **。class)](重复的zip条目[classes.jar:android / support / v4 / content / PermissionChecker $ PermissionResult.class]))

  3. 如果我删除"房间"从我的项目中,它构建没有错误。

    我使用的是Android Studio 3,gradle构建工具3.0.0。

    这是我的build.gradle:

    apply plugin: 'com.android.application'
    apply plugin: 'me.tatarka.retrolambda'
    
    buildscript {
       repositories {
           mavenCentral()
       }
    
       dependencies {
           classpath 'me.tatarka:gradle-retrolambda:3.2.5'
       }
    }
    
    repositories {
        mavenCentral()
    }
    
    android {
       compileSdkVersion 23
       buildToolsVersion '26.0.2'
    
       defaultConfig {
            applicationId "trsnet.gtp2.com"
            minSdkVersion 17
            targetSdkVersion 23
            multiDexEnabled true
       }
    
       buildTypes {
           release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 
                    'proguard-rules.txt'
           }
       }
    
       compileOptions {
           sourceCompatibility JavaVersion.VERSION_1_8
           targetCompatibility JavaVersion.VERSION_1_8
       }
    
    }
    
    dependencies {
    
        compile files('libs/commons-codec-1.9.jar')
        compile files('libs/ksoap2-android-assembly-3.0.0-jar-with-
        dependencies.jar')
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:cardview-v7:23.2.1'
        compile 'com.android.support:appcompat-v7:23.2.1'
        compile 'com.android.support:design:23.2.1'
        compile 'com.android.support.constraint:constraint-layout:+'
        compile 'io.reactivex:rxandroid:1.2.1'
        compile 'io.reactivex:rxjava:1.1.6'
        compile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
        implementation 'android.arch.persistence.room:runtime:1.0.0'
        annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
    }
    

1 个答案:

答案 0 :(得分:3)

我也遇到了这个问题,我花了很长时间才解决,但我终于明白了。 ROOM使用了一些support-v4库,因此这就是为什么你会收到有重复zip条目的错误。在我的情况下,ROOM使用的是早于我需要的版本的组件。那么对我有用的东西(found here)是将以下内容添加到Gradle文件的根级别:

configurations {
    all*.exclude group: 'com.android.support', module: 'support-v4'
}

我发现这样做是为了防止库包含任何support-v4组件,但是您必须手动包含ROOM和您可能需要的任何其他组件。如果您需要准确找出哪些库是重复的,那么您可以按照these instructions查看每个库及其依赖项。

略有不相关的注意事项:从Gradle 3.0开始,不推荐使用compile配置,应该使用implementationapi替换,可以找到一个很好的解释here