构造导致java.util.zip.ZipException:重复输入错误

时间:2017-08-19 14:39:00

标签: java android android-studio

许多人似乎在Stackoverflow上遇到了这个问题,但没有像我一样遇到同样的问题和解决方案。

  

"错误:任务':app:transformClassesWithJarMergingForDebug'执行失败。   com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:org / apache / commons / collections / ArrayStack.class"

这是我的build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "com.example.hey"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        multiDexEnabled true
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
repositories {
    mavenCentral()
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    compile 'commons-validator:commons-validator:1.4.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:design:25.3.1'
    compile 'com.aurelhubert:ahbottomnavigation:2.0.6'
    testCompile 'junit:junit:4.12'
    //compile 'com.roughike:bottom-bar:2.3.1'
    //compile 'com.android.support:design:26.0.0-alpha1'
}

我遇到了这个错误:

  

错误:任务':app:transformClassesWithDexForDebug'执行失败。   com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:java.util.concurrent.ExecutionException:com.android.dex.DexException:多个dex文件定义Lorg / apache / commons /集合/缓冲液;

我使用multiDexEnabled true修复了它,但随后出现了重复输入错误。

编辑:

问题在于commons-validator:commons-validator:1.4.1,但我仍然很好奇为什么以及如何修复此错误仍然可以使用验证器。

1 个答案:

答案 0 :(得分:0)

如果您感兴趣我通过替换:

来解决问题

toast

使用:

try block