android – java.lang.ClassNotFoundException:没有找到类“kotlinx.coroutines.experimental.Deferred”

我在使用coroutine进行改造时遇到了这个问题,请你告诉我为什么我会收到这个错误

java.lang.ClassNotFoundException:在路径上找不到类“kotlinx.coroutines.experimental.Deferred”:DexPathList [[zip file“/data/app/com.coroutines.retrofit.kotlin-1/base.apk”], nativeLibraryDirectories = [/ vendor / lib64,/ system / lib64]]

虽然我使用以下依赖项,

实现’com.jakewharton.retrofit:retrofit2-kotlin-coroutines-experimental-adapter:1.0.0′

实现’org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1′
实现’org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1′

而kotlin版本是:
ext.kotlin_version =’1.3.10′

解决方法:

Add this dependency in your build.gradle : (remove experimental dependency for coroutine)

dependencies {
    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.0'
    implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
}

And add CoroutineCallAdapterFactory() for retrofit

addCallAdapterFactory(CoroutineCallAdapterFactory())
上一篇:使用Gson创建JSON会导致应用程序崩溃


下一篇:五、搭建Redis 集群