From c59243c9bdabf07137ad0f070b6ecbde57e66466 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Tue, 1 Sep 2020 09:54:21 -0300 Subject: [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... --- wallet/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wallet/build.gradle') 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" -- cgit v1.2.3