diff options
| author | 2014-11-26 11:56:53 -0800 | |
|---|---|---|
| committer | 2014-12-09 10:03:21 -0800 | |
| commit | b332eda5eb1ee698b1e90205ef6738bb47e601cd (patch) | |
| tree | d20f5264fc2e6f0aca515bfb9296d816ca25b1ea | |
| parent | 2cdac3bd53a1e8e8342a3cff9d53bb7c5b27b1c9 (diff) | |
Added configuration to determine whether VoLTE requires provisioning.
Bug: 18576107
Change-Id: I7e2e7f6549e3e1b94ad7aa4126b26fcb5dcd807b
| -rwxr-xr-x | core/res/res/values/config.xml | 3 | ||||
| -rwxr-xr-x | core/res/res/values/symbols.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index d0c612de33b3..6769c852017e 100755 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -1830,6 +1830,9 @@ provisioning, availability etc --> <bool name="config_carrier_volte_available">false</bool> + <!-- Flag specifying whether VoLTE availability is based on provisioning --> + <bool name="config_carrier_volte_provisioned">false</bool> + <!-- Flag specifying whether VT is available on device --> <bool name="config_device_vt_available">false</bool> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 9845096048da..4f2ed224d69d 100755 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -2079,6 +2079,7 @@ <java-symbol type="bool" name="imsServiceAllowTurnOff" /> <java-symbol type="bool" name="config_device_volte_available" /> <java-symbol type="bool" name="config_carrier_volte_available" /> + <java-symbol type="bool" name="config_carrier_volte_provisioned" /> <java-symbol type="bool" name="config_device_vt_available" /> <java-symbol type="bool" name="config_carrier_vt_available" /> <java-symbol type="bool" name="useImsAlwaysForEmergencyCall" /> |