continue to adding workaround

This commit is contained in:
2022-03-11 20:37:40 +06:00
parent a06324568e
commit f683809f29
15 changed files with 161 additions and 12 deletions
features/common/server/src/jvmMain/kotlin/dev/inmo/postssystem/features/common/server/sessions
server
build.gradle
src
main
java
dev
inmo
postssystem
test.config.json
settings.gradle
targets/telegram/loader
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
loader
client
main
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
loader
common
main
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem

@ -0,0 +1,17 @@
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.common.common")
}
}
}
}

@ -0,0 +1 @@
<manifest package="dev.inmo.postssystem.targets.telegram.loader.common"/>