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

Commit d0063aeb authored by pkanwar's avatar pkanwar
Browse files

Allow Carriers to specify Wifi Networks.

Bug: 31003437
Test: No test required.
Change-Id: I661f8fc9924e677b9ac08c70500bd175d30834fa
parent 9985ed8b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1097,6 +1097,11 @@ public class CarrierConfigManager {
     */
    public static final String KEY_PERSIST_LPP_MODE_BOOL = "persist_lpp_mode_bool";

    /**
     * Carrier specified WiFi networks.
     * @hide
     */
    public static final String KEY_CARRIER_WIFI_STRING_ARRAY = "carrier_wifi_string_array";

    /** The default value for every variable. */
    private final static PersistableBundle sDefaults;
@@ -1295,6 +1300,7 @@ public class CarrierConfigManager {
        sDefaults.putBoolean(KEY_EDITABLE_WFC_ROAMING_MODE_BOOL, false);
        sDefaults.putBoolean(KEY_STK_DISABLE_LAUNCH_BROWSER_BOOL, false);
        sDefaults.putBoolean(KEY_PERSIST_LPP_MODE_BOOL, false);
        sDefaults.putStringArray(KEY_CARRIER_WIFI_STRING_ARRAY, null);
    }

    /**