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

Commit d2d35453 authored by Jordan Liu's avatar Jordan Liu Committed by android-build-merger
Browse files

Merge "Make it possible to hide signal strength via Carrier Config" am: febd1802 am: 516b41e5

am: 1470313b

Change-Id: Ice7debdbe8caabb0fa1b530a9318f92c25b483af
parents 2f919ef8 1470313b
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -734,6 +734,14 @@ public class CarrierConfigManager {
     */
    public static final String KEY_SHOW_ICCID_IN_SIM_STATUS_BOOL = "show_iccid_in_sim_status_bool";

    /**
     * Flag specifying whether signal strength is hidden in SIM Status screen,
     * default to false.
     * @hide
     */
    public static final String KEY_HIDE_SIGNAL_STRENGTH_IN_SIM_STATUS_BOOL =
        "hide_signal_strength_in_sim_status_bool";

    /**
     * Flag specifying whether an additional (client initiated) intent needs to be sent on System
     * update
@@ -1774,6 +1782,7 @@ public class CarrierConfigManager {
        sDefaults.putString(KEY_CARRIER_VVM_PACKAGE_NAME_STRING, "");
        sDefaults.putStringArray(KEY_CARRIER_VVM_PACKAGE_NAME_STRING_ARRAY, null);
        sDefaults.putBoolean(KEY_SHOW_ICCID_IN_SIM_STATUS_BOOL, false);
        sDefaults.putBoolean(KEY_HIDE_SIGNAL_STRENGTH_IN_SIM_STATUS_BOOL, false);
        sDefaults.putBoolean(KEY_CI_ACTION_ON_SYS_UPDATE_BOOL, false);
        sDefaults.putString(KEY_CI_ACTION_ON_SYS_UPDATE_INTENT_STRING, "");
        sDefaults.putString(KEY_CI_ACTION_ON_SYS_UPDATE_EXTRA_STRING, "");