Release Android

Android release work is app identity, signing, manifest/Gradle review, package build, Play policy, and device smoke.

Checklist

StepEvidence
App identityCorrect application ID, app name, icons
ManifestPermissions, queries, exported components, deep links reviewed
GradleSDK versions, version code/name, min/target constraints understood
SigningUpload key or release keystore documented and protected
BuildAAB for Play or APK for direct testing
SmokeInstall release artifact on target device/emulator
PolicyData safety, permissions, content, privacy policy reviewed

Commands

flutter analyze
flutter test
flutter build appbundle --release
flutter build apk --release

Use an APK for local install smoke when useful. Use an AAB for Play release paths.

Agent Rule

An AI agent may prepare files and check docs. It should not generate, overwrite, print, or commit signing secrets.

Gotcha: A debug APK is not Play release evidence. Build the release artifact and smoke that artifact.