Merge "Add a mutability flag to the PendingIntent in DynamicSystemInstallationService" am: dc0b992c75 am: 5107e43858 am: 46a6aee06d am: 0e0af4cf47

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

Change-Id: I7fb65a386b3a058c4da0f2d539e2903aae180987
This commit is contained in:
Howard Chen
2020-10-29 07:28:44 +00:00
committed by Automerger Merge Worker

View File

@@ -422,7 +422,7 @@ public class DynamicSystemInstallationService extends Service
private PendingIntent createPendingIntent(String action) {
Intent intent = new Intent(this, DynamicSystemInstallationService.class);
intent.setAction(action);
return PendingIntent.getService(this, 0, intent, 0);
return PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_IMMUTABLE);
}
private Notification buildNotification(int status, int cause) {