From b9d7d6edb7cc12e5238168c4446a28c0ae98c729 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Wed, 22 Jul 2020 16:47:05 -0300 Subject: [common] also support multi-platform serialization/deserialization --- merchant-lib/build.gradle | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'merchant-lib') diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle index 08da35d..93e2d4d 100644 --- a/merchant-lib/build.gradle +++ b/merchant-lib/build.gradle @@ -15,13 +15,12 @@ */ plugins { - id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlin_version" + id 'com.android.library' + id 'kotlin-android' + id 'kotlin-android-extensions' + id 'kotlinx-serialization' } -apply plugin: 'com.android.library' -apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' - android { compileSdkVersion 29 //noinspection GradleDependency @@ -46,6 +45,8 @@ android { } dependencies { + implementation project(":taler-kotlin-common") + implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" def ktor_version = "1.3.2" @@ -54,5 +55,6 @@ dependencies { implementation "io.ktor:ktor-client-serialization-jvm:$ktor_version" testImplementation 'junit:junit:4.13' - testApi "io.ktor:ktor-client-mock-jvm:$ktor_version" + testImplementation "io.ktor:ktor-client-mock-jvm:$ktor_version" + testImplementation "io.ktor:ktor-client-logging-jvm:$ktor_version" } -- cgit v1.2.3