私は私の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にエラーを追跡することができました。しかし、それを削除すると、ドキュメントの作成が機能しなくなります。あなたは何ができるか
コンパイルファイル( 'libs/poi-ooxml-3.14-20160307.jar') コンパイルファイル( 'libs/poox-ooxml-schemas-3.14-20160307.jar')は、これら2つのjarファイルに共通のメソッドがあります。同じ場合はコードをチェックし、そのうち1つを削除してください – dex
なぜJARファイルを使用していますか?たとえば、Mavenを検索することができます。 'compile 'org.apache.xmlbeans:xmlbeans:2.6.0'' –