当前位置: 首页 > 知识库问答 >
问题:

错误:任务“:java”的执行失败。util。拉链ZipException:重复条目:org/apache/commons/io/CopyUtils。班

皇甫心思
2023-03-14
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/apache/commons/io/CopyUtils.class

它会发生此错误。

该应用程序构建成功,但当我获得build apk时,android studio会显示此消息

这是我的gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '25'
    defaultConfig {
        applicationId "com.example.thewell_dev.fourscompany"
        minSdkVersion 19
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    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:23.2.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile 'com.mobsandgeeks:android-saripaar:2.0.3'
    compile 'com.koushikdutta.ion:ion:2.1.9'
    compile 'gun0912.ted:tedpermission:1.0.2'
    compile 'com.android.support:design:22.+'
    compile 'com.estimote:sdk:0.13.0'
    compile 'jp.wasabeef:glide-transformations:2.0.0'
    compile 'com.afollestad:easyvideoplayer:0.3.0'
    compile 'com.github.jrvansuita:PickImage:v2.0.0'
    compile 'com.amazonaws:aws-android-sdk-s3:2.+'
    compile 'com.mindorks:placeholderview:0.6.0'
    compile 'com.tsengvn:Typekit:1.0.0'
    compile 'com.github.esafirm:RxDownloader:1.0.1'
    compile 'com.mlsdev.rximagepicker:library:1.1.2'
    compile 'io.reactivex:rxjava:1.0.14'
    compile 'com.kbeanie:image-chooser-library:1.5.2@aar'
    compile 'com.kbeanie:image-chooser-library:1.5.8'
    compile 'io.github.jeancsanchez.photoviewslider:photoviewslider:1.2.0'
    compile 'com.nononsenseapps:filepicker:3.1.0'
    compile 'com.gjiazhe:scrollparallaximageview:1.0'
    compile 'com.droidninja:filepicker:1.0.8'
    compile 'com.android.support:multidex:1.0.0'

}

我认为外部库有Commons-io-1.3.2.jarCommons-io-2.4.jar都有CopyUtils.class

无论如何,它无法构建apk并显示该消息。

请任何人帮帮我

共有3个答案

路奇
2023-03-14

Techierj的答案是正确的,但它也会排除Commons-io: 2.4,在我的情况下我需要它。所以你可以按特定的组排除:

compile('YOUR_DEPENDENCY') {
    exclude group: 'org.apache.commons', module: 'commons-io'
}

这将仅从组织中排除版本1.3.2。阿帕奇。下议院,并将维护下议院。io:共用。io:2.4

卢鸿博
2023-03-14

找到了此问题的解决方案。您需要从应用程序生成中排除常见io。格拉德尔。

android {
    configurations{
        all*.exclude module: 'commons-io'
    }
}
李法
2023-03-14

您集成了多个使用Apache Commons的依赖项。只需使用gradle中的以下代码排除它们。

compile('YOUR_DEPENDENCY') {
    exclude module: 'commons-io'
}
 类似资料: