Merge "DO NOT MERGE Fix BAL via notification.publicVersion" into sc-dev

This commit is contained in:
Nan Wu
2023-08-03 12:42:16 +00:00
committed by Android (Google) Code Review
2 changed files with 6 additions and 3 deletions

View File

@@ -3358,8 +3358,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();
}
}
/**

View File

@@ -4319,7 +4319,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(),