在OS独立路径中发现了多个文件' protobuf.meta'

时间:2017-11-15 03:32:16

标签: android android-gradle protocol-buffers android-espresso

我发现com.google.android.gms:play-services-auth:11.6.0com.android.support.test.espresso:espresso-core:3.0.1之间存在兼容性问题 当用作android库模块的依赖项时

我收到此错误:

Execution failed for task ':mylibrary:transformResourcesWithMergeJavaResForDebugAndroidTest'.   
More than one file was found with OS independent path 'protobuf.meta'

当我尝试执行./gradlew :myLibrary:connectedAndroidTest

这是一个准确的build.gradle,我已经将问题重现在:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 26



    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.google.android.gms:play-services-auth:11.6.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

我不认为我可以排除其中任何一个文件,因为内容不同。

1 个答案:

答案 0 :(得分:14)

发生此问题是因为您使用包含相同文件的两个单独导入。您的问题是外部库可能有重复内容或导入两次,以解决此问题您应该将这些代码行放在 build.gradle (模块: app )中

添加以下行:

android {
    // [...]
    packagingOptions {
        pickFirst 'protobuf.meta'
    }
}

有时,也可以完全排除此文件:exclude 'protobuf.meta'

如果是多模块项目,由于检测测试中的此错误而无法构建的Android库,可能需要在 build.gradle 中包含此代码段。