2023-07-23 11:41:01 +02:00
|
|
|
plugins {
|
2024-12-08 10:25:00 +01:00
|
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
2024-12-08 17:23:13 +01:00
|
|
|
id("com.livefast.eattrash.serialization")
|
2023-07-23 11:41:01 +02:00
|
|
|
alias(libs.plugins.ktorfit)
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2024-12-22 15:12:42 +01:00
|
|
|
implementation(libs.kodein)
|
2023-07-23 11:41:01 +02:00
|
|
|
implementation(libs.ktor.contentnegotiation)
|
|
|
|
implementation(libs.ktor.json)
|
2023-07-25 20:54:43 +02:00
|
|
|
implementation(libs.ktor.logging)
|
2025-01-10 23:20:23 +01:00
|
|
|
implementation(libs.ktor.serialization)
|
|
|
|
implementation(libs.ktorfit.converters.response)
|
|
|
|
implementation(libs.ktorfit.lib)
|
2024-12-06 12:46:51 +01:00
|
|
|
|
2023-12-20 00:45:20 +01:00
|
|
|
implementation(projects.core.utils)
|
2023-07-23 11:41:01 +02:00
|
|
|
}
|
|
|
|
}
|
2024-12-06 12:46:51 +01:00
|
|
|
}
|
2024-08-28 12:00:52 +02:00
|
|
|
}
|