I updated to beta08 today, but I get this when I ...
# compose
c
I updated to beta08 today, but I get this when I try to run.
e: This version (1.0.0-beta07) of the Compose Compiler requires Kotlin version 1.4.32 but you appear to be using Kotlin version 1.5.10 which is not known to be compatible. Please fix your configuration (or
suppressKotlinVersionCompatibilityCheck
but don't say I didn't warn you!).
Is there an easy way to figure out which dependency is pulling in beta07? (I updated to kotlin 1.5.10 and beta08 and I did a global search on 1.4.32 and beta07 and there are 0 occurances)
a
Run
./gradlew -q module-name:dependencies
and search for 1.0.0-beta07.
c
kotlin-extension - Configuration for Compose related kotlin compiler extension
\--- androidx.compose.compilercompiler1.0.0-beta07
🤔
a
Are you specifying the correct version here?
Copy code
composeOptions {
    kotlinCompilerExtensionVersion = "1.0.0-beta08"
}
c
Ah. I'm not. I guess that just so happened to work when we were using beta07. Thanks for the tip
👍 2
i
Please show me where you could see that beta08 is out? Here and here i see beta07 as last version.
i
Thanks a lot!