最近在項(xiàng)目中遇到一個(gè)很怪的問題,在項(xiàng)目中引入個(gè)兩個(gè)三方包的時(shí)出現(xiàn)了包沖突(引入的兩個(gè)包是fastjson-1.2.5.jar和httpmime-4.1.3.jar),編譯時(shí)報(bào)的錯(cuò)誤如下代碼:
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK META-INF/LICENSE.txt
File1: D:\HerVillage_WrokSpace\HerVillage\app\libs\httpmime-4.1.3.jar
File2: D:\HerVillage_WrokSpace\HerVillage\app\libs\fastjson-1.2.5.jar
解決辦法
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
}