1. ホーム
  2. android

[解決済み] java.util.zip.ZipException: packageAllDebugClassesForMultiDex中の重複したエントリ

2022-09-08 21:53:08

質問

このエラーの意味がよくわかりません。

Execution failed for task ':excelSior:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: android/support/v4/util/TimeUtils.class

現在、私は android-support-v4.jar を使っています。

dependencies {
    compile project(':addThisSDK')
    compile project(':centeredContentButton')
    compile project(':googleplayservices_lib')
    compile files('libs/adxtag2.4.6.jar')
    compile files('libs/android-support-v4.jar')
    compile files('libs/aws-android-sdk-1.7.1.1-debug.jar')
    compile files('libs/commons-lang-2.6.jar')
    compile files('libs/crittercism_v4_4_0_sdkonly.jar')
    compile files('libs/dd-plist.jar')
    compile files('libs/FiksuAndroidSDK_4.1.1.jar')
    compile files('libs/iqengines-sdk-barcode.jar')
    compile files('libs/irEventTracker-1.2.jar')
    compile files('libs/jolt-core-0.0.7.jar')
    compile files('libs/json-utils-0.0.7.jar')
    compile files('libs/jsoup-1.7.2.jar')
    compile files('libs/kooaba-api-v4-java.jar')
    compile 'com.android.support:multidex:1.0.0'
}

gradleの同期中にエラーは表示されません。ただ、アプリケーションを実行しようとすると

何が問題なのでしょうか?

どのように解決するのですか?

v4ライブラリとコンパイルライブラリが挿入されているか確認する必要があります。 また、アプリ内や依存プログラム内でライブラリを重複して使用してはいけません。

V4が1つだけ残るように、リピートライブラリを削除してください。

あなたのアプリのディレクトリに build.gradle ファイル にこのコマンドを追加します。

android{


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

}

でうまくいきました。 あなたはそれを試すことができます!