flutter/packages/flutter_tools/lib/src/reporting
2019-08-22 09:18:25 -07:00
..
crash_reporting.dart [flutter_tool] Teach crash reporter about HttpException (#39005) 2019-08-22 09:18:25 -07:00
disabled_usage.dart [flutter_tool] Clean up usage events and custom dimensions (#36785) 2019-07-29 07:24:02 -07:00
events.dart [flutter_tool] Usage refactor cleanup (#37186) 2019-07-30 12:18:15 -07:00
README.md Move reporting files to reporting/ (#36017) 2019-07-16 13:21:06 -07:00
reporting.dart [flutter_tool] Clean up usage events and custom dimensions (#36785) 2019-07-29 07:24:02 -07:00
usage.dart [flutter_tool] Remove unintended analytics screen send (#37514) 2019-08-06 09:08:43 -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.