temporal version

This commit is contained in:
2020-11-09 22:49:06 +06:00
parent d9464f7b90
commit c73cb14615
5 changed files with 60 additions and 0 deletions

27
mppAndroidProject Normal file
View File

@@ -0,0 +1,27 @@
project.version = "$version"
project.group = "$group"
apply from: "$publishGradlePath"
kotlin {
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}