From 16c381254bf3f9656251f1c552d396181f74eadf Mon Sep 17 00:00:00 2001 From: ScreenTinker Date: Wed, 24 Jun 2026 11:38:56 -0500 Subject: [PATCH] fix(android): lower minSdk 26 -> 24 to support Android 7.0/7.1 panels (#141) Covers API 24 (7.0) + 25 (7.1.2); all 26+ APIs were already guarded with graceful else branches; no dependency bumps. Validated on API 24 + 25 emulators: install, foreground service, #139 OTA verify on the legacy GET_SIGNATURES path (incl. tampered-refuse), EncryptedSharedPreferences, and playback. Co-Authored-By: Claude Opus 4.8 (1M context) --- android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index eda9c2c..e803bbe 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -9,7 +9,7 @@ android { defaultConfig { applicationId = "com.remotedisplay.player" - minSdk = 26 + minSdk = 24 targetSdk = 34 versionCode = 27 versionName = "1.9.1-beta7"