当我在其中一个.kt文件中使用“ follow”时,
import kotlinx.coroutines.*
我收到编译错误,提示“未解决的参考:协程”。
上下文:我正在Android Studio中使用Kotlin构建Android应用。
我可能做错了什么?
答案 0 :(得分:3)
确保要在build.gradle
文件中导入库:
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2'
// Other dependencies here...
}