Running the command flutter build appbundle --release or flutter build apk --release
I have this issue
Keystore file not set for signing config release
I'd follow the steps of the flutter.dev/docs: https://flutter.dev/docs/deployment/android#configure-signing-in-gradle but still the same.
I create the key.propeties file and replace the content in the build.grade file.
Also replace de build types with:
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
But still getting the same issue:
- What went wrong: Execution failed for task ':app:validateSigningRelease'.
Keystore file not set for signing config release
Somebody already solve this issue?
