summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-09-01 09:54:21 -0300
committerTorsten Grote <t@grobox.de>2020-09-01 09:54:21 -0300
commitc59243c9bdabf07137ad0f070b6ecbde57e66466 (patch)
tree1599b6f112f6a96dc274bda816edf85eabf8facf /wallet/build.gradle
parenta0b0ee2b13b72d1ec6a489150c717c8bfa863158 (diff)
downloadtaler-android-c59243c9bdabf07137ad0f070b6ecbde57e66466.tar.gz
taler-android-c59243c9bdabf07137ad0f070b6ecbde57e66466.tar.bz2
taler-android-c59243c9bdabf07137ad0f070b6ecbde57e66466.zip
[wallet] don't crash on serialization errors from wallet-core
This should not be necessary if we had a stable API with documentated and versioned changes, but well...
Diffstat (limited to 'wallet/build.gradle')
-rw-r--r--wallet/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index 70b9648..5d02bca 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -105,8 +105,8 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation 'androidx.preference:preference:1.1.1'
- implementation 'com.google.android.material:material:1.2.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
+ implementation "com.google.android.material:material:$material_version"
+ implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
// Lists and Selection
implementation "androidx.recyclerview:recyclerview:1.1.0"
@@ -133,8 +133,8 @@ dependencies {
testImplementation 'junit:junit:4.13'
testImplementation 'org.json:json:20200518'
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
+ androidTestImplementation 'androidx.test:runner:1.3.0'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
def walletLibraryDir = "src/main/assets"