From c54edcadcc413eddd8f0d3cccbd953aa595db118 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 04:10:49 +0000 Subject: [PATCH] Bump the android-minor-patch group across 1 directory with 7 updates Bumps the android-minor-patch group with 5 updates in the /android directory: | Package | From | To | | --- | --- | --- | | [net.java.dev.jna:jna](https://github.com/java-native-access/jna) | `5.18.1` | `5.19.1` | | androidx.lifecycle:lifecycle-runtime-compose | `2.10.0` | `2.11.0` | | [com.google.dagger:hilt-android](https://github.com/google/dagger) | `2.53.1` | `2.60.1` | | androidx.hilt:hilt-navigation-compose | `1.3.0` | `1.4.0` | | androidx.core:core-ktx | `1.18.0` | `1.19.0` | Updates `net.java.dev.jna:jna` from 5.18.1 to 5.19.1 - [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md) - [Commits](https://github.com/java-native-access/jna/compare/5.18.1...5.19.1) Updates `androidx.lifecycle:lifecycle-runtime-compose` from 2.10.0 to 2.11.0 Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.10.0 to 2.11.0 Updates `com.google.dagger:hilt-android` from 2.53.1 to 2.60.1 - [Release notes](https://github.com/google/dagger/releases) - [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/dagger/compare/dagger-2.53.1...dagger-2.60.1) Updates `com.google.dagger:hilt-android-compiler` from 2.53.1 to 2.60.1 - [Release notes](https://github.com/google/dagger/releases) - [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/dagger/compare/dagger-2.53.1...dagger-2.60.1) Updates `androidx.hilt:hilt-navigation-compose` from 1.3.0 to 1.4.0 Updates `androidx.core:core-ktx` from 1.18.0 to 1.19.0 --- updated-dependencies: - dependency-name: net.java.dev.jna:jna dependency-version: 5.19.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: androidx.lifecycle:lifecycle-runtime-compose dependency-version: 2.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: androidx.lifecycle:lifecycle-viewmodel-compose dependency-version: 2.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: com.google.dagger:hilt-android dependency-version: 2.60.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: com.google.dagger:hilt-android-compiler dependency-version: 2.60.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: androidx.hilt:hilt-navigation-compose dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch - dependency-name: androidx.core:core-ktx dependency-version: 1.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-minor-patch ... Signed-off-by: dependabot[bot] --- android/app/build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 628468c..354b15d 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -79,7 +79,7 @@ android { dependencies { // JNA - required by UniFFI-generated Kotlin bindings - implementation("net.java.dev.jna:jna:5.18.1@aar") + implementation("net.java.dev.jna:jna:5.19.1@aar") // Kotlin coroutines implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0") @@ -98,16 +98,16 @@ dependencies { // Activity & Lifecycle implementation("androidx.activity:activity-compose:1.13.0") - implementation("androidx.lifecycle:lifecycle-runtime-compose:2.10.0") - implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0") + implementation("androidx.lifecycle:lifecycle-runtime-compose:2.11.0") + implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.11.0") // Biometric implementation("androidx.biometric:biometric-ktx:1.4.0-alpha02") // Hilt dependency injection - implementation("com.google.dagger:hilt-android:2.53.1") - kapt("com.google.dagger:hilt-android-compiler:2.53.1") - implementation("androidx.hilt:hilt-navigation-compose:1.3.0") + implementation("com.google.dagger:hilt-android:2.60.1") + kapt("com.google.dagger:hilt-android-compiler:2.60.1") + implementation("androidx.hilt:hilt-navigation-compose:1.4.0") // QR code generation implementation("com.google.zxing:core:3.5.4") @@ -119,7 +119,7 @@ dependencies { implementation("com.google.mlkit:barcode-scanning:17.3.0") // Core AndroidX - implementation("androidx.core:core-ktx:1.18.0") + implementation("androidx.core:core-ktx:1.19.0") // Testing testImplementation("junit:junit:4.13.2")