MicroUtils/mppAndroidProject.gradle

32 lines
649 B
Groovy
Raw Permalink Normal View History

2020-11-09 22:49:06 +06:00
project.version = "$version"
project.group = "$group"
apply from: "$publishGradlePath"
kotlin {
2020-11-11 16:06:44 +06:00
android {
publishAllLibraryVariants()
}
2020-11-09 22:49:06 +06:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
2020-11-10 14:32:50 +06:00
}
}
2020-11-09 22:49:06 +06:00
2020-11-10 15:43:15 +06:00
apply from: "$defaultAndroidSettingsPresetPath"
java {
2021-11-09 14:03:51 +06:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}