diff options
| author | TreeHugger Robot <treehugger-gerrit@google.com> | 2021-11-11 23:38:25 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-11-11 23:38:25 +0000 |
| commit | 339b59a2eed09697c3cd086287120c7d05787c2d (patch) | |
| tree | a7f578b342cb16a92cd852c7e4f8a2e0c2ab71cc /core/java/android | |
| parent | 994199991b2f26f8a2b591924e58b9fc8ef52aae (diff) | |
| parent | 50b1bab0d73ea685a7eca10e20c739b93535273a (diff) | |
Merge "New SIMINFO DB columns for phone number"
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/Telephony.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index aa1bbc58669a..1b38f590edd6 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -5374,5 +5374,21 @@ public final class Telephony { */ public static final String COLUMN_NR_ADVANCED_CALLING_ENABLED = "nr_advanced_calling_enabled"; + + /** + * TelephonyProvider column name for the phone number from source CARRIER + * + * @hide + */ + public static final String COLUMN_PHONE_NUMBER_SOURCE_CARRIER = + "phone_number_source_carrier"; + + /** + * TelephonyProvider column name for the phone number from source IMS + * + * @hide + */ + public static final String COLUMN_PHONE_NUMBER_SOURCE_IMS = + "phone_number_source_ims"; } } |
