From 66500045691f28c7db0495c717b4b64440c88a33 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Fri, 19 Apr 2019 11:23:55 -0400 Subject: [PATCH] Disable blocking helper By default, at least Test: manual Fixes: 130739518 Change-Id: Ic83c80740b2d844cad8eb97a08172b57204be8f8 --- .../server/notification/NotificationManagerService.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 6c111570938b6..2e8e65b7aa77e 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -308,8 +308,7 @@ public class NotificationManagerService extends SystemService { static final String[] DEFAULT_ALLOWED_ADJUSTMENTS = new String[] { Adjustment.KEY_IMPORTANCE, Adjustment.KEY_CONTEXTUAL_ACTIONS, - Adjustment.KEY_TEXT_REPLIES, - Adjustment.KEY_USER_SENTIMENT}; + Adjustment.KEY_TEXT_REPLIES}; static final String[] NON_BLOCKABLE_DEFAULT_ROLES = new String[] { RoleManager.ROLE_DIALER, @@ -7325,7 +7324,7 @@ public class NotificationManagerService extends SystemService { private static final String ATT_USER_SET = "user_set"; // TODO: STOPSHIP (b/127994217) switch to final value when onboarding flow is implemented - private static final String TAG_ALLOWED_ADJUSTMENT_TYPES = "allowed_adjustments_tmp"; + private static final String TAG_ALLOWED_ADJUSTMENT_TYPES = "allowed_adjustments_tmp2"; private static final String ATT_TYPES = "types"; private final Object mLock = new Object();