core/features/template/client/build.gradle

19 lines
433 B
Groovy
Raw Normal View History

2020-08-13 06:47:40 +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-08-13 06:47:40 +00:00
}
2020-11-25 12:40:45 +00:00
apply from: "$mppProjectWithSerializationPresetPath"
2020-08-13 06:47:40 +00:00
kotlin {
sourceSets {
commonMain {
dependencies {
2021-11-24 07:52:27 +00:00
api project(":postssystem.features.template.common")
api project(":postssystem.features.common.client")
2020-08-13 06:47:40 +00:00
}
}
}
}