From b7b124849e8ee1e8b910e6138155b4c66ca88295 Mon Sep 17 00:00:00 2001 From: Phan An Date: Sat, 8 Aug 2026 15:13:01 +0200 Subject: [PATCH] Target Android 16 (API 36) Play requires API 36 to keep publishing updates. compileSdk was already 36, and the behaviour changes that come with targeting it are all already handled: the app draws edge-to-edge, opts into predictive back, and never restricted orientation or resizability. --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 7f4d5a24..6ce64e1e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -50,7 +50,7 @@ android { // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. minSdkVersion flutter.minSdkVersion - targetSdkVersion 35 + targetSdkVersion 36 versionCode flutterVersionCode.toInteger() versionName flutterVersionName ndk {