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

Commit f8d48b03 authored by Ching-Sung Li's avatar Ching-Sung Li Committed by Ching Sung Li
Browse files

DO NOT MERGE Add feature flag for PixelLiveWallpaper dogfood in Settings

Add feature flag (settings_pixel_wallpaper_category_switch) in developer
option for PixelLiveWallpaper's dogfood user to turn downloadable Live
wallpaper's category on or off. Expected expiration on: 2019/07/31.

Bug: 128962566
Test: Manual check this feature flag in developer option
Change-Id: Ie9d9180605cf92cf5618999d5a76f4fd87875859
parent f8f5f029
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -42,6 +42,8 @@ public class FeatureFlagUtils {
            "settings_global_actions_force_grid_enabled";
    public static final String GLOBAL_ACTIONS_PANEL_ENABLED =
            "settings_global_actions_panel_enabled";
    public static final String PIXEL_WALLPAPER_CATEGORY_SWITCH =
            "settings_pixel_wallpaper_category_switch";
    public static final String DYNAMIC_SYSTEM = "settings_dynamic_system";

    private static final Map<String, String> DEFAULT_FLAGS;
@@ -60,6 +62,7 @@ public class FeatureFlagUtils {
        DEFAULT_FLAGS.put(SCREENRECORD_LONG_PRESS, "false");
        DEFAULT_FLAGS.put(FORCE_GLOBAL_ACTIONS_GRID_ENABLED, "false");
        DEFAULT_FLAGS.put(GLOBAL_ACTIONS_PANEL_ENABLED, "true");
        DEFAULT_FLAGS.put(PIXEL_WALLPAPER_CATEGORY_SWITCH, "false");
        DEFAULT_FLAGS.put("settings_wifi_details_saved_screen", "true");
        DEFAULT_FLAGS.put("settings_wifi_details_datausage_header", "false");
    }