Questions tagged «android-workmanager»

7
使用操作系统独立路径“ META-INF / proguard / androidx-annotations.pro”找到了多个文件
我正在尝试android WorkManager,代码运行时抛出错误“运行OS独立路径'META-INF / proguard / androidx-annotations.pro找到多个文件”,我尝试了以下答案,但没有帮助。 WorkManager依赖关系 build.gradle(应用程序) 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: …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.