kotlin协程注解警告如何解决

how to solve kotlin coroutine annotation warning

我问一下

我使用 kotlin 协程

@OptIn(DelicateCoroutinesApi::class)
GlobalScope.launch {
    displaySura()
}

并且在构建选项卡中显示警告:

This annotation should be used with the compiler argument '-opt-in=kotlin.RequiresOptIn'

如何解决这个警告? 提前致谢

您可以在构建文件中添加 -opt-in=kotlin.RequiresOptIn 编译器参数:

compileKotlin {
    kotlinOptions {
        freeCompilerArgs += [
                "-Xopt-in=kotlin.RequiresOptIn"
        ]
    }
}