aboutsummaryrefslogtreecommitdiff
path: root/shared/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/build.gradle.kts')
-rw-r--r--shared/build.gradle.kts11
1 files changed, 9 insertions, 2 deletions
diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts
index 8832b1d..61c42f3 100644
--- a/shared/build.gradle.kts
+++ b/shared/build.gradle.kts
@@ -24,7 +24,6 @@ kotlin {
val commonMain by getting {
dependencies {
implementation("io.ktor:ktor-client-core:$ktor_version")
- implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-logging:$ktor_version")
implementation("io.ktor:ktor-client-serialization:$ktor_version")
implementation("ch.qos.logback:logback-classic:1.2.6")
@@ -41,7 +40,11 @@ kotlin {
implementation(kotlin("test-annotations-common"))
}
}
- val androidMain by getting
+ val androidMain by getting {
+ dependencies {
+ implementation("io.ktor:ktor-client-cio:$ktor_version")
+ }
+ }
val androidTest by getting {
dependencies {
implementation(kotlin("test-junit"))
@@ -56,6 +59,10 @@ kotlin {
iosX64Main.dependsOn(this)
iosArm64Main.dependsOn(this)
//iosSimulatorArm64Main.dependsOn(this)
+ dependencies {
+ implementation("io.insert-koin:koin-ios:3.1.4")
+ implementation("io.ktor:ktor-client-ios:$ktor_version")
+ }
}
val iosX64Test by getting
val iosArm64Test by getting