From e004862b006369d1e59128f902fecf3f182b9e64 Mon Sep 17 00:00:00 2001 From: Jonas Haugesen Date: Thu, 10 Sep 2026 20:46:11 +0200 Subject: [PATCH] Bump version to 1.40.2-typing.3 Fixes on top of -typing.2: the widget configure activity crash, the search bar keeping the keyboard focus (and the IME) on the home screen after an app switch, and the TextFieldValue update in SearchBar moving out of the composition. --- app/app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app/build.gradle.kts b/app/app/build.gradle.kts index ea07ef3d1..798d6028c 100644 --- a/app/app/build.gradle.kts +++ b/app/app/build.gradle.kts @@ -34,8 +34,8 @@ android { applicationId = "de.mm20.launcher2" minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() - versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2026091001 - versionName = "1.40.2-typing.2" + versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2026091002 + versionName = "1.40.2-typing.3" signingConfig = signingConfigs.getByName("debug") }