更新到工作管理器 1.0.0-alpha09 后编译错误



我正在尝试从架构组件中使用WorkManager。我已经将 compileSdkVersion 和 targetSdkVersion 从 27 升级到 28。Gradle 同步成功完成。但是构建时错误不断弹出。android.support 库使用的是版本 28.0.0-RC02,因为"android.support:design"。

我试图添加打包选项以排除"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中实现了打包选项,就像这里一样

packagingOptions {
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)}

阿拉伯数字:

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

根据 WorkManager 1.0.0-alpha09 发行说明:

已知问题

如果您遇到以下问题:"发现多个文件具有与操作系统无关的路径'META-INF/proguard/androidx-annotations.pro'",请在 gradle 文件中放置以下内容作为临时解决方法,同时我们在 alpha10 中修复该问题:

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

编辑:您的其他错误是由此问题引起的:

它是故意这样做的: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' 
}

如果你有一个带有 Guava v27 和最新版本的工作管理器的项目,一切正常。我刚刚尝试了一下,它修复了我的项目。

这构建得很好:

dependencies {
implementation 'android.arch.work:work-runtime:1.0.0-beta01'
implementation 'com.google.guava:guava:27.0.1-android'
}

发行说明说这个错误在 1.0.0-alpha10 中得到了修复:

错误修复

修复了 alpha09 中关于重复的已知问题 androidx-annotations.pro 文件。您可以从 通过删除排除的先前发行说明 "META-INF/proguard/androidx-annotations.pro"来自您的 gradle 文件。


但。。。由于某种原因,我在 1.0.0-alpha11 版本中仍然看到此错误。

对此的一种解决方法是将可听未来模块从工作运行时组件中排除,正如他的答案中所指出@ianhanniballake。

并且还要排除work-firebase组件中@Zack注释部分中指出的相同模块。


build.gradle

/*
|--------------------------------------------------------------------------
| 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"

相关内容

  • 没有找到相关文章

最新更新