add template for startup and readme

This commit is contained in:
2022-12-19 17:51:05 +06:00
parent 96fdff6ffd
commit 204955bcce
19 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":${rootProject.name}.module_name.common")
}
}
}
}