changed minSdk to 29 and also turned off backup in android manifest

This commit is contained in:
asif
2025-09-04 02:17:19 +05:30
parent 2abc315af9
commit a1ea60841e
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -6,6 +6,7 @@
android:label="kmobile"
android:name="${applicationName}"
android:usesCleartextTraffic="true"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"