当前位置:  开发笔记 > 编程语言 > 正文

错误:任务执行失败':app:transformResourcesWithMergeJavaResForDebug'

如何解决《错误:任务执行失败':app:transformResourcesWithMergeJavaResForDebug'》经验,为你挑选了1个好方法。



1> JBirdVegas..:

由于错误消息表明您不排除META-INF/LICENSE存在于多个依赖项中的文件

com.android.build.api.transform.TransformException:com.android.builder.packaging.DuplicateFileException:在APK META-INF/LICENSE中复制的重复文件

packagingOptions {
    exclude 'META-INF/NOTICE' // will not include NOTICE file
    exclude 'META-INF/LICENSE' // will not include LICENSE file
    // as noted by @Vishnuvathsan you may also need to include
    // variations on the file name. It depends on your dependencies.
    // Some other common variations on notice and license file names
    exclude 'META-INF/notice'
    exclude 'META-INF/notice.txt'
    exclude 'META-INF/license'
    exclude 'META-INF/license.txt'
}


排除'META-INF/notice.txt'排除'META-INF/license.txt'
这对我不起作用,所以我删除了我的最后一个依赖项并且它有效.
推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有