mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-04 23:33:46 +00:00
22 lines
416 B
Groovy
22 lines
416 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
id "com.android.library"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppProjectWithSerializationPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api project(":plaguposter.posts")
|
||
|
}
|
||
|
}
|
||
|
jvmMain {
|
||
|
dependencies {
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|