Skip to content

0.12.1

Compare
Choose a tag to compare
@github-actions github-actions released this 26 Apr 16:00
· 6 commits to refs/heads/compose-multiplatform since this release

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.04.01 (: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.1")
            }
        }
    }
}

What’s Changed