aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-30 01:08:12 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-06-30 01:08:12 +0000
commita71deb61ced0332d63c2bfa89b6c135a9a472215 (patch)
treead8d4aa72f7f5c24180b32816d7e2e6239977dd3
parentacea3863ef7301c3273008ec55c41ff36a933a0b (diff)
parenta1dfded1eb9334bd272755b20da8c28438e69e06 (diff)
downloadtests-android12-d1-s1-release.tar.gz
Change-Id: Id3b30d2ce93194c035739e0ca64e5edb02e04fde
-rw-r--r--RotaryPlayground/src/com/android/car/rotaryplayground/HeadsUpNotificationFragment.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/RotaryPlayground/src/com/android/car/rotaryplayground/HeadsUpNotificationFragment.java b/RotaryPlayground/src/com/android/car/rotaryplayground/HeadsUpNotificationFragment.java
index 0744ac0..97c676e 100644
--- a/RotaryPlayground/src/com/android/car/rotaryplayground/HeadsUpNotificationFragment.java
+++ b/RotaryPlayground/src/com/android/car/rotaryplayground/HeadsUpNotificationFragment.java
@@ -62,7 +62,8 @@ public class HeadsUpNotificationFragment extends Fragment {
*/
private Notification createNotification() {
Intent intent = new Intent(getContext(), RotaryActivity.class);
- PendingIntent pendingIntent = PendingIntent.getActivity(getContext(), 0, intent, 0);
+ PendingIntent pendingIntent =
+ PendingIntent.getActivity(getContext(), 0, intent, PendingIntent.FLAG_IMMUTABLE);
return new Notification.Builder(getContext(), NOTIFICATION_CHANNEL_ID)
.setContentTitle("Example heads-up notification")
.setContentText("Try nudging up to HUN")