add post preview

This commit is contained in:
2021-12-05 19:00:38 +06:00
parent 61496069b7
commit 571f5781d2
11 changed files with 132 additions and 12 deletions
features
common
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
features
posts
client
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
features
posts
common
main
server
mppJavaProject.gradlemppProjectWithSerialization.gradlesettings.gradle

@ -0,0 +1,18 @@
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(":postssystem.features.posts.common")
api project(":postssystem.features.common.client")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.features.posts.client"/>