| // Copyright 2015 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import '../application_package.dart'; |
| import '../base/common.dart'; |
| import '../build_info.dart'; |
| import '../globals.dart'; |
| import '../runner/flutter_command.dart'; |
| class StopCommand extends FlutterCommand { |
| final String name = 'stop'; |
| final String description = 'Stop your Flutter app on an attached device.'; |
| Future<Null> verifyThenRunCommand() async { |
| device = await findTargetDevice(); |
| return super.verifyThenRunCommand(); |
| Future<Null> runCommand() async { |
| ApplicationPackage app = applicationPackages.getPackageForPlatform(device.platform); |
| String platformName = getNameForTargetPlatform(device.platform); |
| throwToolExit('No Flutter application for $platformName found in the current directory.'); |
| printStatus('Stopping apps on ${device.name}.'); |
| if (!await device.stopApp(app)) |