diff options
| author | 2023-01-03 15:07:57 +0000 | |
|---|---|---|
| committer | 2023-01-06 15:56:27 +0000 | |
| commit | a8e2cf42bbec439968472a51c9048bb23b3506e4 (patch) | |
| tree | 61c7eae2ffaea364cb2e3333600435349077e1ef | |
| parent | ac2768ae43f4cfb1037d227508888fb200d5fcb6 (diff) | |
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
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index e40c98892ab5..30615708d7b4 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") |