```java.lang.IncompatibleClassChangeError: Found i...
# compose
m
Copy code
java.lang.IncompatibleClassChangeError: Found interface org.jetbrains.kotlin.ir.declarations.IrClass, but class was expected
	at androidx.compose.compiler.plugins.kotlin.VersionChecker.check(VersionChecker.kt:65)
	at
s
It is likely that you're not using Kotlin 1.4.20 across the board, then. alpha08 requires 1.4.20. Check your dependencies. Also check
./gradlew dependencies
. And make sure you have the
composeOptions
set with a Kotlin compiler version and Compose version in your build scripts.
m
yeah, generated build script didn’t use a variable in the composeOptions šŸ˜ž. grumble…..
s
Glad you figured it out. simple smile