flutter/packages/flutter_tools/lib/src/reporting
2020-02-27 22:57:13 -08:00
..
crash_reporting.dart Revert "Reland: [flutter_tool] Where possible, catch only subtypes of Exception (#51567)" (#51616) 2020-02-27 22:57:13 -08:00
disabled_usage.dart License update (#45373) 2019-11-27 15:04:02 -08:00
events.dart Revert "Reland: [flutter_tool] Where possible, catch only subtypes of Exception (#51567)" (#51616) 2020-02-27 22:57:13 -08:00
github_template.dart Revert "Reland: [flutter_tool] Where possible, catch only subtypes of Exception (#51567)" (#51616) 2020-02-27 22:57:13 -08:00
README.md
reporting.dart Reland: [flutter_tools] Disable analytics for more bots (#50641) 2020-02-12 10:58:02 -08:00
usage.dart Reland: [flutter_tools] Disable analytics for more bots (#50641) 2020-02-12 10:58:02 -08: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.