I am getting the following error on build: ```e: T...
# compose
a
I am getting the following error on build:
Copy code
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.21 which is not known to be compatible.  Please fix your configuration (or `suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!).
But I am using compose 1.0.1 and the only place that uses beta is
androidx.constraintlayout:constraintlayout-compose:1.0.0-beta02
which itself is beta02 not beta07, I am not sure if internally it uses compose compiler beta07. How do I resolve this issue.??
c
What did you set in
Copy code
Android {
  composeOptions {
    kotlinComoilerExtensionVersion = ???
  }
}
???
☝🏼 1
☝️ 1
a
@Chrimaeon Actually I didn't set anything 😛 I initially had set it properly but then removed it along with other property which was deprecated. I set this to 1.0.1 and it now works properly. Thanks a bunch 🙂
👍 1