From 23b8bad369145c5d98d3d2a9ac4cc3b002822383 Mon Sep 17 00:00:00 2001 From: Aaron Liu Date: Mon, 3 Apr 2023 08:34:39 -0700 Subject: [PATCH] Release ASYNC_BOUNCER flag this will allow users to inflate the bouncer on a bg thread when showing. Fixes: 269522372 Bug: 272091103 Test: many weeks of local testing showing/hiding the bouncer. Change-Id: Ib45034ea3a67c8189f01f6df75275042f6d51d69 --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index 79a51d6670c4a..1d243f5195095 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -219,7 +219,7 @@ object Flags { /** Whether to inflate the bouncer view on a background thread. */ // TODO(b/272091103): Tracking Bug @JvmField - val ASYNC_INFLATE_BOUNCER = unreleasedFlag(229, "async_inflate_bouncer", teamfood = true) + val ASYNC_INFLATE_BOUNCER = releasedFlag(229, "async_inflate_bouncer") /** Whether to inflate the bouncer view on a background thread. */ // TODO(b/273341787): Tracking Bug