flutter/packages/flutter_tools/lib/src/reporting
2020-01-28 07:56:51 -08:00
..
crash_reporting.dart [flutter_tools] Ensure that global variables are easily identifiable (#47398) 2020-01-06 11:04:20 -08:00
disabled_usage.dart License update (#45373) 2019-11-27 15:04:02 -08:00
events.dart Revert string interp (#49602) 2020-01-28 07:56:51 -08:00
github_template.dart enable lint prefer_final_in_for_each (#47724) 2020-01-07 16:32:04 +01:00
README.md Move reporting files to reporting/ (#36017) 2019-07-16 13:21:06 -07:00
reporting.dart [flutter_tool] Make BotDetector context free (#48605) 2020-01-13 10:12:06 -08:00
usage.dart Replace FlutterVersion.instance with FlutterVersion context fetch in global.dart (#49462) 2020-01-27 17:38:01 -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.