【问题标题】:Using Contrib and Web Espresso imports causes duplicateFileException使用 Contrib 和 Web Espresso 导入会导致 duplicateFileException
【发布时间】:2016-03-03 14:21:47
【问题描述】:

我正在使用 Android Espresso。我需要使用 Contrib 和 Web,所以这里的解决方案对我不起作用。 Link

我收到此错误。

Error:Execution failed for task ':transformResourcesWithMergeJavaResForQaDebugAndroidTest'.

com.android.build.api.transform.TransformException:com.android.builder.packaging.DuplicateFileException:在 APK META-INF/maven/com.google.guava/guava/pom.xml 中复制的文件重复 文件 1:C:\Users\jwhit\ASProjects\v2.0\build\intermediates\exploded-aar\com.android.support.test.espresso\espresso-web\2.2.1\jars\classes.jar 文件2:C:\Users\jwhit\ASProjects\v2.0\build\intermediates\exploded-aar\com.android.support.test.espresso\espresso-core\2.2.1\jars\classes.jar

这些都添加到我的gradle中,如下所示。

dependencies {
    androidTestCompile 'junit:junit:4.12'
    androidTestCompile 'com.android.support.test:runner:0.4.1'
    androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
    androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
    androidTestCompile 'com.android.support:support-annotations:23.2.0'
    androidTestCompile 'com.android.support.test:rules:0.4.1'
    androidTestCompile ('com.android.support.test.espresso:espresso-web:2.2.1')
    androidTestCompile ('com.android.support.test.espresso:espresso-contrib:2.2.1'){
        exclude group: 'com.android.support', module: 'appcompat'
        exclude group: 'com.android.support', module: 'support-v4'
        exclude module: 'recyclerview-v7'
    }
}

【问题讨论】:

    标签: android android-gradle-plugin android-espresso


    【解决方案1】:

    我找到了解决方案。将此添加到 gradle build 的 android 部分

    android{
        packagingOptions {
    
            pickFirst('META-INF/maven/com.google.guava/guava/pom.xml')
            pickFirst('META-INF/maven/com.google.guava/guava/pom.properties')
        }
    }
    

    我希望有人觉得这很有用。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2023-01-27
      • 2015-10-18
      • 1970-01-01
      • 2021-12-07
      • 1970-01-01
      • 2017-07-19
      • 2019-04-24
      相关资源
      最近更新 更多