From 8f7828ebe7fc6d87e0de112cfda2823fd5818cb2 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Wed, 31 May 2017 13:45:52 -0400 Subject: Change default for group alert behavior To alert for children but not the summary. Bug: 62027641 Test: cts Change-Id: Ie7978514be45be6b13c2ea3bd7ff898db352a1ed --- core/java/android/app/Notification.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index c626ae9630b8..31f52dbea548 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1168,7 +1168,7 @@ public class Notification implements Parcelable */ public static final int GROUP_ALERT_CHILDREN = 2; - private int mGroupAlertBehavior = GROUP_ALERT_ALL; + private int mGroupAlertBehavior = GROUP_ALERT_CHILDREN; /** * If this notification is being shown as a badge, always show as a number. -- cgit v1.2.3-59-g8ed1b