From a8e2cf42bbec439968472a51c9048bb23b3506e4 Mon Sep 17 00:00:00 2001 From: Bhavuk Jain Date: Tue, 3 Jan 2023 15:07:57 +0000 Subject: [PATCH] Adding a feature flag for Auto Pin Confirmation feature This change aims at adding a feature flag for Auto Pin Confirmation Feature in the auto_pin_confirmation namespace Test: Tested by building and flashing on local Bug: b/262928040 Change-Id: I31c46ef63dd5a9feb1aee91e5ce7bd67b7e7e19d --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index e40c98892ab53..30615708d7b42 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -197,6 +197,11 @@ object Flags { @JvmField val UNOCCLUSION_TRANSITION = unreleasedFlag(223, "unocclusion_transition", teamfood = false) + // flag for controlling auto pin confirmation and material u shapes in bouncer + @JvmField + val AUTO_PIN_CONFIRMATION = + unreleasedFlag(224, "auto_pin_confirmation", "auto_pin_confirmation") + // 300 - power menu // TODO(b/254512600): Tracking Bug @JvmField val POWER_MENU_LITE = releasedFlag(300, "power_menu_lite")