summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/Connection.java
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2021-01-13 16:08:07 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2021-01-13 16:08:07 +0000
commit40449d8182da6eca461741ab187b3802de649db0 (patch)
tree8064d17548c6f46ec3b0718233d4cd85d106316e /telecomm/java/android/telecom/Connection.java
parent8f2ca800021ec852eee4a2b4b507129438479da1 (diff)
parentf8191e8996452432f6eb979180866dff84240ab7 (diff)
Merge "Bulk apply PendingIntent.FLAG_MUTABLE_UNAUDITED."
Diffstat (limited to 'telecomm/java/android/telecom/Connection.java')
-rw-r--r--telecomm/java/android/telecom/Connection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java
index 7a21b3adf654..f1bea676ed20 100644
--- a/telecomm/java/android/telecom/Connection.java
+++ b/telecomm/java/android/telecom/Connection.java
@@ -3285,7 +3285,7 @@ public abstract class Connection extends Conferenceable {
* Intent intent = new Intent(Intent.ACTION_MAIN, null);
* intent.setFlags(Intent.FLAG_ACTIVITY_NO_USER_ACTION | Intent.FLAG_ACTIVITY_NEW_TASK);
* intent.setClass(context, YourIncomingCallActivity.class);
- * PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, 0);
+ * PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_MUTABLE_UNAUDITED);
*
* // Build the notification as an ongoing high priority item; this ensures it will show as
* // a heads up notification which slides down over top of the current content.