DO NOT MERGE Fix BAL via notification.publicVersion am: 1896c2e706 am: 95f88ce4c9
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23982977 Change-Id: I97c95cc203b7c47812bd5aeb3853836bb1940710 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -3413,8 +3413,11 @@ public class Notification implements Parcelable
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public void setAllowlistToken(@Nullable IBinder token) {
|
||||
mAllowlistToken = token;
|
||||
public void clearAllowlistToken() {
|
||||
mAllowlistToken = null;
|
||||
if (publicVersion != null) {
|
||||
publicVersion.clearAllowlistToken();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4368,7 +4368,7 @@ public class NotificationManagerService extends SystemService {
|
||||
// Remove background token before returning notification to untrusted app, this
|
||||
// ensures the app isn't able to perform background operations that are
|
||||
// associated with notification interactions.
|
||||
notification.setAllowlistToken(null);
|
||||
notification.clearAllowlistToken();
|
||||
return new StatusBarNotification(
|
||||
sbn.getPackageName(),
|
||||
sbn.getOpPkg(),
|
||||
|
||||
Reference in New Issue
Block a user