I think there might be a bug in the error message ...
# compose
m
I think there might be a bug in the error message for compose compiler or I don't understand something. I get:
This version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.31 but you appear to be using Kotlin version 1.4.32 which is not known to be compatible. Please fix your configuration (or
suppressKotlinVersionCompatibilityCheck
but don't say I didn't warn you!).
But the version I'm using is
1.0.0-beta03
. Also, when I had
1.0.0-beta01
it complained
This version (1.0.0-alpha13) of the Compose Compiler requires Kotlin version 1.4.30 but you appear to be using Kotlin version 1.4.32 which is not known to be compatible. Please fix your configuration (or
suppressKotlinVersionCompatibilityCheck
but don't say I didn't warn you!).
So it's still saying
(1.0.0-alpha13)
even though reports that it requires a different kotlin version. Where do I even report that?
j
Run into that too, had to restore this gradle config:
Copy code
composeOptions {
    kotlinCompilerExtensionVersion = "1.0.0-beta05"
}
j
I think we had a bug where the version string was not getting updated when we were cutting new releases. My understanding is that this issue has been fixed in later versions of Compose.
✔️ 1