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.kts21
1 files changed, 0 insertions, 21 deletions
diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts
index 0ecd643..2488cde 100644
--- a/shared/build.gradle.kts
+++ b/shared/build.gradle.kts
@@ -35,23 +35,11 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
}
}
- val commonTest by getting {
- dependencies {
- implementation(kotlin("test-common"))
- implementation(kotlin("test-annotations-common"))
- }
- }
val androidMain by getting {
dependencies {
implementation("io.ktor:ktor-client-cio:$ktor_version")
}
}
- val androidTest by getting {
- dependencies {
- implementation(kotlin("test-junit"))
- implementation("junit:junit:4.13.2")
- }
- }
val iosX64Main by getting
val iosArm64Main by getting
//val iosSimulatorArm64Main by getting
@@ -64,15 +52,6 @@ kotlin {
implementation("io.ktor:ktor-client-ios:$ktor_version")
}
}
- val iosX64Test by getting
- val iosArm64Test by getting
- //val iosSimulatorArm64Test by getting
- val iosTest by creating {
- dependsOn(commonTest)
- iosX64Test.dependsOn(this)
- iosArm64Test.dependsOn(this)
- //iosSimulatorArm64Test.dependsOn(this)
- }
}
}