2020-09-09 18:04:25 +00:00
|
|
|
plugins {
|
2020-11-25 12:40:45 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
id "com.android.library"
|
2022-03-13 15:58:10 +00:00
|
|
|
alias(libs.plugins.compose)
|
2020-09-09 18:04:25 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 12:40:45 +00:00
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
2020-09-09 18:04:25 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2021-11-24 07:52:27 +00:00
|
|
|
api project(":postssystem.features.common.common")
|
2022-03-02 08:36:17 +00:00
|
|
|
api libs.microutils.repos.ktor.client
|
2021-11-24 07:52:27 +00:00
|
|
|
api "io.ktor:ktor-client-auth:$ktor_version"
|
|
|
|
api "io.ktor:ktor-client-logging:$ktor_version"
|
2022-03-13 15:58:10 +00:00
|
|
|
|
|
|
|
api compose.runtime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
api compose.web.core
|
|
|
|
api libs.jsuikit
|
2020-09-09 18:04:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|