From a7186ab2c55530fb30094add5979b2fddec90ea0 Mon Sep 17 00:00:00 2001 From: stopflock Date: Thu, 2 Oct 2025 04:25:41 -0500 Subject: [PATCH] change android target sdk ver --- android/app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 2a4bb50..35e082b 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -18,7 +18,7 @@ android { namespace = "me.deflock.deflockapp" // Matches current stable Flutter (compileSdk 34 as of July 2025) - compileSdk = 35 + compileSdk = 36 // NDK only needed if you build native plugins; keep your pinned version ndkVersion = "27.0.12077973" @@ -40,7 +40,7 @@ android { // oauth2_client 4.x & flutter_web_auth_2 5.x require minSdk 23 // ──────────────────────────────────────────────────────────── minSdk = 23 - targetSdk = 34 + targetSdk = 36 // Flutter tool injects these during `flutter build` versionCode = flutter.versionCode