From d81f0a3fd6f153317ba429bf77a77b584530a7c6 Mon Sep 17 00:00:00 2001 From: Arnaud Giuliani Date: Wed, 8 Nov 2023 15:58:31 +0100 Subject: [PATCH] add linuxArm64 target + update stately-concurrency 2.0.5 + Fix #1590 --- core/gradle/versions.gradle | 2 ++ core/koin-core/build.gradle | 21 +++++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/core/gradle/versions.gradle b/core/gradle/versions.gradle index 40e8d5cc5..8642fa941 100644 --- a/core/gradle/versions.gradle +++ b/core/gradle/versions.gradle @@ -8,6 +8,8 @@ ext { coroutines_version = "1.7.3" + stately_concurrency = "2.0.5" + // Dokka dokka_version = '1.8.10' diff --git a/core/koin-core/build.gradle b/core/koin-core/build.gradle index 6f95aa1db..b2a6619e4 100644 --- a/core/koin-core/build.gradle +++ b/core/koin-core/build.gradle @@ -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() @@ -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" } } @@ -91,7 +91,7 @@ kotlin { nativeMain { dependsOn commonMain dependencies { - implementation "co.touchlab:stately-concurrency:1.2.5" + implementation "co.touchlab:stately-concurrency:$stately_concurrency" } } @@ -114,7 +114,7 @@ kotlin { configure([ targets.macosX64, targets.macosArm64, -// targets.watchosArm32, + targets.watchosArm32, targets.watchosArm64, // targets.watchosX86, targets.watchosX64, @@ -132,9 +132,10 @@ kotlin { } configure([ targets.linuxX64, -// targets.linuxArm64, + targets.linuxArm64, targets.mingwX64, - + + // Deprecated // targets.linuxArm32Hfp, // targets.linuxMips32, // targets.mingwX86