diff options
| author | Jack Yu <jackyu@google.com> | 2020-11-17 19:48:31 -0800 |
|---|---|---|
| committer | Jack Yu <jackyu@google.com> | 2020-11-17 19:48:31 -0800 |
| commit | ea9050793cd093f4cc779ffd3ffbfc2eb9192b9a (patch) | |
| tree | b653c004fcf27d4d9b670d9a7362b4687bccf111 /core/java/android | |
| parent | 687b78b81deaf363862c70ffbb0661efa1f792e8 (diff) | |
Added cross sim calling settings support
Added a telephony provider entry for storing the
user's settings.
Fix: 173250681
Test: Manual
Change-Id: I081c7e5fcc98f51a97c41a0a9a2b9b628c8d0415
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/Telephony.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index 649c8f353196..83cab0a0d3de 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -5169,6 +5169,14 @@ public final class Telephony { public static final String COLUMN_IMS_RCS_UCE_ENABLED = "ims_rcs_uce_enabled"; /** + * TelephonyProvider column name for determining if the user has enabled cross SIM calling + * for this subscription. + * + * @hide + */ + public static final String COLUMN_CROSS_SIM_CALLING_ENABLED = "cross_sim_calling_enabled"; + + /** * TelephonyProvider column name for whether a subscription is opportunistic, that is, * whether the network it connects to is limited in functionality or coverage. * For example, CBRS. |
