fix(deps): update camera to v1.6.0 (#6514)

* fix(deps): update camera to v1.6.0

* Add dependency to com.google.guava:guava to fix compilation issue.

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Benoit Marty <benoit@matrix.org>
This commit is contained in:
renovate[bot] 2026-04-23 09:48:15 +02:00 committed by GitHub
parent 2c6f1888f4
commit 9dd61bbd37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -18,7 +18,7 @@ constraintlayout_compose = "1.1.1"
lifecycle = "2.10.0"
activity = "1.13.0"
media3 = "1.10.0"
camera = "1.5.3"
camera = "1.6.0"
work = "2.11.2"
# Compose
@ -214,6 +214,7 @@ maplibre_annotation = "org.maplibre.gl:android-plugin-annotation-v9:3.0.2"
opusencoder = "io.element.android:opusencoder:1.2.0"
zxing_cpp = "io.github.zxing-cpp:android:3.0.2"
google_zxing = "com.google.zxing:core:3.5.4"
google_guava = "com.google.guava:guava:33.5.0-android"
haze = { module = "dev.chrisbanes.haze:haze", version.ref = "haze" }
haze_materials = { module = "dev.chrisbanes.haze:haze-materials", version.ref = "haze" }

View file

@ -20,4 +20,5 @@ dependencies {
implementation(libs.androidx.camera.camera2)
implementation(libs.zxing.cpp)
implementation(libs.google.zxing)
implementation(libs.google.guava)
}