Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e1c9f67 authored by Ale Nijamkin's avatar Ale Nijamkin Committed by Android (Google) Code Review
Browse files

Merge "[flexiglass] Ties feature flag to resource." into main

parents 9dbc7bee c4609907
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -934,4 +934,12 @@

    <!-- Flag controlling whether visual query attention detection has been enabled. -->
    <bool name="config_enableVisualQueryAttentionDetection">false</bool>

    <!--
    Whether the scene container framework is enabled.

    The scene container framework is a newer (2023) way to organize the various "scenes" between the
    bouncer, lockscreen, shade, and quick settings.
    -->
    <bool name="config_sceneContainerFrameworkEnabled">true</bool>
</resources>
+4 −1
Original line number Diff line number Diff line
@@ -655,7 +655,10 @@ object Flags {
        ),
        level = DeprecationLevel.WARNING,
    )
    @JvmField val SCENE_CONTAINER = unreleasedFlag("scene_container")
    @JvmField val SCENE_CONTAINER = resourceBooleanFlag(
        R.bool.config_sceneContainerFrameworkEnabled,
        "scene_container",
    )

    // 1900
    @JvmField val NOTE_TASKS = releasedFlag("keycode_flag")