Merge "No need to post FGS notifications after process death" into sc-qpr1-dev am: 2ce4cf79b1 am: b9ba2ce0a6

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15888242

Change-Id: I5311034eee967a44f9e3767ad81d6c8090b4f4fd
This commit is contained in:
Chris Tate
2021-09-23 17:43:22 +00:00
committed by Automerger Merge Worker

View File

@@ -927,9 +927,9 @@ final class ServiceRecord extends Binder implements ComponentName.WithComponentN
} }
public void postNotification() { public void postNotification() {
final int appUid = appInfo.uid; if (isForeground && foregroundNoti != null && app != null) {
final int appPid = app.getPid(); final int appUid = appInfo.uid;
if (isForeground && foregroundNoti != null) { final int appPid = app.getPid();
// Do asynchronous communication with notification manager to // Do asynchronous communication with notification manager to
// avoid deadlocks. // avoid deadlocks.
final String localPackageName = packageName; final String localPackageName = packageName;