当前位置: 首页 > 知识库问答 >
问题:

在APK META-INF/maven/com . nineoldandroids/library/POM . XML中复制了重复文件

燕雨石
2023-03-14

失败:生成失败,出现异常。

>

  • 出了什么问题:任务执行失败': transformResourcesSusMergeJavaResForDebug'。

    com.android.build.api.transform。TransformException:com.android.builder.packaging。DuplicateFileException:在APK META-INF/maven/com.nineldandroids/library/pom中复制了重复文件。xml文件1:D:\STUDIO\Mobility_Android\FFS\build\intermediates\exploded aar\FFS\ShowCaseViewLibrary\unspecified\jars\classes。jar文件2:D:\STUDIO\Mobility_Android\FFS\build\intermediates\exploded aar\FFS \AndroidBetterPickers\unspecified\jars\classes.jar

    尝试:使用--stacktrac选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。

    生成失败

  • 共有1个答案

    班思源
    2023-03-14

    将此添加到您的build.gradle文件中

    android {
        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'
        exclude 'META-INF/maven/com.nineoldandroids/library/pom.xml' 
        exclude 'META-INF/maven/com.nineoldandroids/library/pom.properties'
        }
    }
    
     类似资料: