Error:Execution failed for task \’:app:packageDebug\’. > Duplicate files copied in APK META-INF/LICENS
最后更新于:2022-04-01 19:52:15
Error:Execution failed for task ':app:packageDebug'.
> Duplicate files copied in APK META-INF/LICENSE
File 1: D:\CloudOffice\05.Coding\01.Code\Android\CloudOffice\app\libs\commons-lang-2.4.jar
File 2: D:\CloudOffice\05.Coding\01.Code\Android\CloudOffice\app\libs\httpmime-4.1.3.jar
笔者最近做项目 在 集成 环信之后,再集成 友盟分享 时遇到这个问题。
在网上查找各位前辈的解决方法之后终于解决这个头大的问题。
发生类似这样的问题 是因为这些包太旧了
所以就需要在Android studio 里面新增一些代码 来兼容这些老版本
**点击当前项目的build.gradle,将下面代码添加到下图红框的位置,问题就解决了!**
~~~
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'
}
~~~
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-02-23_56cbd2dc41ac3.jpg)
';