kotlinforandroid
build-logic
KotlinMultiplatformExtension#compose
class KmpComposePlugin : Plugin<Project> { override fun apply(target: Project) { with(target) { with(pluginManager) { apply("kmp") apply("org.jetbrains.compose") } val extension = extensions.getByType<KotlinMultiplatformExtension>() with(extension) { jvm() sourceSets.commonMain.dependencies { implementation(this@with.compose.runtime) } } } } }
Pablichjenkov
Chrimaeon
A modern programming language that makes developers happier.