diff options
author | Torsten Grote <t@grobox.de> | 2020-09-01 09:54:21 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-09-01 09:54:21 -0300 |
commit | c59243c9bdabf07137ad0f070b6ecbde57e66466 (patch) | |
tree | 1599b6f112f6a96dc274bda816edf85eabf8facf /merchant-terminal | |
parent | a0b0ee2b13b72d1ec6a489150c717c8bfa863158 (diff) | |
download | taler-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 'merchant-terminal')
-rw-r--r-- | merchant-terminal/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/merchant-terminal/build.gradle b/merchant-terminal/build.gradle index 1bdc138..8c94fa1 100644 --- a/merchant-terminal/build.gradle +++ b/merchant-terminal/build.gradle @@ -59,8 +59,8 @@ android { dependencies { implementation project(":merchant-lib") - implementation 'com.google.android.material:material:1.1.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + implementation "com.google.android.material:material:$material_version" + implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version" implementation "androidx.recyclerview:recyclerview:1.1.0" implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc01" @@ -70,6 +70,6 @@ dependencies { implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" - testImplementation 'androidx.test.ext:junit:1.1.1' + testImplementation 'androidx.test.ext:junit:1.1.2' testImplementation 'org.robolectric:robolectric:4.3.1' } |