From 90b52232aba163445380e53fad89c1dbb7bb15d1 Mon Sep 17 00:00:00 2001 From: aminecmi Date: Mon, 26 Sep 2022 15:54:11 +0200 Subject: [PATCH] Updating ktor and changing the engine. This speeds things a little bit too. --- shared/build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 0a348ad..6240aee 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -28,12 +28,12 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("io.ktor:ktor-client-core:2.0.1") - implementation("io.ktor:ktor-client-content-negotiation:2.0.1") - implementation("io.ktor:ktor-serialization-kotlinx-json:2.0.1") - implementation("io.ktor:ktor-client-logging:2.0.1") + implementation("io.ktor:ktor-client-core:2.1.1") + implementation("io.ktor:ktor-client-content-negotiation:2.1.1") + implementation("io.ktor:ktor-serialization-kotlinx-json:2.1.1") + implementation("io.ktor:ktor-client-logging:2.1.1") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0") - implementation("io.ktor:ktor-client-auth:2.0.1") + implementation("io.ktor:ktor-client-auth:2.1.1") implementation("org.jsoup:jsoup:1.14.3") //Dependency Injection @@ -60,7 +60,7 @@ kotlin { } val androidMain by getting { dependencies { - implementation("io.ktor:ktor-client-android:2.0.1") + implementation("io.ktor:ktor-client-okhttp:2.1.1") // Sql implementation(SqlDelight.android) @@ -94,7 +94,7 @@ kotlin { iosX64Test.dependsOn(this) iosArm64Test.dependsOn(this) dependencies { - implementation("io.ktor:ktor-client-ios:2.0.1") + implementation("io.ktor:ktor-client-ios:2.1.1") } //iosSimulatorArm64Test.dependsOn(this) }