diff options
author | 2021-10-19 11:32:42 -0700 | |
---|---|---|
committer | 2021-12-13 21:15:43 +0000 | |
commit | 23005a10bcbd89b019a61e19c9eda12e347808ff (patch) | |
tree | 3a8669f276a90cb0cd54212366fa90030bbe09d5 | |
parent | 6a8b9f396480d555dd5470a9025666597b4d6935 (diff) |
New SIMINFO DB columns for phone number
Bug: 193539271
Test: make
Change-Id: I3c152147ebbb73cd8318323e82853ec4e0c88e38
Merged-In: I3c152147ebbb73cd8318323e82853ec4e0c88e38
(cherry picked from commit 50b1bab0d73ea685a7eca10e20c739b93535273a)
-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 9f3a847e12eb..0adc00e56bf1 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"; } } |