diff --git a/experimental/examples/falling-balls-mpp/gradle.properties b/experimental/examples/falling-balls-mpp/gradle.properties index e9690b1a9a..a5a651e452 100644 --- a/experimental/examples/falling-balls-mpp/gradle.properties +++ b/experimental/examples/falling-balls-mpp/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx3g -compose.version=1.2.0-alpha01-dev675 +compose.version=1.2.0-alpha01-dev716 kotlin.version=1.6.21 kotlin.code.style=official kotlin.native.cacheKind=none diff --git a/experimental/examples/minesweeper/README.md b/experimental/examples/minesweeper/README.md index 0f33ccc1e3..cb98fe7730 100644 --- a/experimental/examples/minesweeper/README.md +++ b/experimental/examples/minesweeper/README.md @@ -2,5 +2,12 @@ A simple game powered by Compose Multiplatform +## Run native on MacOS +`./gradlew runDebugExecutableMacosX64` (Works on Intel processors) + +## Run on iOS simulator +`./gradlew iosDeployIPhone8Debug` +`./gradlew iosDeployIPadDebug` + ## Credits
Icons made by Creaticca Creative Agency from www.flaticon.com
\ No newline at end of file diff --git a/experimental/examples/minesweeper/build.gradle.kts b/experimental/examples/minesweeper/build.gradle.kts index 7b8c600470..7954b230eb 100644 --- a/experimental/examples/minesweeper/build.gradle.kts +++ b/experimental/examples/minesweeper/build.gradle.kts @@ -16,7 +16,7 @@ buildscript { plugins { kotlin("multiplatform") version "1.6.21" - id("org.jetbrains.compose") version "1.2.0-alpha01-dev675" + id("org.jetbrains.compose") version "1.2.0-alpha01-dev716" } version = "1.0-SNAPSHOT"