Skip to content

Commit

Permalink
hotfix Issue 2113 missing coroutines-core in JS (#2142)
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-avdeev-jb authored Jun 27, 2022
1 parent 45aa109 commit 412e4f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions experimental/examples/minesweeper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
3 changes: 3 additions & 0 deletions experimental/examples/minesweeper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand Down

0 comments on commit 412e4f7

Please sign in to comment.