android – 在APK META-INF / maven / com.squareup / otto / pom.xml中复制的重复文件

前端之家收集整理的这篇文章主要介绍了android – 在APK META-INF / maven / com.squareup / otto / pom.xml中复制的重复文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试运行我的应用程序时,我得到下面提到的错误.

错误:执行失败的任务’:app:transformResourcesWithMergeJavaResForAmazonCheezCoverage’.

com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK Meta-INF/maven/com.squareup/otto/pom.xml
File1: /Users/afourtest/.gradle/caches/modules-2/files-2.1/com.crashlytics.android/crashlytics/1.1.13/e821eafa1bf489a26bdb71f95078c26785b37a1/crashlytics-1.1.13.jar
File2: /Users/afourtest/.gradle/caches/modules-2/files-2.1/com.squareup/otto/1.3.7/69d90fd7fb70e54746e26c10454c220e40a775ce/otto-1.3.7.jar

我的应用build.gradle是here

解决方法

添加到build.gradle:
android {
...
    packagingOptions {
         exclude 'Meta-INF/maven/com.squareup/otto/pom.xml'
}

另外,而不是排除你可以使用pickFirst

原文链接:https://www.f2er.com/android/312377.html

猜你在找的Android相关文章