博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
build.gradle-Error:duplicate files during packagin
阅读量:5914 次
发布时间:2019-06-19

本文共 833 字,大约阅读时间需要 2 分钟。

hot3.png

只需要在Android下的build.gradle加上这个。packagingOptions {    exclude 'META-INF/LICENSE.txt'    exclude 'META-INF/NOTICE.txt'}     当报这样的错的时候       Error:duplicate files during packaging of APK E:\studiospace\CheGuan\app\build\outputs\apk\app-debug-unaligned.apk    Path in archive: META-INF/LICENSE.txt    Origin 1: E:\studiospace\CheGuan\app\libs\httpcore-4.2.4.jar    Origin 2: E:\studiospace\CheGuan\app\libs\fastjson-1.2.5.jarYou can ignore those files in your build.gradle:    android {      packagingOptions {        exclude 'META-INF/LICENSE.txt'      }    }Error:Execution failed for task ':app:packageDebug'.> Duplicate files copied in APK META-INF/LICENSE.txt    File 1: E:\studiospace\CheGuan\app\libs\httpcore-4.2.4.jar    File 2: E:\studiospace\CheGuan\app\libs\fastjson-1.2.5.jar

转载于:https://my.oschina.net/u/3407708/blog/1358213

你可能感兴趣的文章
java中的初始化块
查看>>
Windows脚本初探之VBScrip流程控制For...Next
查看>>
CUDA学习(十七)
查看>>
createrepo -g /enp/comps.xml .
查看>>
基于物理的渲染—迪士尼的渲染模型
查看>>
AOP之PostSharp6-EventInterceptionAspect(事件异步调用)
查看>>
修正一款php webshell
查看>>
ubuntu 常用命令锦集
查看>>
how to install keepassx on RHEL
查看>>
AIX5.3安装ssh 笔记
查看>>
活动目录漫游用户配置解决方案
查看>>
Android笔记:测量控件宽高和动态设置控件宽高
查看>>
windows2000修复过程
查看>>
Django补充及初识Ajax
查看>>
OpenStack —— 网络进阶Linux Bridge(七)
查看>>
【开发参考】Silverlight 4控件对应装配文件表
查看>>
git对象类型及存储结构讲解
查看>>
跟大家分享几个MySQL数据库备份的小窍门
查看>>
IP地址与网络上的其他系统有冲突
查看>>
微软私有云分享(R2)22 计算机配置文件与基础设置
查看>>