Merge "Use PendingIntent.FLAG_IMMUTABLE in PendingIntent in NotificationMgr" into qt-qpr1-dev
diff --git a/src/com/android/phone/NotificationMgr.java b/src/com/android/phone/NotificationMgr.java
index 78ed15f..4a4afa2 100644
--- a/src/com/android/phone/NotificationMgr.java
+++ b/src/com/android/phone/NotificationMgr.java
@@ -639,7 +639,7 @@
}
// Navigate to "Network Selection Settings" which list all subscriptions.
PendingIntent contentIntent = PendingIntent.getActivity(mContext, 0,
- new Intent(ACTION_MOBILE_NETWORK_LIST), 0);
+ new Intent(ACTION_MOBILE_NETWORK_LIST), PendingIntent.FLAG_IMMUTABLE);
// Display phone number from the other sub
String line1Num = null;
SubscriptionManager subMgr = (SubscriptionManager) mContext.getSystemService(