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

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

概述我在使用coroutine进行改造时遇到了这个问题,请你告诉我为什么我会收到这个错误java.lang.ClassNotFoundException:在路径上找不到类“kotlinx.coroutines.experimental.Deferred”:DexPathList[[zipfile“/data/app/com.coroutines.retrofit.kotlin-1/base.apk”],nativeLibrary

我在使用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())

总结

以上是内存溢出为你收集整理的android – java.lang.ClassNotFoundException:没有找到类“kotlinx.coroutines.experimental.Deferred”全部内容,希望文章能够帮你解决android – java.lang.ClassNotFoundException:没有找到类“kotlinx.coroutines.experimental.Deferred”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1115275.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存