我正在尝试从体系结构组件中使用WorkManager。我已经将compileSdkVersion和targetSdkVersion从27升级到28。gradle同步已成功完成。但是构建时错误不断弹出。 android.support库使用的版本为28.0.0-rc02,因为存在“ android.support:design”。
我试图添加PackagingOptions以排除“ proguard / androidx-annotations.pro”。但这没有帮助。但是这次我收到了另一条错误消息:
Program type already present: com.google.common.util.concurrent.ListenableFuture
我不知道出了什么问题。
build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'io.fabric'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.apps.test"
minSdkVersion 16
targetSdkVersion 28
versionCode 5
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
signingConfigs {
release
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "bool", "enableFirebase", "true"
}
debug {
minifyEnabled false
resValue "bool", "enableFirebase", "false"
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
// implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:design:28.0.0-rc02'
implementation 'com.android.support:recyclerview-v7:28.0.0-rc02'
implementation 'com.android.support:support-v4:28.0.0-rc02'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.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 'com.google.android.gms:play-services-maps:15.0.1'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.android.gms:play-services-auth:16.0.0'
implementation 'com.google.firebase:firebase-firestore:17.1.0'
implementation 'com.firebaseui:firebase-ui-firestore:4.1.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'
//Arch
implementation 'android.arch.core:runtime:1.1.1'
implementation 'android.arch.core:common:1.1.1'
implementation 'com.google.code.gson:gson:2.8.5'
implementation "android.arch.work:work-runtime-ktx:1.0.0-alpha09"
// implementation "android.arch.work:work-firebase:1.0.0-alpha09"
}
apply plugin: 'com.google.gms.google-services'
编辑: 我已经在gradle like in here
中实现了PackagingOptionspackagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
但是这次我又遇到了5个错误:
1:
Program type already present: com.google.common.util.concurrent.ListenableFuture
Message{kind=ERROR, text=Program type already present: com.google.common.util.concurrent.ListenableFuture, sources=[Unknown source file], tool name=Optional.of(D8)}
2:
Caused by: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: ...
3:
Caused by: com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: ...
4:
Caused by: com.android.tools.r8.CompilationFailedException: Compilation failed to complete
5:
Caused by: com.android.tools.r8.utils.AbortException
答案 0 :(得分:33)
按照WorkManager 1.0.0-alpha09 release notes:
已知问题
如果遇到以下问题:“使用操作系统独立路径'META-INF / proguard / androidx-annotations.pro'找到了多个文件”,请将以下内容作为临时解决方法放在gradle文件中,我们在alpha10中修复了该问题:
android {
packagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
}
编辑:您的其他错误是由this issue引起的:
这是有目的的:https://groups.google.com/forum/#!topic/guava-announce/Km82fZG68Sw
新版本的番石榴即将面世,它将自动解决该问题。
目前,您可以在gradle文件中排除
"com.google.guava:listenablefuture"
:
implementation("android.arch.work:work-runtime:1.0.0-alpha09") {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
答案 1 :(得分:1)
如果您的项目使用Guava v27和最新版本的WorkManager,则一切正常。我只是尝试了一下,就可以修复我的项目。
构建良好:
dependencies {
implementation 'android.arch.work:work-runtime:1.0.0-beta01'
implementation 'com.google.guava:guava:27.0.1-android'
}
答案 2 :(得分:0)
发行说明说此错误已在1.0.0-alpha10中修复:
错误修复
修复了alpha09中有关重复项的已知问题 androidx-annotations.pro文件。您可以从 删除之前的发行说明,排除 gradle文件中的“ META-INF / proguard / androidx-annotations.pro”。
但是... 由于某些原因,我仍然在1.0.0-alpha11版本中看到此错误。
对此的一种解决方法是,如@ianhanniballake在其回答中指出的那样,将 listenablefuture 模块从 work-runtime 组件中排除。
并且还在 work-firebase 组件中排除与@Zack在注释部分中指向的模块相同的模块。
/*
|--------------------------------------------------------------------------
| WorkManager
|--------------------------------------------------------------------------
*/
def work_version = "1.0.0-alpha11"
implementation("android.arch.work:work-runtime:$work_version") {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
// optional - Firebase JobDispatcher support
implementation("android.arch.work:work-firebase:$work_version") {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
// optional - Test helpers
androidTestImplementation "android.arch.work:work-testing:$work_version"