Has the Compose multiplatform interop story change...
# compose
s
Has the Compose multiplatform interop story changed with the release of the compose gradle plugin with Kotlin 2.0.0?
j
The new Gradle plugin just configures the Compose Kotlin compiler plugin which is now hosted inside the Kotlin repo and versioned with Kotlin. This "new" compiler is near identical to the previous unbundled 1.x release from Google. The only real change is the presence of a type-safe DSL for configuration the compiler options rather than stringly-typed free args.
It does not affect the Compose runtime, or any downstream libraries or toolkits built on top of Compose in any way.
s
Thanks