core/mppAndroidProject.gradle

38 lines
820 B
Groovy
Raw Normal View History

2021-11-24 07:52:27 +00:00
project.version = "$version"
2020-11-25 12:40:45 +00:00
project.group = "$group"
2024-02-16 07:40:47 +00:00
apply from: "$publishGradlePath"
2020-11-25 12:40:45 +00:00
kotlin {
2024-02-16 07:40:47 +00:00
androidTarget {
2020-11-25 12:40:45 +00:00
publishAllLibraryVariants()
2024-02-16 07:40:47 +00:00
compilations.all {
kotlinOptions {
jvmTarget = "17"
}
}
2020-11-25 12:40:45 +00:00
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
2024-02-16 07:40:47 +00:00
implementation libs.kt.coroutines.test
2022-03-02 08:36:17 +00:00
}
}
2020-11-25 12:40:45 +00:00
}
}
apply from: "$defaultAndroidSettingsPresetPath"
2024-02-16 07:40:47 +00:00
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}