From 241312e07bbe1d345d99618f9a1a8e7884e5bd5e Mon Sep 17 00:00:00 2001 From: Etan Cohen Date: Sat, 2 Aug 2014 01:13:24 -0700 Subject: 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 --- .../com/android/internal/telephony/TelephonyProperties.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'telephony') 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; } -- cgit v1.1