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.kts8
1 files changed, 7 insertions, 1 deletions
diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts
index 72a5a1c..49f718d 100644
--- a/shared/build.gradle.kts
+++ b/shared/build.gradle.kts
@@ -17,7 +17,13 @@ kotlin {
}
sourceSets {
- val commonMain by getting
+ val commonMain by getting {
+ dependencies {
+ implementation("io.ktor:ktor-client-core:1.6.6")
+ implementation("io.ktor:ktor-client-cio:1.6.6")
+ implementation("io.ktor:ktor-client-serialization:1.6.6")
+ }
+ }
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))