diff options
author | Selim Cinek <cinek@google.com> | 2018-11-21 19:53:27 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-11-21 19:53:27 +0000 |
commit | ddc2f8780915975eb48df2441bf2da67a0f504fc (patch) | |
tree | 3be900a813f3f8b710d4e6d3262f08c00624d445 | |
parent | ebffde2e191a609298d342260abd0226a9bd1a59 (diff) | |
parent | 033629610ba92d6de1ca0d5ebc3a25d8e080a1bf (diff) |
Merge "By default notifications are allowed to be shown on the lockscreen"
-rw-r--r-- | services/core/java/com/android/server/notification/NotificationManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 32990ce1ea2e..4da29e4d0679 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -411,7 +411,7 @@ public class NotificationManagerService extends SystemService { private NotificationAssistants mAssistants; private ConditionProviders mConditionProviders; private NotificationUsageStats mUsageStats; - private boolean mLockScreenAllowSecureNotifications; + private boolean mLockScreenAllowSecureNotifications = true; private static final int MY_UID = Process.myUid(); private static final int MY_PID = Process.myPid(); |