diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-01-23 02:45:48 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-01-23 02:45:48 -0600 |
commit | 9cd2dd61c285d96199a892d6e1046f745d2aeec3 (patch) | |
tree | 83aded6642c1dead092fcff329f38dc984afbb70 | |
parent | 827461fcd4b05c5b83b8d63cbfe72ec3f68addcc (diff) | |
download | etbsa-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.kts | 2 |
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") } } |