rename template files

This commit is contained in:
2021-04-20 18:36:53 +06:00
parent a2b87e63c9
commit a5ae5e6c2b
5 changed files with 4 additions and 4 deletions

26
mppAndroidProject.gradle 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"