在APK

2017-08-10 59 views
0

複製重複文件我有這樣的錯誤在APK

錯誤:執行失敗的任務「:應用程序:transformResourcesWithMergeJavaResForDebug」。

com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK com/j256/ormlite/core/LICENSE.txt File1: ../.gradle/caches/modules-2/files-2.1/com.j256.ormlite/ormlite-core/4.48/e579bd2905d0399af5029aaaf9817d5fa0ca88a5/ormlite-core-4.48.jar File2: ../utils-lib/build/intermediates/bundles/default/classes.jar File3: ../networking-lib/build/intermediates/bundles/default/classes.jar

任何幫助解決這個錯誤提前

感謝,

回答

2

加入的build.gradle:

packagingOptions { 
    exclude '**/LICENSE.txt' 
    exclude 'pom.xml' 
} 

但是你可能只排除com/j256/ormlite/core/LICENSE.txt,而不是所有LICENSE.txt文件

+0

感謝它適用於我,但出現了另一個錯誤 錯誤:執行任務':app:transformResourcesWithMergeJavaResForDebug'失敗。 > com.android.build.api.transform.TransformException:com.android.builder.packaging.DuplicateFileException:在APK中複製的重複文件pom.xml \t File1:../ app/libs/signalr-client-sdk.jar \t File2:../android-measurementslib1/build/intermediates/bundles/default/classes.jar – abdu

+0

@abdu我已經更新了答案。 – DeKaNszn

+0

感謝它的工作(是) – abdu

0

試試這個

exclude 'META-INF/ASL2.0'