- Parse "flutter build" command output even when it doesn't contain a period.
- Remove
coverage_all_imports
file before codegeneration, as the latter may sometimes be confused.
- Obsolete
vendor/flutter
(as it turns out, this never worked very well) andFLUTTER_SDK_ROOT
environment variable. - Be verbose about why a certain Flutter location was determined as current by the plugin.
- Detect
vendor/flutter
directory as default Flutter installation if there's a Flutter binary inside.
- Support
.flutter
subdirectory for project-specific flutter installation (usually for Flutter version pinning).
- Do not print a warning message when not able to parse "flutter build" output and "--config-only" argument is present.
- Install "stable" version of Flutter by default (instead of "beta").
- Return Flutter SDK path from
flutter_bootstrap
.
- Add
coverage_all_imports: true
support toflutter_generate()
, which would generate a test importing all.dart
files inlib/
. This will make coverage tools consider percentage of overall project rather than files with non-zero coverage only.
- Support
--split-per-abi
flag and return a list fromflutter_build()
in that case.
- Fill in some well-known context variables in
flutter_build()
action. - Slightly expand on
flutter_generate()
command.
- Add an example of how an
.ipa
file can be built for a Flutter app. - Fix
capture_stdout
parameter offlutter
action to actually return stdout.