update gradle scripts to improve performance of configuration

This commit is contained in:
2024-08-27 18:57:59 +06:00
parent 1ee9c88ffd
commit 4601eab864
71 changed files with 95 additions and 260 deletions

View File

@@ -0,0 +1,37 @@
project.version = "$version"
project.group = "$group"
apply from: "$publish"
kotlin {
androidTarget {
publishAllLibraryVariants()
compilations.all {
kotlinOptions {
jvmTarget = "17"
}
}
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
implementation libs.kt.coroutines.test
}
}
}
}
apply from: "$defaultAndroidSettings"
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}