Duplicate files copied in APK META-INF/LICENSE问题解决方案
今天在项目中增加了jackson的使用,由于笔者使用的是Android Studio,但是在编译的时候发现如下图中的错误,字面意思是文件重复了,遇到问题了,我们要解决呀,就开始找解决方案,
这里有了解决方案http://tieba.baidu.com/p/4229392283,即增加一些配置就行了,
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'
}
然后sync,rebuild,,编译通过,特此记录下来。