diff options
author | Torsten Grote <t@grobox.de> | 2021-02-04 11:48:41 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2021-02-04 11:48:41 -0300 |
commit | 6c9ea7b8773a3ad81e36d3ca014cc5579ae89a42 (patch) | |
tree | 4efccb93be789fb6f8e413e2a01512354e4ded90 /merchant-lib | |
parent | 915e5e27932a574b0b06c0ca4c20e278dfea8926 (diff) | |
download | taler-android-6c9ea7b8773a3ad81e36d3ca014cc5579ae89a42.tar.gz taler-android-6c9ea7b8773a3ad81e36d3ca014cc5579ae89a42.tar.bz2 taler-android-6c9ea7b8773a3ad81e36d3ca014cc5579ae89a42.zip |
Upgrade non-Taler libraries
Diffstat (limited to 'merchant-lib')
-rw-r--r-- | merchant-lib/build.gradle | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle index 87bafd3..a173cce 100644 --- a/merchant-lib/build.gradle +++ b/merchant-lib/build.gradle @@ -17,18 +17,17 @@ plugins { id 'com.android.library' id 'kotlin-android' - id 'kotlin-android-extensions' id 'kotlinx-serialization' } android { - compileSdkVersion 29 + compileSdkVersion 30 //noinspection GradleDependency buildToolsVersion "$build_tools_version" defaultConfig { minSdkVersion 21 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 1 versionName "0.1" @@ -55,7 +54,7 @@ dependencies { api "io.ktor:ktor-client-okhttp:$ktor_version" api "io.ktor:ktor-client-serialization-jvm:$ktor_version" - testImplementation 'junit:junit:4.13' + testImplementation 'junit:junit:4.13.1' testImplementation "io.ktor:ktor-client-mock-jvm:$ktor_version" testImplementation "io.ktor:ktor-client-logging-jvm:$ktor_version" testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9' |