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

Commit 241312e0 authored by Etan Cohen's avatar Etan Cohen
Browse files

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
parent bc53cb41
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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;
}