From a1ea60841e780caefa95c9bf63e564b81777f9d8 Mon Sep 17 00:00:00 2001 From: asif Date: Thu, 4 Sep 2025 02:17:19 +0530 Subject: [PATCH] changed minSdk to 29 and also turned off backup in android manifest --- android/app/build.gradle | 2 +- android/app/src/main/AndroidManifest.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 74d8427..b7fa505 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -45,7 +45,7 @@ android { applicationId "com.example.kmobile" // 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 + minSdkVersion 29 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 926b1fe..8c14a50 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -6,6 +6,7 @@ android:label="kmobile" android:name="${applicationName}" android:usesCleartextTraffic="true" + android:allowBackup="false" android:icon="@mipmap/ic_launcher">