Complete the code to define the app version in pubspec.yaml for Play Store submission.
version: 1.0.0+[1]
The number after the plus sign is the build number, which must be incremented for each Play Store submission.
Complete the command to build the Android app bundle for Play Store upload.
flutter build [1] --releaseThe Play Store requires an Android App Bundle (.aab) for submission, built with flutter build appbundle.
Fix the error in the AndroidManifest.xml to set the app's package name correctly for Play Store.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="[1]"> <!-- other tags --> </manifest>
The package name must be unique and match your app's identifier, usually in reverse domain format like com.example.myapp.
Fill both blanks to configure signing in build.gradle for Play Store release.
signingConfigs {
release {
storeFile file('[1]')
storePassword '[2]'
}
}The storeFile is the keystore file name, and storePassword is the password you set when creating the keystore.
Fill all three blanks to define the app's version code, version name, and minSdkVersion in build.gradle.
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion [1]
versionCode [2]
versionName "[3]"
}minSdkVersion is the minimum Android version your app supports (16 is common). versionCode is an integer that must increase with each release. versionName is the user-visible version string.