29 lines
769 B
Dart
29 lines
769 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
library reporting;
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:meta/meta.dart';
|
|
import 'package:usage/usage_io.dart';
|
|
|
|
import '../base/bot_detector.dart';
|
|
import '../base/context.dart';
|
|
import '../base/file_system.dart';
|
|
import '../base/io.dart';
|
|
import '../base/time.dart';
|
|
import '../doctor.dart';
|
|
import '../features.dart';
|
|
import '../globals.dart' as globals;
|
|
import '../persistent_tool_state.dart';
|
|
import '../runner/flutter_command.dart';
|
|
import '../version.dart';
|
|
|
|
part 'crash_reporting.dart';
|
|
part 'disabled_usage.dart';
|
|
part 'events.dart';
|
|
part 'usage.dart';
|