Android Duplicate files copied in APK
Posted newcaoguo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Duplicate files copied in APK相关的知识,希望对你有一定的参考价值。
今天调试 Android 应用遇到这么个问题:
Duplicate files copied in APK META-INF/DEPENDENCIES File 1: httpmime-4.3.2.jar File 2: httpmime-4.3.2.jar
貌似说两个包里面的文件重复了还是怎么的,谷歌了一番之后据说应该是 android studio 自身的bug
解决办法:
打开项目下面的 build.gradle 文件,在 android 代码块中添加下面代码
- android {
- packagingOptions {
- exclude ‘META-INF/DEPENDENCIES‘
- exclude ‘META-INF/NOTICE‘
- exclude ‘META-INF/LICENSE‘
- exclude ‘META-INF/LICENSE.txt‘
- exclude ‘META-INF/NOTICE.txt‘
- }
- }
将这些文件全部排出掉就ok了
但不知道这么做会不会有什么隐患,还是有其他更好的解决办法
以上是关于Android Duplicate files copied in APK的主要内容,如果未能解决你的问题,请参考以下文章
Android Duplicate files copied in APK
Android学习笔记--遇到Duplicate files copied in APK META-INF/LICENSE.txt
Android Studio 错误 Duplicate files copied in APK META-INF/LICENSE.txt
Android Studio - Gradle 更新升级到2.1.0后,发生Duplicate files copied in APK META-INF
Android问题集锦之四十八:Error:duplicate files during packaging of APK