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

Commit c4609907 authored by Alejandro Nijamkin's avatar Alejandro Nijamkin Committed by Ale Nijamkin
Browse files

[flexiglass] Ties feature flag to resource.

This should let us launch Flexiglass on main system UI without launching
it in variants, should we want to.

Fix: 298695679
Test: built with the config true and false and verified that Flexiglass
is on and off, respectively.

Change-Id: If6057681a528644f8f277689de6c94f8aaf95de5
parent 40204e1a
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")