diff options
author | Etan Cohen <etancohen@google.com> | 2014-08-02 01:13:24 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2014-08-02 14:46:16 -0700 |
commit | 241312e07bbe1d345d99618f9a1a8e7884e5bd5e (patch) | |
tree | 27a933d36b6cb737c6b9cdcd8f5d2c2a6c6d1b8a /telephony | |
parent | bc53cb41f44adf8440761796a0ef4a4aea6ef7ff (diff) | |
download | frameworks_base-241312e07bbe1d345d99618f9a1a8e7884e5bd5e.zip frameworks_base-241312e07bbe1d345d99618f9a1a8e7884e5bd5e.tar.gz frameworks_base-241312e07bbe1d345d99618f9a1a8e7884e5bd5e.tar.bz2 |
Added debug system property to enable/disable IMS VoLTE/VT.
If property is 0: IMS VoLTE is disabled.
If property is 1 then IMS is used as normal: i.e. expected to
be provisioned, registered etc.
Action on missing property defined by constant.
Change-Id: Ibdbb21fa7db30a4088b74092dd6256da012cd697
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyProperties.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/TelephonyProperties.java b/telephony/java/com/android/internal/telephony/TelephonyProperties.java index 5ec4247..41b6b76 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyProperties.java +++ b/telephony/java/com/android/internal/telephony/TelephonyProperties.java @@ -209,4 +209,14 @@ public interface TelephonyProperties * Set to the sim count. */ static final String PROPERTY_SIM_COUNT = "ro.telephony.sim.count"; + + /** + * Enable VoLTE/VT over IMS: debug option + * If 1: use IMS if provisioned/registered etc (i.e. standard operation) + * If 0: use CS. + * If missing: use PROPERTY_DBG_IMS_VOLTE_ENABLE_DEAFULT + */ + static final String PROPERTY_DBG_IMS_VOLTE_ENABLE = "persist.dbg.ims_volte_enable"; + + static final int PROPERTY_DBG_IMS_VOLTE_ENABLE_DEAFULT = 0; } |