mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
![]() Reverts: flutter/flutter#156549 Initiated by: christopherfujino Reason for reverting: https://github.com/flutter/flutter/issues/156606 Original PR Author: christopherfujino Reviewed By: {matanlurey} This change reverts the following previous change: I manually ran: ``` flutter update-packages --force-upgrade cd dev/tools && dart bin/generate_gradle_lockfiles.dart --no-gradle-generation --no-exclusion ``` Note this bumps the `google_mobile_ads` plugin, which caused https://github.com/flutter/flutter/issues/156474. I expect it to work this time after https://flutter-review.googlesource.com/c/recipes/+/60340 |
||
---|---|---|
.. | ||
android | ||
ios | ||
lib | ||
money_asset_manifest.json | ||
pubspec.yaml | ||
README.md |
microbenchmarks
To run these benchmarks on a device, first run flutter logs
in one
window to see the device logs, then, in a different window, run:
flutter run -d $DEVICE_ID --profile lib/benchmark_collection.dart
To run a subset of tests:
flutter run -d $DEVICE_ID --profile lib/benchmark_collection.dart --dart-define=tests=foundation/change_notifier_bench.dart,language/sync_star_bench.dart
To specify a seed value for shuffling tests:
flutter run -d $DEVICE_ID --profile lib/benchmark_collection.dart --dart-define=seed=12345
The results should be in the device logs.
Avoid changing names of the benchmarks
Each microbenchmark is identified by a name, for example,
"catmullrom_transform_iteration". Changing the name passed to BenchmarkResultPrinter.addResult
will effectively remove the old benchmark and create a new one,
losing the historical data associated with the old benchmark in the process.