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

Commit c7a49f05 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Removign 'final' modifiers from FeatureFlags so that then can be overridden

Change-Id: I07265eaeed883301787eb0ffd838f516d7c63d26
parent d42903b4
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ package com.android.launcher3.config;
/**
 * Defines a set of flags used to control various launcher behaviors
 * All the flags must be defined as
 *   public static final boolean LAUNCHER3_FLAG_NAME = true/false;
 *   public static boolean LAUNCHER3_FLAG_NAME = true/false;
 *
 * Use LAUNCHER3_ prefix for prevent namespace conflicts.
 */
@@ -27,11 +27,11 @@ public final class FeatureFlags {

    private FeatureFlags() {}

    public static final boolean IS_DEV_BUILD = false;
    public static final boolean IS_ALPHA_BUILD = false;
    public static final boolean IS_RELEASE_BUILD = true;
    public static boolean IS_DEV_BUILD = false;
    public static boolean IS_ALPHA_BUILD = false;
    public static boolean IS_RELEASE_BUILD = true;

    // Custom flags go below this
    public static final boolean LAUNCHER3_ICON_NORMALIZATION = false;
    public static boolean LAUNCHER3_ICON_NORMALIZATION = false;

}