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 /cashier | |
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 'cashier')
-rw-r--r-- | cashier/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cashier/build.gradle b/cashier/build.gradle index 337a427..5d2bc10 100644 --- a/cashier/build.gradle +++ b/cashier/build.gradle @@ -22,14 +22,14 @@ plugins { } android { - compileSdkVersion 29 + compileSdkVersion 30 //noinspection GradleDependency buildToolsVersion "$build_tools_version" defaultConfig { applicationId "net.taler.cashier" minSdkVersion 23 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 1 versionName "0.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -70,7 +70,7 @@ android { dependencies { implementation project(":taler-kotlin-android") implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version" - implementation 'androidx.security:security-crypto:1.0.0-rc03' // requires minSdk 23 + implementation 'androidx.security:security-crypto:1.0.0-rc04' // requires minSdk 23 implementation "com.google.android.material:material:$material_version" implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" @@ -80,7 +80,7 @@ dependencies { implementation "io.ktor:ktor-client-okhttp:$ktor_version" implementation "io.ktor:ktor-client-serialization-jvm:$ktor_version" - testImplementation 'junit:junit:4.13' + testImplementation "junit:junit:$junit_version" androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' |