From 9918f7ef914e2172ecd42468599ce2f55cff67ca Mon Sep 17 00:00:00 2001 From: Michael W Date: Sat, 11 Jan 2025 21:10:31 +0100 Subject: [PATCH] Updater: Bump minSdk to 32 * We use features that are only available on 31 and up (system colors) anyway * We can use Java 11 instead of 1.8 (which we already can use when not using gradle, but that way AS also recognizes it) Change-Id: Ie2ea1e77b1954bde44f06b63e6c09979d0e91c17 --- 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 8027ed6..d951480 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -34,7 +34,7 @@ android { defaultConfig { applicationId = "org.lineageos.updater" - minSdk = 30 + minSdk = 32 targetSdk = 33 versionCode = 1 versionName = "1.0"