summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2023-04-11 17:24:52 -0300
committerTorsten Grote <t@grobox.de>2023-04-11 17:24:52 -0300
commit14cd3ad23f6e7008fae506df1e8894c977f61516 (patch)
treef1b97f1d9faeda099ee7b2703f18a760fbeb89eb
parent3c2bf6e27d41430718b43ec09e6b1d9d020c5478 (diff)
downloadtaler-android-14cd3ad23f6e7008fae506df1e8894c977f61516.tar.gz
taler-android-14cd3ad23f6e7008fae506df1e8894c977f61516.tar.bz2
taler-android-14cd3ad23f6e7008fae506df1e8894c977f61516.zip
[pos] Target SDK 33 and update libraries
-rw-r--r--merchant-lib/build.gradle3
-rw-r--r--merchant-terminal/build.gradle6
2 files changed, 4 insertions, 5 deletions
diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle
index 50c2aa5..2892cd6 100644
--- 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
index 8b7ccf9..2ec9c4e 100644
--- 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'
}