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 /wallet | |
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 'wallet')
-rw-r--r-- | wallet/build.gradle | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle index 9f5d018..abfdc07 100644 --- a/wallet/build.gradle +++ b/wallet/build.gradle @@ -39,14 +39,14 @@ def gitCommit = { -> } android { - compileSdkVersion 29 + compileSdkVersion 30 //noinspection GradleDependency buildToolsVersion "$build_tools_version" defaultConfig { applicationId "net.taler.wallet" minSdkVersion 21 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 8 versionName "v0.8.0-rc.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -115,13 +115,13 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" - implementation 'androidx.preference:preference:1.1.1' + implementation 'androidx.preference:preference-ktx:1.1.1' implementation "com.google.android.material:material:$material_version" implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version" // Lists and Selection implementation "androidx.recyclerview:recyclerview:1.1.0" - implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc03" + implementation "androidx.recyclerview:recyclerview-selection:1.1.0" // Navigation Library implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" @@ -133,7 +133,7 @@ dependencies { // QR codes implementation 'com.journeyapps:zxing-android-embedded:4.0.2@aar' // needed to support zxing library in taler-kotlin-android on API < 24 - coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10' + coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1' // Nicer ProgressBar implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1' @@ -144,7 +144,7 @@ dependencies { implementation "io.noties.markwon:ext-tables:$markwon_version" implementation "io.noties.markwon:recycler:$markwon_version" - testImplementation 'junit:junit:4.13' + testImplementation "junit:junit:$junit_version" testImplementation 'org.json:json:20200518' androidTestImplementation 'androidx.test:runner:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' |