英文:
suspendCoroutine is not resolving
问题
import kotlin.coroutines.suspendCoroutine
在我的 Android Kotlin 项目中未解析。
Kotlin 版本 - 1.8.10
id 'org.jetbrains.kotlin.android' version "1.8.10" apply false
我还在 Gradle 文件中添加了以下条目:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_version"
有人可以指出这里缺少的依赖项/部分吗?
英文:
import kotlin.coroutines.suspendCoroutine
is not resolving in my android kotlin project
kotlin version - '1.8.10'
id 'org.jetbrains.kotlin.android' version "1.8.10" apply false
I added below entries as well in gradle file
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_version"
Can anyone point out the missing deps / pieces here?
答案1
得分: 2
你不需要这两者,它在标准库中。确保 Kotlin 插件正确应用(即您可以解析标准库中的其他内容),然后应该没问题。
如果仍然无法正常工作,请确保您的集成开发环境(IDE)已与 Gradle 配置保持最新。
英文:
You don't need either of those, it's in the stdlib. Make sure the Kotlin plugin is applied correctly (i.e. you can resolve other things from the stdlib) and you should be fine.
If it still doesn't work, make sure your IDE is up to date with Gradle config.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论