add -v to flutter install invocation when setting up android run tests (#153894)

Experiment to help troubleshoot https://github.com/flutter/flutter/issues/153367
This commit is contained in:
Andrew Kolos 2024-08-23 13:51:07 -07:00 committed by GitHub
parent 37ba70cef5
commit 31da240b97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,7 +83,9 @@ class AndroidRunOutputTest extends RunOutputTask {
print('uninstalling...'); print('uninstalling...');
final Process uninstall = await startFlutter( final Process uninstall = await startFlutter(
'install', 'install',
options: <String>['--suppress-analytics', '--uninstall-only', '-d', deviceId], // TODO(andrewkolos): consider removing -v after
// https://github.com/flutter/flutter/issues/153367 is troubleshot.
options: <String>['--suppress-analytics', '--uninstall-only', '-d', deviceId, '-v'],
isBot: false, isBot: false,
); );
uninstall.stdout uninstall.stdout