feat: Add ZXing dependency for QR code scanning

This commit is contained in:
yet300
2025-12-30 15:11:41 +04:00
parent 069dcc0f10
commit 009677243a
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -91,6 +91,9 @@ dependencies {
// Permissions
implementation(libs.accompanist.permissions)
// QR
implementation(libs.zxing.embedded)
// Cryptography
implementation(libs.bundles.cryptography)
+6
View File
@@ -45,6 +45,9 @@ gms-location = "21.3.0"
# Security
security-crypto = "1.1.0-beta01"
# QR
zxing-embedded = "4.3.0"
# Testing
junit = "4.13.2"
androidx-test-ext = "1.2.1"
@@ -104,6 +107,9 @@ gms-location = { module = "com.google.android.gms:play-services-location", versi
# Security
androidx-security-crypto = { module = "androidx.security:security-crypto", version.ref = "security-crypto" }
# QR
zxing-embedded = { module = "com.journeyapps:zxing-android-embedded", version.ref = "zxing-embedded" }
# Testing
junit = { module = "junit:junit", version.ref = "junit" }
androidx-test-ext-junit = { module = "androidx.test.ext:junit", version.ref = "androidx-test-ext" }