From 2f2ca97ec17c456d3b3f0d9192873caa92cc80f4 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 24 Apr 2023 21:03:01 -0400 Subject: [PATCH] Updating dependencies. --- app/build.gradle | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 5e5be2e08..534e0e3f2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -108,13 +108,13 @@ dependencies { implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version" - implementation "net.engawapg.lib:zoomable:1.4.0" + implementation 'net.engawapg.lib:zoomable:1.4.2' // Biometrics implementation "androidx.biometric:biometric-ktx:1.2.0-alpha05" // Bitcoin secp256k1 bindings to Android - implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.8.0' + implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.9.0' // Nostr Base Protocol implementation('com.github.vitorpamplona.NostrPostr:nostrpostrlib:master-SNAPSHOT') { @@ -127,7 +127,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11' // Json Serialization TODO: We might need to converge between gson and Jackson (we are usin both) - implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2' + implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.15.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' // link preview @@ -176,7 +176,7 @@ dependencies { debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10' testImplementation 'junit:junit:4.13.2' - testImplementation "io.mockk:mockk:1.13.4" + testImplementation 'io.mockk:mockk:1.13.5' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version" diff --git a/build.gradle b/build.gradle index 347dc9b4d..0c3fda9d7 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext { fragment_version = "1.5.6" lifecycle_version = '2.6.1' - compose_ui_version = '1.5.0-alpha02' + compose_ui_version = '1.5.0-alpha03' nav_version = "2.5.3" room_version = "2.4.3" accompanist_version = '0.30.0'