0.12.3
Built to work with
- Compose Multiplatform 1.4.0 (
:core
) - Jetpack Compose BOM 2023.05.00 (
:navigation
)
Key Changes
🖥️ [Core] Compose Multiplatform is now supported in 'core' library!
plugins {
kotlin("multiplatform")
id("org.jetbrains.compose")
}
kotlin {
android()
jvm("desktop")
ios()
iosSimulatorArm64()
sourceSets {
val commonMain by getting {
dependencies {
implementation(compose.desktop.currentOs)
implementation("io.github.fornewid:material-motion-compose-core:0.12.3")
}
}
}
}