Merge "EuiccOperationSidecar PendingIntent includes Immutable flag."

This commit is contained in:
Jeremy Goldman
2021-01-12 12:16:13 +00:00
committed by Android (Google) Code Review

View File

@@ -99,7 +99,8 @@ public abstract class EuiccOperationSidecar extends SidecarFragment {
Intent intent = new Intent(getReceiverAction());
intent.putExtra(EXTRA_OP_ID, mOpId);
return PendingIntent.getBroadcast(
getContext(), REQUEST_CODE, intent, PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE_UNAUDITED);
getContext(), REQUEST_CODE, intent,
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
}
@Override