diff options
| author | 2023-05-19 16:28:10 +0000 | |
|---|---|---|
| committer | 2023-05-19 17:22:30 +0000 | |
| commit | 94330ec6afdedaf337b6007dcdf1194838c8044c (patch) | |
| tree | ff6b46d5953a90de83ea09b3799e26e6a0672bd1 | |
| parent | a7afe1ab465927972f637f1e37667e8cb63fdbc1 (diff) | |
Flip delay bouncer flag to unreleased
Test: manually check flag in FlagFlipper
Bug: 267322286
Bug: 279794160
Change-Id: If078e800b3a4010c1853babe7c8c78fa72850713
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index c8485dcdef41..3555821eb8a2 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -240,7 +240,7 @@ object Flags {      /** Whether to delay showing bouncer UI when face auth or active unlock are enrolled. */      // TODO(b/279794160): Tracking bug.      @JvmField -    val DELAY_BOUNCER = releasedFlag(235, "delay_bouncer") +    val DELAY_BOUNCER = unreleasedFlag(235, "delay_bouncer")      /** Migrate the indication area to the new keyguard root view. */      // TODO(b/280067944): Tracking bug.  |