flutter/packages/flutter_tools/lib/src/reporting
2023-08-23 03:35:22 +00:00
..
crash_reporting.dart Appended period remove & Uri parsing fix. (#131293) 2023-07-31 20:42:11 +00:00
custom_dimensions.dart Remove the fast reassemble / single widget reload feature (#132255) 2023-08-10 21:48:06 +00:00
disabled_usage.dart Sync analysis_options.yaml & cleanups (#117327) 2022-12-20 14:15:39 -08:00
events.dart Remove the fast reassemble / single widget reload feature (#132255) 2023-08-10 21:48:06 +00:00
first_run.dart Support disabling animations in the CLI (#132239) 2023-08-23 03:35:22 +00:00
github_template.dart flutter-tool: enum cleanup (#124760) 2023-04-14 01:55:05 +00:00
README.md
reporting.dart Revert "[flutter_tools] Remove sound null safety flag (#123031)" (#123280) 2023-03-22 22:53:49 +00:00
usage.dart tool: Move cdKey to CustomDimensionsEnum (#125335) 2023-04-24 22:59:20 +00:00

Flutter reports data to two separate systems:

  1. Anonymous usage statistics are reported to Google Analytics (for statistics such as the number of times the flutter tool was run within a given time period). The code that manages this is in [usage.dart].
  2. Crash reports for the flutter tool. These are not reports of when Flutter applications crash, but rather when the command-line flutter tool itself crashes. The code that manages this is in [crash_reporting.dart].

Opting out

Users can opt out of all reporting in a single place by running flutter config --no-analytics.