:thread: I’ve been encountering this when upgradin...
# compose-ios
a
🧵 I’ve been encountering this when upgrading my project to k2 + kotlin 1.9.0 🧵
👍 1
gradle.txt
o
K2 support in Compose will be improved by Kotlin 1.9.20 and corresponding Compose compiler version. You may give a try to compose compiler plugin 0.0.0-1.9.20-Beta-35 and kotlin 1.9.20-Beta-35, but there is still a known issue to be fixed for ios apps. compose compiler can be set by adding:
Copy code
compose {
    kotlinCompilerPlugin.set("0.0.0-1.9.20-Beta-35")
    kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20-Beta-35")
}
https://github.com/JetBrains/compose-multiplatform/blob/master/VERSIONING.md#disabling-kotlin-compatibility-check
a
Good to know 🙂
Thank you! I’ll try this out