2016-04-07 19 views
0

私は私のAndroidのプロジェクトではApache POIを含めるようにしようとしていますが、私は次のエラーを取得する:エラー:タスク ':app:packageAllDebugClassesForMultiDex'の実行に失敗しました。 ApacheのPOIのAndroid

Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'. 
> java.util.zip.ZipException: duplicate entry: org/apache/xmlbeans/xml/stream/Location.class 

マイbuild.gradle:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.2' 

    defaultConfig { 
     applicationId "com.example.alexandra.kavb" 
     minSdkVersion 15 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
     multiDexEnabled = true 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 

    packagingOptions { 
     exclude 'META-INF/LICENSE' 
     exclude 'META-INF/NOTICE' 
     exclude 'META-INF/NOTICE.txt' 
     exclude 'META-INF/LICENSE.txt' 
    } 

    dexOptions { 
     javaMaxHeapSize "2g" 
    } 
} 

dependencies { 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.0.1' 
    compile 'com.android.support:design:23.0.1' 
    compile 'com.google.android.gms:play-services-appindexing:8.1.0' 
    compile files('libs/commons-codec-1.10.jar') 
    compile files('libs/commons-logging-1.2.jar') 
    compile files('libs/log4j-1.2.17.jar') 
    compile files('libs/poi-3.14-20160307.jar') 
    compile files('libs/poi-ooxml-3.14-20160307.jar') 
    compile files('libs/poi-ooxml-schemas-3.14-20160307.jar') 
    compile files('libs/xmlbeans-2.6.0.jar') 
    compile 'com.android.support:multidex:1.0.1' 
} 

マイ失敗ログイン:

Information:Gradle tasks [:app:assembleDebug] 
:app:preBuild UP-TO-DATE 
:app:preDebugBuild UP-TO-DATE 
:app:checkDebugManifest 
:app:preReleaseBuild UP-TO-DATE 
:app:prepareComAndroidSupportAppcompatV72301Library UP-TO-DATE 
:app:prepareComAndroidSupportDesign2301Library UP-TO-DATE 
:app:prepareComAndroidSupportMultidex101Library UP-TO-DATE 
:app:prepareComAndroidSupportSupportV42301Library UP-TO-DATE 
:app:prepareComGoogleAndroidGmsPlayServicesAppindexing810Library UP-TO-DATE 
:app:prepareComGoogleAndroidGmsPlayServicesBasement810Library UP-TO-DATE 
:app:prepareDebugDependencies 
:app:compileDebugAidl UP-TO-DATE 
:app:compileDebugRenderscript UP-TO-DATE 
:app:generateDebugBuildConfig UP-TO-DATE 
:app:generateDebugAssets UP-TO-DATE 
:app:mergeDebugAssets UP-TO-DATE 
:app:generateDebugResValues UP-TO-DATE 
:app:generateDebugResources UP-TO-DATE 
:app:mergeDebugResources UP-TO-DATE 
:app:processDebugManifest UP-TO-DATE 
:app:processDebugResources UP-TO-DATE 
:app:generateDebugSources UP-TO-DATE 
:app:processDebugJavaRes UP-TO-DATE 
:app:compileDebugJavaWithJavac UP-TO-DATE 
:app:compileDebugNdk UP-TO-DATE 
:app:compileDebugSources UP-TO-DATE 
:app:collectDebugMultiDexComponents 
:app:packageAllDebugClassesForMultiDex FAILED 
Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'. 
> java.util.zip.ZipException: duplicate entry: org/apache/xmlbeans/xml/stream/Location.class 
Information:BUILD FAILED 
Information:Total time: 2.68 secs 
Information:1 error 
Information:0 warnings 
Information:See complete output in console 

私はすでにxmlbeans.jarにエラーを追跡することができました。しかし、それを削除すると、ドキュメントの作成が機能しなくなります。あなたは何ができるか

+0

コンパイルファイル( 'libs/poi-ooxml-3.14-20160307.jar') コンパイルファイル( 'libs/poox-ooxml-schemas-3.14-20160307.jar')は、これら2つのjarファイルに共通のメソッドがあります。同じ場合はコードをチェックし、そのうち1つを削除してください – dex

+0

なぜJARファイルを使用していますか?たとえば、Mavenを検索することができます。 'compile 'org.apache.xmlbeans:xmlbeans:2.6.0'' –

答えて

1

は次のとおりです。jarファイルを解凍し

  1. 。 (単にこれは、重複するファイルを削除します.zip
  2. .jar拡張子を変更。
  3. これはjar
を再生し使用
  • (それを気に、コマンドの最後にドットがある)jar cf xmlbeans.jar -C (unzipped folder path) .を使用してjarを再作成します
  • +0

    ありがとう、これはうまくいきました! あなたはおそらく、そのクラスがそこに2回ある理由についてのリンクを私に提供することができますか? – HigHendHd

    +0

    この問題は既に開いています:https://issues.apache.org/jira/browse/XMLBEANS-499 –

    1

    これは依存関係のツリーです。xmlbeansの依存関係はpoi:poi-ooxml-schemasであり、commons-codecの依存関係はpoiであるため、重複しているためエラーとなります。

    +--- commons-codec:commons-codec:1.10 
    +--- commons-logging:commons-logging:1.2 
    +--- log4j:log4j:1.2.17 
    +--- org.apache.poi:poi:3.14 
    | \--- commons-codec:commons-codec:1.10 
    +--- org.apache.poi:poi-ooxml:3.14 
    | +--- org.apache.poi:poi:3.14 (*) 
    | +--- org.apache.poi:poi-ooxml-schemas:3.14 
    | | \--- org.apache.xmlbeans:xmlbeans:2.6.0 
    | |   \--- stax:stax-api:1.0.1 
    | \--- com.github.virtuald:curvesapi:1.03 
    +--- org.apache.poi:poi-ooxml-schemas:3.14 (*) 
    \--- org.apache.xmlbeans:xmlbeans:2.6.0 (*) 
    

    Gradleを使用して依存関係をコンパイルすると、そのような問題は発生しません。 Maven Repositoryで、JARファイルとしてダウンロードしたすべての依存関係を検索できます。

    ext { 
        // Variables to keep libraries consistent 
        supportLibVersion = '23.2.1' 
        apachePOIVersion = '3.14' 
        googlePlayServicesVersion = '8.4.0' 
    } 
    
    dependencies { 
        compile fileTree(dir: 'libs', include: ['*.jar']) 
    
        compile "com.android.support:design:${supportLibVersion}" 
        compile "com.google.android.gms:play-services-appindexing:${googlePlayServicesVersion}" 
        compile 'commons-logging:commons-logging:1.2' 
        compile 'log4j:log4j:1.2.17' 
        compile "org.apache.poi:poi:${apachePOIVersion}" 
        compile "org.apache.poi:poi-ooxml:${apachePOIVersion}" 
        compile "org.apache.poi:poi-ooxml-schemas:${apachePOIVersion}" 
    } 
    

    注:実際には、これらの依存関係を持つアプリを構築していないため、まだ(異なる)エラーが存在する可能性があります。

    関連する問題