码迷,mamicode.com
首页 > Web开发 > 详细

Duplicate files copied in APK META-INF/LICENSE 编译失败解决方法

时间:2017-11-21 15:52:58      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:pack   end   option   http   错误   报错   nload   UI   highlight   

# 错误日志
> com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK META-INF/LICENSE File1: /Users/xulun/Downloads/android 2/app/libs/httpclient-4.5.3.jar File2: /Users/xulun/Downloads/android 2/app/libs/httpcore-4.4.6.jar

 

 1 # 解决方法   build.gradle 添加, 看报错而定
 2 android {
 3     packagingOptions {
 4         #exclude META-INF/DEPENDENCIES
 5         #exclude META-INF/NOTICE
 6         exclude META-INF/LICENSE
 7         #exclude META-INF/LICENSE.txt
 8         #exclude META-INF/NOTICE.txt
 9     }
10     // ...
11 }

 

Duplicate files copied in APK META-INF/LICENSE 编译失败解决方法

标签:pack   end   option   http   错误   报错   nload   UI   highlight   

原文地址:http://www.cnblogs.com/a11en/p/7873290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!