Hello. I have a multi-module, KMP project. As of n...
# compose-android
d
Hello. I have a multi-module, KMP project. As of now, I have only KMP (JVM), KMP(JVM + Android) and plain JVM + Android modules. I have Compose only in plain JVM Android modules and I correctly set the Compose Compiler as
1.4.5
as
Copy code
private fun configureComposeOptions(libsCatalog: VersionCatalog, ext: TestedExtension) {
  ext.buildFeatures.compose = true
  ext.composeOptions.kotlinCompilerExtensionVersion = libsCatalog.findVersion("composeCompiler").get().toString()
}
Somehow I get the error
e: This version (1.4.2) of the Compose Compiler requires Kotlin version blablabla
And I have no clue where this
1.4.2
is coming from 🤔 Any idea would be appreciated
Ops, it seems like I had to update Molecule as well 🙂 I was trying to do progressive updates