Opt-in requirement marker annotation on override requires the same marker on base declaration.

问题

Kotlin注解@ExperimentalStdlibApi 编译报错,如下图所示:
Opt-in requirement marker annotation on override requires the same marker on base declaration._第1张图片

解决办法

将kotlin gradle插件版本从1.6几的版本降低到1.5几的版本,比如笔者报错时kotlin gradle插件版本为1.6.10

修改成1.5.31,如下所示:

即可正常编译。
Opt-in requirement marker annotation on override requires the same marker on base declaration._第2张图片

你可能感兴趣的:(开发备忘录,kotlin)