不稳定版本导致无法构建 #186
不稳定版本导致无法构建
#186
-
涉及的编程语言Kotlin 涉及的组件库QQ频道 疑问描述报错: Gradle Plugin: 依赖: |
Beta Was this translation helpful? Give feedback.
Answered by
ForteScarlet
Mar 3, 2024
Replies: 1 comment
-
看样子是之前尝试性开启 K2 后忘了关了... v4.0.0-beta2 已发布 当然,另一种解决方式是直接给自己的项目也开启 K2 编译 tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
// useK2
languageVersion = "2.0"
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Shiiyuko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
看样子是之前尝试性开启 K2 后忘了关了...
关注 issue simple-robot/simbot-component-qq-guild#123 ,
会稍后发布一个新的版本并暂时关闭 K2 编译v4.0.0-beta2 已发布
当然,另一种解决方式是直接给自己的项目也开启 K2 编译