“suspendCoroutine is not resolving” can be translated to “suspendCoroutine没有解决” in Chinese.

huangapple go评论61阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年6月12日 21:00:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/76456920.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定