Merge "Remove notification right after clicking on cancel"

am: 00cf589f45

Change-Id: I6fee85779f6ffc5e61fb7fe1fa91dcc38a99c712
This commit is contained in:
Po-Chien Hsueh
2020-01-07 19:20:38 -08:00
committed by android-build-merger

View File

@@ -262,10 +262,11 @@ public class DynamicSystemInstallationService extends Service
return;
}
stopForeground(true);
mJustCancelledByUser = true;
if (mInstallTask.cancel(false)) {
// Will cleanup and post status in onResult()
// Will stopSelf() in onResult()
Log.d(TAG, "Cancel request filed successfully");
} else {
Log.e(TAG, "Trying to cancel installation while it's already completed.");