We did flutter version up from 1.00 to 1.7.8, before we created signed apk file by
flutter build apk --flavor production
it will generate signed apk file automatically.
But after we upgrade it to 1.7.8 I tried
flutter build appbundle --flavor production
when I upload it to google play store , it says my app is not signed.
Is there anything else I should do when I try to generate aab file instead of apk file?
I kept the setting like before
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.release
}
}
I have a file named key.properties to store the value for signingConfig