2020-04-10 07:12:55 +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"
|
2020-04-10 07:12:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 12:40:45 +00:00
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
2019-11-10 18:07:54 +00:00
|
|
|
|
2020-08-10 11:27:16 +00:00
|
|
|
kotlin {
|
2020-07-27 06:35:59 +00:00
|
|
|
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.common
|
2021-11-24 07:52:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2022-03-02 08:36:17 +00:00
|
|
|
api libs.microutils.repos.exposed
|
2020-07-27 06:35:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 18:07:54 +00:00
|
|
|
}
|