Duplicate files copied in APK META-INF/notice.txt错误的解决办法

这个错误在加入httpcore与httpclient包的时候编译的时候出现的,出现这个错误的时候需要在build.gradle文件中加入

    packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/NOTICE' exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE.txt' exclude 'META-INF/ASL2.0' }

你可能感兴趣的:(apk)