flutter/packages/flutter_tools/lib/src/reporting
2020-04-20 15:23:09 -07:00
..
crash_reporting.dart CrashReportSender dependency injection (#54924) 2020-04-20 15:23:09 -07:00
disabled_usage.dart License update (#45373) 2019-11-27 15:04:02 -08:00
events.dart Inject Usage dependency into FallbackDiscovery and BuildEvent (#53443) 2020-04-02 10:57:37 -07:00
github_template.dart Move GitHubTemplateCreator into reporting library (#55002) 2020-04-17 10:47:12 -07:00
README.md Move reporting files to reporting/ (#36017) 2019-07-16 13:21:06 -07:00
reporting.dart CrashReportSender dependency injection (#54924) 2020-04-20 15:23:09 -07:00
usage.dart Inject Usage dependency into FallbackDiscovery and BuildEvent (#53443) 2020-04-02 10:57:37 -07: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.