2020-09-15 12:57:41 +00:00
|
|
|
project.version = "$version"
|
|
|
|
project.group = "$group"
|
|
|
|
|
2020-09-27 14:25:42 +00:00
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
|
2020-09-15 12:57:41 +00:00
|
|
|
kotlin {
|
2021-11-09 08:03:51 +00:00
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-31 08:05:52 +00:00
|
|
|
js (IR) {
|
2020-10-16 11:59:51 +00:00
|
|
|
browser()
|
2020-09-15 12:57:41 +00:00
|
|
|
nodejs()
|
|
|
|
}
|
2020-11-10 09:43:15 +00:00
|
|
|
android {
|
2020-11-11 10:06:44 +00:00
|
|
|
publishAllLibraryVariants()
|
2020-11-10 09:43:15 +00:00
|
|
|
}
|
2020-09-15 12:57:41 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2022-03-10 11:04:05 +00:00
|
|
|
implementation libs.kt.serialization
|
2020-09-15 12:57:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
2020-11-10 09:43:15 +00:00
|
|
|
androidTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
2022-03-10 11:04:05 +00:00
|
|
|
implementation libs.android.test.junit
|
|
|
|
implementation libs.android.espresso
|
2020-11-10 09:43:15 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-15 12:57:41 +00:00
|
|
|
}
|
2020-10-12 16:54:05 +00:00
|
|
|
}
|
2020-11-10 09:43:15 +00:00
|
|
|
|
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|
2021-09-19 14:50:24 +00:00
|
|
|
|
|
|
|
java {
|
2021-11-09 08:03:51 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2021-09-19 14:50:24 +00:00
|
|
|
}
|