https://kotlinlang.org logo
j

John O'Reilly

12/17/2021, 7:35 PM
Looks like Jetpack Compose
1.1.0-rc02
(well, Compose Compiler part anyway) works with Kotlin 1.6.10....should there be wear compose version right now that also works with that? https://kotlinlang.slack.com/archives/CJLTWPH7S/p1639683988274300
🎉 2
Sometimes you have to ask the question to realise the answer 🙂 Worked if I updated to following in wear app
build.gradle.kts
Copy code
composeOptions {
        kotlinCompilerExtensionVersion = "1.1.0-rc02"
    }
5 Views