Skip to content

Commit

Permalink
Merge pull request #1694 from InsertKoinIO/fix/native_targets
Browse files Browse the repository at this point in the history
Add linuxArm64 target + update stately-concurrency 2.0.5 + Fix #1590
  • Loading branch information
arnaudgiuliani authored Nov 8, 2023
2 parents 6479ead + d81f0a3 commit 17c42ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions core/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ ext {

coroutines_version = "1.7.3"

stately_concurrency = "2.0.5"

// Dokka
dokka_version = '1.8.10'

Expand Down
21 changes: 11 additions & 10 deletions core/koin-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ kotlin {
macosArm64()
iosX64()
iosArm64()
// iosArm32()
iosSimulatorArm64()
// watchosArm32()
watchosArm32()
watchosArm64()
watchosSimulatorArm64()
// watchosX86()
watchosX64()
tvosArm64()
tvosSimulatorArm64()
tvosX64()

mingwX64()
linuxX64()
// linuxArm64()
linuxArm64()

// Deprecated
// watchosX86()
// iosArm32()
// mingwX86()
// linuxArm32Hfp()
// linuxMips32()
Expand Down Expand Up @@ -77,7 +77,7 @@ kotlin {
dependsOn commonMain
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-js'
implementation "co.touchlab:stately-concurrency:1.2.2"
implementation "co.touchlab:stately-concurrency:$stately_concurrency"
}
}

Expand All @@ -91,7 +91,7 @@ kotlin {
nativeMain {
dependsOn commonMain
dependencies {
implementation "co.touchlab:stately-concurrency:1.2.5"
implementation "co.touchlab:stately-concurrency:$stately_concurrency"
}
}

Expand All @@ -114,7 +114,7 @@ kotlin {
configure([
targets.macosX64,
targets.macosArm64,
// targets.watchosArm32,
targets.watchosArm32,
targets.watchosArm64,
// targets.watchosX86,
targets.watchosX64,
Expand All @@ -132,9 +132,10 @@ kotlin {
}
configure([
targets.linuxX64,
// targets.linuxArm64,
targets.linuxArm64,
targets.mingwX64,


// Deprecated
// targets.linuxArm32Hfp,
// targets.linuxMips32,
// targets.mingwX86
Expand Down

0 comments on commit 17c42ab

Please sign in to comment.