To change the minSdkVersion for an Android app in a Flutter project, you need to modify the android/app/build.gradle file.
Adding external packages to your app can make things easier for you and allows you to focus on the mission-critical feature of your app. But sometimes when you add the packages, you may face an issue that asks you to increase the Android minSdkVersion. This happens because the plugin requires a higher android sdk version for projects that were created before and after Flutter 2.8 update.
For the Project Created Before Flutter 2.8 Update
Here are the steps to change minSdkVersion in Flutter for the project created before 2.8 update:
- Locate the
build.gradlefile under theproject_folder/android/app/build.gradle - Find the
defaultConfigsection update theminSdkVersionto the new version. - Inside the terminal, run the
flutter cleancommand. - Re-run your app.
defaultConfig {
applicationId "com.example.common_project"
minSdkVersion 21 // <-- SEE HERE
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}

For the Projects Created After Flutter 2.8 Update
To change Android minSdkVersion in Flutter for the project created after the 2.8 update, you have to make changes in the local.properties file and then reference the new variable from the local.properties file inside the build.gradle file.
Here are the steps:
- Locate the
local.propertiesfile under theproject_folder/android/local.properties - Inside the local.properties file, add the line as
flutter.minSdkVersion=21 - Now, open the
build.gradlefile under theproject_folder/android/app/build.gradle - Find the
defaultConfigsection update theminSdkVersionto thelocalProperties.getProperty(‘flutter.minSdkVersion’).toInteger(). - Inside the terminal, run the
flutter cleancommand. - Re-run your app.
After making these changes, your Android app will have its minSdkVersion set to the specified value. Remember that setting minSdkVersion to a higher value means your app won’t be compatible with devices running older Android versions. Always consider the trade-offs and the target audience when choosing the minSdkVersion for your Flutter app.