Skip to content

Commit

Permalink
Fix runtime compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipDolnik committed Mar 11, 2024
1 parent 72b856c commit a9a3160
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SKIE/runtime/kotlin/runtime-kotlin.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ skiePublishing {
}

kotlin {
sourceSets.commonMain {
dependencies {
implementation(libs.kotlinx.coroutines.core.legacy)
}
}

// Runtime requires Coroutines but watchosDeviceArm64 is only supported since Coroutines 1.7.0 which require Kotlin 1.8.20
// For this reason we must use an older version of Coroutines for Kotlin 1.8.0
// This solution is far from ideal due to current project setup limitations - refactor this code as part of the build logic rewrite
Expand Down

0 comments on commit a9a3160

Please sign in to comment.