@ -5,6 +5,9 @@ A simple game powered by Compose Multiplatform
## Run native on MacOS
`./gradlew runDebugExecutableMacosX64` (Works on Intel processors)
## Run web assembly in browser
`./gradlew jsBrowserDevelopmentRun`
## Run on iOS simulator
`./gradlew iosDeployIPhone8Debug`
`./gradlew iosDeployIPadDebug`
@ -88,6 +88,9 @@ kotlin {
implementation(compose.foundation)
implementation(compose.material)
implementation(compose.runtime)
//TODO hotfix of issue https://github.com/JetBrains/compose-jb/issues/2113
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
}