From b0817636d1e3354cdddc5a673c35a18b83cba6fb Mon Sep 17 00:00:00 2001 From: Alexander Grahn Date: Thu, 6 Aug 2026 14:35:19 +0200 Subject: [PATCH 1/2] SSH local network connection failure fixed (Android 17) --- CHANGELOG.md | 1 + app/src/main/AndroidManifest.xml | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e466ed41..21cbbf1ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file - Autofill fast unlocking setup: PIN setting dialog/biometric prompt were not shown after passphrase verification - Shortcuts on the home screen (pinned passwords) were pointing to the containing folder, not the actual password - There is now one fast unlocking PIN per PGP ID to prevent password leakage in case of folders that were initialised with different PGP IDs +- Failing SSH connection on Android 17 devices with servers in a local network; `ACCESS_LOCAL_NETWORK` permission added to manifest ## [2.0.0] - 2026-07-26 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 4189c6a4c2..c103f1e4f9 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -8,6 +8,7 @@ android:installLocation="auto"> + Date: Thu, 6 Aug 2026 14:11:28 +0000 Subject: [PATCH 2/2] Update dependency com.android.tools:r8 to v9.2.23 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index af87054fce..c4d7ebad13 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -44,7 +44,7 @@ aps-zxingAndroidEmbedded = "com.github.android-password-store:zxing-android-embe build-agp = { module = "com.android.tools.build:gradle", version.ref = "agp" } build-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } build-okhttp = "com.squareup.okhttp3:okhttp:5.4.0" -build-r8 = "com.android.tools:r8:9.1.31" +build-r8 = "com.android.tools:r8:9.2.23" build-semver = "com.github.zafarkhaja:java-semver:0.10.2" build-spotless = "com.diffplug.spotless:spotless-plugin-gradle:8.9.0" build-vcu = "nl.littlerobots.version-catalog-update:nl.littlerobots.version-catalog-update.gradle.plugin:1.1.1"