This commit is contained in:
2020-12-02 21:50:52 +06:00
parent a75b97efa6
commit 79ba472b64
18 changed files with 580 additions and 0 deletions

26
mppAndroidProject Normal file
View File

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