发现多个文件与操作系统独立路径“META-INF/proguard/androidx-annotations.pro" [英] More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'

查看:26
本文介绍了发现多个文件与操作系统独立路径“META-INF/proguard/androidx-annotations.pro"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 android WorkManager,代码抛出错误<强>运行时发现多个文件与操作系统独立路径META-INF/proguard/androidx-annotations.pro",我尝试了以下answer,没有帮助.

i am trying android WorkManager, The code is throwing error "More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro" when running, I tried the following answer, it was not helpful.

WorkManager 依赖项

build.gradle(app)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "rock.dmx.xaro.workmanagerexample"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }


}

dependencies {
    def work_version = "1.0.0-alpha09"
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation "android.arch.work:work-runtime:$work_version"
}

推荐答案

这是目前已知的问题,Architecture Components Release Notes 概述了问题并提供了解决方案,直到 alpha10 版本的工作管理器库:

This is a known problem at the moment, Architecture Components Release Notes outline the issue and provides a solution to fix it until alpha10 version of work manager library:

已知问题

如果您遇到以下问题:发现多个文件与操作系统独立路径‘META-INF/proguard/androidx-annotations.pro’",请将以下内容放入您的 gradle 文件中作为临时解决方法,同时我们在 alpha10 中修复了这个问题:

If you run into the following issue: "More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'", please put the following in your gradle file as a temporary workaround while we fix the issue in alpha10:

 android {
     packagingOptions {
         exclude 'META-INF/proguard/androidx-annotations.pro'
     }
 }

因此,在您的情况下,android 部分应如下所示:

So, in your case, android section should be like following:

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "rock.dmx.xaro.workmanagerexample"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    // Temporary fix until alpha10
    packagingOptions {
        exclude 'META-INF/proguard/androidx-annotations.pro'
    }
}

应该在 1.0.0-alpha10 版本的 WorkManager 中正确解决问题.

Issue should be addressed properly in 1.0.0-alpha10 version of WorkManager.

这篇关于发现多个文件与操作系统独立路径“META-INF/proguard/androidx-annotations.pro"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆