From e0375f31d1603fa37e3857c4105137bd58370bc6 Mon Sep 17 00:00:00 2001 From: Evan Laird Date: Mon, 30 Mar 2020 16:04:23 -0400 Subject: [PATCH] Unflip bit to disallow FGS dismissal Bug: 149420946 Test: atest SystemUITests; manual Change-Id: I14f6ad03c3af5fb10e1036b549bfb716e807b1f6 --- .../notification/ForegroundServiceDismissalFeatureController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/ForegroundServiceDismissalFeatureController.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/ForegroundServiceDismissalFeatureController.kt index 571a85440b89f..dfc2fc1c45841 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/ForegroundServiceDismissalFeatureController.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/ForegroundServiceDismissalFeatureController.kt @@ -42,7 +42,7 @@ class ForegroundServiceDismissalFeatureController @Inject constructor( private fun isEnabled(proxy: DeviceConfigProxy): Boolean { if (sIsEnabled == null) { sIsEnabled = proxy.getBoolean( - DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_ALLOW_FGS_DISMISSAL, true) + DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_ALLOW_FGS_DISMISSAL, false) } return sIsEnabled!!