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.
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"
}
As a beginner, I had this issue while using a pre-made project for in some tutorial, and above solution didn't work for me.
So in case someone face same problem.
I had to upgrade gradle version in
build.gradle
file for project:Then I had to upgrade gradle wrapper in
gradle-wrapper.properties
:Then, I set
useAndroidX
to true ingradle.properties
file:That's it. I hope it helps.
Can use add in build.gradle(app) (answered by TheStrikeBone)
OR downgrade
android.arch.work
version into1.0.0-alpha08
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:So, in your case, android section should be like following:
Issue should be addressed properly in
1.0.0-alpha10
version of WorkManager.In my case, I solve the problem by setting androidx.room use the same version as androidx.lifecycle
I got the same error when I added the following to my app's build.gradle dependencies section:
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
Following the Migration to AndroidX:
now I am able to build without problems so far.
My setup
Adding this to my apps build.gradle file solved my problem.