core/features/content/binary/client/build.gradle

23 lines
628 B
Groovy
Raw Normal View History

2021-11-27 17:02:14 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
alias(libs.plugins.compose)
2024-08-26 17:58:53 +00:00
alias(libs.plugins.kt.jb.compose)
2021-11-27 17:02:14 +00:00
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.features.content.binary.common")
api project(":postssystem.features.common.client")
api project(":postssystem.features.content.client")
api libs.microutils.common.compose
2021-11-27 17:02:14 +00:00
}
}
}
}