Removed serialization dependencies

This commit is contained in:
dankito 2020-07-05 11:30:14 +02:00
parent 03b85181e4
commit d97375d949
2 changed files with 0 additions and 9 deletions

View File

@ -10,8 +10,6 @@ ext {
kotlinVersion = '1.3.72' kotlinVersion = '1.3.72'
kotlinCoroutinesVersion = "1.3.7" kotlinCoroutinesVersion = "1.3.7"
serializationVersion = "0.20.0"
ktorVersion = "1.3.2" ktorVersion = "1.3.2"

View File

@ -7,7 +7,6 @@ buildscript {
plugins { plugins {
id "org.jetbrains.kotlin.multiplatform" id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library" id "com.android.library"
id "maven-publish" id "maven-publish"
} }
@ -60,11 +59,7 @@ kotlin {
implementation kotlin("stdlib-common") implementation kotlin("stdlib-common")
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$kotlinCoroutinesVersion" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$kotlinCoroutinesVersion"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serializationVersion"
implementation "io.ktor:ktor-client-core:$ktorVersion" implementation "io.ktor:ktor-client-core:$ktorVersion"
//
// implementation("io.ktor:ktor-client-serialization:$ktor_version")
api "com.soywiz.korlibs.klock:klock:$klockVersion" api "com.soywiz.korlibs.klock:klock:$klockVersion"
@ -87,8 +82,6 @@ kotlin {
// implementation "io.ktor:ktor-client-cio:$ktorVersion" // implementation "io.ktor:ktor-client-cio:$ktorVersion"
implementation "io.ktor:ktor-client-okhttp:$ktorVersion" implementation "io.ktor:ktor-client-okhttp:$ktorVersion"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$serializationVersion"
api "com.soywiz.korlibs.klock:klock-jvm:$klockVersion" api "com.soywiz.korlibs.klock:klock-jvm:$klockVersion"
implementation "org.slf4j:slf4j-api:$slf4jVersion" implementation "org.slf4j:slf4j-api:$slf4jVersion"