diff options
author | Roshan Pius <rpius@google.com> | 2015-08-12 12:01:42 -0700 |
---|---|---|
committer | Roshan Pius <rpius@google.com> | 2015-08-12 21:04:26 +0000 |
commit | 9f81ce727c0e8f650f451cfe217c8dc1a7a45132 (patch) | |
tree | 6f29721e9a5e511685a0373ca651d7a7592b8c50 /telephony | |
parent | 86b6d204a5321bf2874c2cbee3452e674605c21f (diff) | |
download | frameworks_base-9f81ce727c0e8f650f451cfe217c8dc1a7a45132.zip frameworks_base-9f81ce727c0e8f650f451cfe217c8dc1a7a45132.tar.gz frameworks_base-9f81ce727c0e8f650f451cfe217c8dc1a7a45132.tar.bz2 |
Add a new carrier config for DTMF tone gap.
Adding a new carrier config key to specify the gap between the DTMF
tones sent out to the network.
BUG: 23064351
Change-Id: I3a0e20efecd62f533e796a40097f181d4c20d614
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/android/telephony/CarrierConfigManager.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index b5e4342..3054422 100644 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -342,6 +342,14 @@ public class CarrierConfigManager { "ci_action_on_sys_update_extra_val_string"; /** + * Specifies the amount of gap to be added in millis between DTMF tones. When a non-zero value + * is specified, the UE shall wait for the specified amount of time before it sends out + * successive DTMF tones on the network. + * @hide + */ + public static final String KEY_IMS_DTMF_TONE_DELAY_INT = "ims_dtmf_tone_delay_int"; + + /** * If this is true, the SIM card (through Customer Service Profile EF file) will be able to * prevent manual operator selection. If false, this SIM setting will be ignored and manual * operator selection will always be available. See CPHS4_2.WW6, CPHS B.4.7.1 for more @@ -439,6 +447,7 @@ public class CarrierConfigManager { sDefaults.putStringArray(KEY_CDMA_ROAMING_NETWORKS_STRING_ARRAY, null); sDefaults.putStringArray(KEY_CDMA_NONROAMING_NETWORKS_STRING_ARRAY, null); sDefaults.putBoolean(KEY_FORCE_HOME_NETWORK_BOOL, false); + sDefaults.putInt(KEY_IMS_DTMF_TONE_DELAY_INT, 0); // MMS defaults sDefaults.putBoolean(KEY_MMS_ALIAS_ENABLED_BOOL, false); |