summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYimin Li <ymli@google.com>2022-04-26 11:30:52 -0700
committerYimin Li <ymli@google.com>2022-04-26 11:30:52 -0700
commit999467507f094e9b480c1c2b8da9a09fcd5ae712 (patch)
tree5bee4a6ea150bb96a0a89011be469c95b63b96a0 /src
parent0c292ef2132fbbee26d829e4cedbf21871ae1036 (diff)
parent261bd24ff9904f03604452049ff3e20e99aa5b26 (diff)
downloadContacts-999467507f094e9b480c1c2b8da9a09fcd5ae712.tar.gz
Merge commit '261bd24ff9904f03604452049ff3e20e99aa5b26' of sso://googleplex-android/platform/packages/apps/Contacts into HEAD
Change-Id: I64f7d466eb719c9a150e7c05873624dcfb014ba2
Diffstat (limited to 'src')
-rw-r--r--src/com/android/contacts/SimImportService.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/android/contacts/SimImportService.java b/src/com/android/contacts/SimImportService.java
index 4c7473107..f6703fc0d 100644
--- a/src/com/android/contacts/SimImportService.java
+++ b/src/com/android/contacts/SimImportService.java
@@ -15,6 +15,8 @@
*/
package com.android.contacts;
+import static android.app.PendingIntent.FLAG_IMMUTABLE;
+
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
@@ -196,7 +198,7 @@ public class SimImportService extends Service {
.setContentTitle(this.getString(R.string.importing_sim_finished_title))
.setColor(this.getResources().getColor(R.color.dialtacts_theme_color))
.setSmallIcon(R.drawable.quantum_ic_done_vd_theme_24)
- .setContentIntent(PendingIntent.getActivity(this, 0, intent, 0));
+ .setContentIntent(PendingIntent.getActivity(this, 0, intent, FLAG_IMMUTABLE));
return builder.build();
}
@@ -210,7 +212,7 @@ public class SimImportService extends Service {
.setContentText(this.getString(R.string.importing_sim_failed_message))
.setColor(this.getResources().getColor(R.color.dialtacts_theme_color))
.setSmallIcon(R.drawable.quantum_ic_error_vd_theme_24)
- .setContentIntent(PendingIntent.getActivity(this, 0, intent, 0));
+ .setContentIntent(PendingIntent.getActivity(this, 0, intent, FLAG_IMMUTABLE));
return builder.build();
}