taler-android

Android apps for GNU Taler (wallet, PoS, cashier)
Log | Files | Refs | README | LICENSE

commit 14cd3ad23f6e7008fae506df1e8894c977f61516
parent 3c2bf6e27d41430718b43ec09e6b1d9d020c5478
Author: Torsten Grote <t@grobox.de>
Date:   Tue, 11 Apr 2023 17:24:52 -0300

[pos] Target SDK 33 and update libraries

Diffstat:
Mmerchant-lib/build.gradle | 3+--
Mmerchant-terminal/build.gradle | 6+++---
2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle @@ -21,13 +21,12 @@ plugins { } android { - compileSdkVersion 32 + compileSdkVersion 33 //noinspection GradleDependency buildToolsVersion "$build_tools_version" defaultConfig { minSdkVersion 21 - targetSdkVersion 32 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" diff --git a/merchant-terminal/build.gradle b/merchant-terminal/build.gradle @@ -14,7 +14,7 @@ android { defaultConfig { applicationId "net.taler.merchantpos" minSdkVersion 21 - targetSdkVersion 32 + targetSdkVersion 33 versionCode 5 versionName "0.2.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -67,7 +67,7 @@ dependencies { implementation "com.google.android.material:material:$material_version" implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version" - implementation "androidx.recyclerview:recyclerview:1.2.1" + implementation "androidx.recyclerview:recyclerview:1.3.0" implementation "androidx.recyclerview:recyclerview-selection:1.1.0" // Navigation @@ -77,5 +77,5 @@ dependencies { implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" testImplementation 'androidx.test.ext:junit:1.1.5' - testImplementation 'org.robolectric:robolectric:4.8.1' + testImplementation 'org.robolectric:robolectric:4.8.2' }