Commit b180caae authored by Devon Carew's avatar Devon Carew Committed by GitHub

change a few more places to use the seconds display for log output (#7995)

parent 36c63e70
......@@ -230,7 +230,7 @@ class AndroidDevice extends Device {
if (!_checkForSupportedAdbVersion() || !_checkForSupportedAndroidVersion())
return false;
Status status = logger.startProgress('Installing ${apk.apkPath}...');
Status status = logger.startProgress('Installing ${apk.apkPath}...', expectSlowOperation: true);
String installOut = runCheckedSync(adbCommandForDevice(<String>['install', '-r', apk.apkPath]));
status.stop();
RegExp failureExp = new RegExp(r'^Failure.*$', multiLine: true);
......
......@@ -277,7 +277,8 @@ class HotRunner extends ResidentRunner {
if (result != 0)
return false;
}
Status devFSStatus = logger.startProgress('Syncing files to device...');
Status devFSStatus = logger.startProgress('Syncing files to device...',
expectSlowOperation: true);
int bytes = await _devFS.update(progressReporter: progressReporter,
bundle: assetBundle,
bundleDirty: rebuildBundle,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment