Dependency updates

This commit is contained in:
Vitor Pamplona 2023-03-30 16:53:13 -04:00
parent b4e39f2b73
commit a3e94dbaef
2 changed files with 10 additions and 9 deletions

View File

@ -110,7 +110,7 @@ dependencies {
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha05" implementation "androidx.biometric:biometric-ktx:1.2.0-alpha05"
// Bitcoin secp256k1 bindings to Android // Bitcoin secp256k1 bindings to Android
implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.7.1' implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.8.0'
// Nostr Base Protocol // Nostr Base Protocol
implementation('com.github.vitorpamplona.NostrPostr:nostrpostrlib:master-SNAPSHOT') { implementation('com.github.vitorpamplona.NostrPostr:nostrpostrlib:master-SNAPSHOT') {
@ -133,14 +133,14 @@ dependencies {
implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha05' implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha05'
// view videos // view videos
implementation 'com.google.android.exoplayer:exoplayer:2.18.4' implementation 'com.google.android.exoplayer:exoplayer:2.18.5'
// Load images from the web. // Load images from the web.
implementation "io.coil-kt:coil-compose:2.2.2" implementation "io.coil-kt:coil-compose:$coil_version"
// view gifs // view gifs
implementation "io.coil-kt:coil-gif:2.2.2" implementation "io.coil-kt:coil-gif:$coil_version"
// view svgs // view svgs
implementation("io.coil-kt:coil-svg:2.2.2") implementation "io.coil-kt:coil-svg:$coil_version"
// Rendering clickable text // Rendering clickable text
implementation "com.google.accompanist:accompanist-flowlayout:$accompanist_version" implementation "com.google.accompanist:accompanist-flowlayout:$accompanist_version"

View File

@ -1,11 +1,12 @@
buildscript { buildscript {
ext { ext {
fragment_version = "1.5.5" fragment_version = "1.5.6"
lifecycle_version = '2.6.0' lifecycle_version = '2.6.1'
compose_ui_version = '1.4.0-rc01' compose_ui_version = '1.5.0-alpha01'
nav_version = "2.5.3" nav_version = "2.5.3"
room_version = "2.4.3" room_version = "2.4.3"
accompanist_version = "0.28.0" accompanist_version = '0.30.0'
coil_version = '2.3.0'
} }
}// Top-level build file where you can add configuration options common to all sub-projects/modules. }// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins { plugins {