From be83ff61542086d47fa67469e158d405f5d0b7f4 Mon Sep 17 00:00:00 2001 From: Timofei Pushkin Date: Sat, 30 May 2026 20:24:19 +0200 Subject: [PATCH 1/2] Bump minimum Android version in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f37c005..d5368dbd 100644 --- a/README.md +++ b/README.md @@ -39,4 +39,4 @@ The following download sources are available: - [APK](https://github.com/TimPushkin/DepNav/releases) – download, install, and update DepNav manually -Android 5.0 or newer required. +Android 7 or newer required. From 85ce26a01b639c4cf07300b277197937be68f816 Mon Sep 17 00:00:00 2001 From: Timofei Pushkin Date: Sat, 30 May 2026 20:25:33 +0200 Subject: [PATCH 2/2] Bump app version to `1.4.5` --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1c01d8c3..6bf84f08 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,7 +11,7 @@ plugins { object Version { private const val MAJOR = 1 private const val MINOR = 4 - private const val PATCH = 4 + private const val PATCH = 5 const val CODE = MAJOR * 10000 + MINOR * 100 + PATCH const val NAME = "$MAJOR.$MINOR.$PATCH"