[flutter_tools] partial revert of start app change (#68128)

* [flutter_tools] partial revert of start app change
This commit is contained in:
Jonah Williams 2020-10-14 12:20:30 -07:00 committed by GitHub
parent 33903c17e1
commit 767fb98a7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -565,6 +565,7 @@ Future<bool> _stopApp(DriveCommand command) async {
buildInfo: command.getBuildInfo(),
);
final bool stopped = await command.device.stopApp(package, userIdentifier: command.userIdentifier);
await command.device.uninstallApp(package);
await command._deviceLogSubscription?.cancel();
return stopped;
}