From 1a67d7a3d9bd54cb0e32e3b06eeb6fa0f7c99021 Mon Sep 17 00:00:00 2001 From: Kazik Pogoda Date: Mon, 30 Sep 2024 20:38:28 +0200 Subject: [PATCH] native dependency on ktor-client-curl fixed to implementation instead of runtimeOnly, otherwise client engine cannot be discovered. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1eb819c..7a47bed 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -78,7 +78,7 @@ kotlin { nativeTest { dependencies { // on mac/ios it should be rather Darwin - runtimeOnly(libs.ktor.client.curl) + implementation(libs.ktor.client.curl) } }