• android重复的文件复制APK META-INF许可证错误记录


    * What went wrong:
    Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
    > com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK META-INF/LICENSE
    File1: C:AndroidStudioUmer_Doctorapplibshttpmime-4.3.5.jar
    File2: C:AndroidStudioUmer_Doctorapplibshttpcore-4.3.2.jar


    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

    这个是当时抛出的异常信息,很奇怪,应该是第三方包文件冲突,下面是解决方案(如果有更了解的人欢迎详细解说下,互相学习)

    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'
        }
    View Code

    这个是完整的解决方案,虽然我不知道这是什么原因,估计是编译器的问题,说不定以后as升级了不会发生,我用的是1.5版本的

  • 相关阅读:
    2016年中国大学生程序设计竞赛(杭州)解题报告
    HNOI2017滚粗记
    BZOJ4515 SDOI2016 游戏
    BZOJ2157 旅行 模拟
    codevs2019 Uva10029 递变阶梯
    POJ 2585 Window Pains 题解
    linux 下 打包 和解压缩
    php 分页
    js 四舍五入
    angularjs 过滤多组数据
  • 原文地址:https://www.cnblogs.com/LiuZhen/p/5198523.html
Copyright © 2020-2023  润新知