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

Commit 060f5611 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Format incoming call numbers with the national format for Japan" am:...

Merge "Format incoming call numbers with the national format for Japan" am: 1b637fe1 am: a1a9acbe am: 74637f01

Change-Id: I4785593049635d84ef231405cc532b925f2eb784
parents 973397fa 74637f01
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -3554,6 +3554,15 @@ public class CarrierConfigManager {
    public static final String KEY_CARRIER_CERTIFICATE_STRING_ARRAY =
            "carrier_certificate_string_array";

    /**
     * Flag specifying whether the incoming call number should be formatted to national number
     * for Japan. @return {@code true} convert to the national format, {@code false} otherwise.
     * e.g. "+819012345678" -> "09012345678"
     * @hide
     */
    public static final String KEY_FORMAT_INCOMING_NUMBER_TO_NATIONAL_FOR_JP_BOOL =
            "format_incoming_number_to_national_for_jp_bool";

    /**
     * DisconnectCause array to play busy tone. Value should be array of
     * {@link android.telephony.DisconnectCause}.
@@ -4100,6 +4109,7 @@ public class CarrierConfigManager {
        sDefaults.putBoolean(KEY_SUPPORT_WPS_OVER_IMS_BOOL, true);
        sDefaults.putAll(Ims.getDefaults());
        sDefaults.putStringArray(KEY_CARRIER_CERTIFICATE_STRING_ARRAY, null);
         sDefaults.putBoolean(KEY_FORMAT_INCOMING_NUMBER_TO_NATIONAL_FOR_JP_BOOL, false);
        sDefaults.putIntArray(KEY_DISCONNECT_CAUSE_PLAY_BUSYTONE_INT_ARRAY,
                new int[] {4 /* BUSY */});
        sDefaults.putBoolean(KEY_PREVENT_CLIR_ACTIVATION_AND_DEACTIVATION_CODE_BOOL, false);