diff options
author | 2021-12-15 23:18:31 +0000 | |
---|---|---|
committer | 2021-12-15 23:18:31 +0000 | |
commit | 303aa3d8ac76fb11a21a11535fdef6cae76d7698 (patch) | |
tree | a54ff1139a9fb92974e72bc70f01ecdbebf2e94a | |
parent | eaa2a701cdbd28743d1276174c7ed50fc31b75ce (diff) | |
parent | 23005a10bcbd89b019a61e19c9eda12e347808ff (diff) |
Merge "New SIMINFO DB columns for phone number"
-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"; } } |