Skip to content

v0.3.0 — Run & Incremental Rebuild

Choose a tag to compare

@fonkamloic fonkamloic released this 16 Feb 04:42
· 143 commits to main since this release

What's New

  • run command (alias: r) — Launch Flutter apps with a local engine build. No more typing verbose --local-engine flags manually.
  • Incremental rebuildsbuild engine now auto-skips GN when build.ninja already exists, making rebuild cycles faster.
  • --gn / --no-gn flags — Explicit control over the GN step in build engine.

Usage

# Run app with local engine
flutter_compile run

# Short alias
flutter_compile r

# Forward args to flutter run
flutter_compile run -p ios --simulator -- -d "iPhone 15"

# Incremental rebuild (GN auto-skipped)
flutter_compile build engine

# Force GN re-run
flutter_compile build engine --gn

Full Changelog: v0.2.0...v0.3.0