summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorJayachandran Chinnakkannu <jayachandranc@google.com>2021-02-18 20:55:44 +0800
committerCalvin Pan <calvinpan@google.com>2021-04-29 08:25:21 +0000
commit1fe2aa14c40cfe64d46f08099bbed4b64d139e64 (patch)
tree594f1f2e89c54fdeef3a6d1a51dc99d195b731c6 /core/java/android
parentd5eb6fb0effcd166248da0e014ccd5f1c31c3307 (diff)
Add new provisioning flag for VOIMS opt-in
Bug: 177009570 Test: By Manual 1. Call setProvisioningIntValue() and getProvisioningIntValue() 2. Enable/disable the value and dial a VoLTE call 2-1. Set value to 1 2-2. Dial a call 2-3. From ImsPhoneCallTracker and GsmCdmaPhone's log, VoLTE is registered and device is trying IMS PS call 2-4. Set value to 0 2-5. Dial a call 2-6. From ImsPhoneCallTracker and GsmCdmaPhone's log, VoLTE is unregistered and device is trying (non-IMS) CS call 3. atest Change-Id: I0b8af8fe6c9a34a56f9e2275df0a03ba093f439e Merged-In: I0b8af8fe6c9a34a56f9e2275df0a03ba093f439e
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/provider/Telephony.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java
index e6bea508b685..9c230d5cf079 100644
--- a/core/java/android/provider/Telephony.java
+++ b/core/java/android/provider/Telephony.java
@@ -5334,5 +5334,13 @@ public final class Telephony {
* @hide
*/
public static final String COLUMN_D2D_STATUS_SHARING = "d2d_sharing_status";
+
+ /**
+ * TelephonyProvider column name for VoIMS provisioning. Default is 0.
+ * <P>Type: INTEGER </P>
+ *
+ * @hide
+ */
+ public static final String COLUMN_VOIMS_OPT_IN_STATUS = "voims_opt_in_status";
}
}