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 {
|
|
|
|
jvm()
|
|
|
|
js (BOTH) {
|
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')
|
2020-09-26 15:23:53 +00:00
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
|
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')
|
|
|
|
implementation "androidx.test.ext:junit:$test_ext_junit_version"
|
|
|
|
implementation "androidx.test.espresso:espresso-core:$espresso_core"
|
|
|
|
}
|
|
|
|
}
|
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"
|