aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-01-23 02:45:48 -0600
committerIván Ávalos <avalos@disroot.org>2022-01-23 02:45:48 -0600
commit9cd2dd61c285d96199a892d6e1046f745d2aeec3 (patch)
tree83aded6642c1dead092fcff329f38dc984afbb70
parent827461fcd4b05c5b83b8d63cbfe72ec3f68addcc (diff)
downloadetbsa-trackermap-mobile-9cd2dd61c285d96199a892d6e1046f745d2aeec3.tar.gz
etbsa-trackermap-mobile-9cd2dd61c285d96199a892d6e1046f745d2aeec3.tar.bz2
etbsa-trackermap-mobile-9cd2dd61c285d96199a892d6e1046f745d2aeec3.zip
Fixed (again) Koin iOS dependency in sourceSet
-rw-r--r--shared/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts
index cdda835..0ecd643 100644
--- a/shared/build.gradle.kts
+++ b/shared/build.gradle.kts
@@ -26,6 +26,7 @@ kotlin {
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("io.ktor:ktor-client-logging:$ktor_version")
implementation("io.ktor:ktor-client-serialization:$ktor_version")
+ implementation("io.insert-koin:koin-core:3.1.4")
implementation("ch.qos.logback:logback-classic:1.2.6")
implementation("com.russhwolf:multiplatform-settings:$settings_version")
@@ -60,7 +61,6 @@ kotlin {
iosArm64Main.dependsOn(this)
//iosSimulatorArm64Main.dependsOn(this)
dependencies {
- implementation("io.insert-koin:koin-core:3.1.4")
implementation("io.ktor:ktor-client-ios:$ktor_version")
}
}