Joost Van Wynen
12/04/2020, 1:20 PMjava.lang.IncompatibleClassChangeError: Found class org.jetbrains.kotlin.ir.declarations.IrModuleFragment, but interface was expected
. I think it has something to do with incompatible versions of Kotlin or some dependency, so I am trying to follow the example given by the KMM sample docs. Does anyone know which direction to look for a fix?nrobi
12/04/2020, 1:27 PMkotlinVersion 1.4.20
with the latest 1.0.0-alpha08
compose compiler version?
composeOptions {
kotlinCompilerVersion = "1.4.20"
kotlinCompilerExtensionVersion = "1.0.0-alpha08"
}
Joost Van Wynen
12/04/2020, 1:30 PMJohn O'Reilly
12/04/2020, 1:44 PMJoost Van Wynen
12/04/2020, 1:55 PMJohn O'Reilly
12/04/2020, 1:56 PMJoost Van Wynen
12/04/2020, 2:02 PMJohn O'Reilly
12/04/2020, 2:02 PMkotlin("android.extensions")
by any chance?Joost Van Wynen
12/04/2020, 2:16 PMkotlin("android.extensions")
does fix my problem. My project now builds without a problem. Thanks!!John O'Reilly
12/04/2020, 2:17 PM