Bumped into a strange behaviour in the IDE. There is a KMP project created using the
Multiplatform Wizard, it uses Kotlin 1.9.20. It has the
composeApp
module that uses Multiplatform Compose
1.5.10
. As soon as we add
com.arkivanov.decompose:extensions-compose:3.0.0-alpha01
dependency to
composeApp
module, some imports (like for example
Column
) are shown as unresolved in
commonMain
. The added dependency uses Compose
1.6.0-alpha01
. If I update Compose to
1.6.0-alpha01
in the project, then imports are good again. The module compiles just fine in all cases. Updaing Kotlin to
1.9.21
and Compose to
1.5.11
is also affected.
Were there any breaking changes in Compose
1.6.0-alpha01
? More details
here.