π¦ ClawHub
Flutter Release Pipeline
by @neo1307
Build and package Flutter Android release artifacts (APK/AAB), collect outputs into a single folder, and produce a short release checklist. Use when the user...
TERMINAL
clawhub install neo1307-flutter-release-pipelineπ About This Skill
name: flutter-release-pipeline description: Build and package Flutter Android release artifacts (APK/AAB), collect outputs into a single folder, and produce a short release checklist. Use when the user asks to build APK/AAB, prepare a Play Store release, bump version, gather mapping/symbols, or generate a deterministic release folder for sharing.
Flutter Android Release Pipeline
Workflow
1) Preflight
flutter --version works.pubspec.yaml.2) Build (choose one)
flutter build appbundle --releaseflutter build apk --release (optionally --split-per-abi)3) Collect artifacts
Create out/flutter_release_ and copy:
build/app/outputs/flutter-apk/*.apk (if APK build)build/app/outputs/bundle/release/*.aab (if AAB build)build/app/outputs/mapping/release/mapping.txt (if present)pubspec.yaml (snapshot)4) Report
Script
Run (PowerShell):powershell -ExecutionPolicy Bypass -File scripts/flutter_release.ps1 -Project "" -Mode aab|apk -SplitPerAbi:$false