summaryrefslogtreecommitdiff
path: root/taler-kotlin-android/build.gradle
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-05-16 17:06:32 +0200
committerFlorian Dold <florian@dold.me>2022-05-16 17:06:32 +0200
commit29e19d02b7befa0c8e18b9c73ac912bb256aa7ee (patch)
tree396799398840c1dd63cae1a0319d7b920a633717 /taler-kotlin-android/build.gradle
parente6e58ecebe107deeb4a050652fc53c899beab3a6 (diff)
downloadtaler-android-29e19d02b7befa0c8e18b9c73ac912bb256aa7ee.tar.gz
taler-android-29e19d02b7befa0c8e18b9c73ac912bb256aa7ee.tar.bz2
taler-android-29e19d02b7befa0c8e18b9c73ac912bb256aa7ee.zip
-update dependencies
Diffstat (limited to 'taler-kotlin-android/build.gradle')
-rw-r--r--taler-kotlin-android/build.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/taler-kotlin-android/build.gradle b/taler-kotlin-android/build.gradle
index e45a3a1..e47efe9 100644
--- a/taler-kotlin-android/build.gradle
+++ b/taler-kotlin-android/build.gradle
@@ -21,13 +21,13 @@ plugins {
}
android {
- compileSdkVersion 31
+ compileSdkVersion 32
//noinspection GradleDependency
buildToolsVersion "$build_tools_version"
defaultConfig {
minSdkVersion 21
- targetSdkVersion 30
+ targetSdkVersion 32
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
@@ -60,8 +60,8 @@ android {
dependencies {
api project(":multiplatform:common")
- implementation 'androidx.appcompat:appcompat:1.3.1'
- implementation 'androidx.core:core-ktx:1.6.0'
+ implementation 'androidx.appcompat:appcompat:1.4.1'
+ implementation 'androidx.core:core-ktx:1.7.0'
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
// Navigation
@@ -72,20 +72,20 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
// QR codes
- implementation 'com.google.zxing:core:3.4.0' // needs minSdkVersion 24+ or desugar
+ implementation 'com.google.zxing:core:3.5.0' // needs minSdkVersion 24+ or desugar
// Logcat viewer
- implementation('com.github.pedrovgs:lynx:1.1.0') {
+ implementation('com.github.pedrovgs:lynx:1.6') {
exclude group: 'com.android.support'
exclude group: 'com.squareup'
}
- implementation 'com.github.pedrovgs:renderers:4.0.0'
+ implementation 'com.github.pedrovgs:renderers:4.1.0'
// JSON parsing and serialization
- api "org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2"
+ api 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3'
lintPublish 'com.github.thirdegg:lint-rules:0.0.6-beta'
testImplementation "junit:junit:$junit_version"
- testImplementation 'org.json:json:20200518'
+ testImplementation 'org.json:json:20220320'
}