diff options
| -rw-r--r-- | core/java/android/provider/CallLog.java | 11 | ||||
| -rw-r--r-- | core/java/android/provider/ContactsContract.java | 16 |
2 files changed, 27 insertions, 0 deletions
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java index d52632b98542..bf051f58a286 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -88,6 +88,17 @@ public class CallLog { public static final String NUMBER = "number"; /** + * The ISO 3166-1 two letters country code of the country where the + * user received or made the call. + * <P> + * Type: TEXT + * </P> + * + * @hide + */ + public static final String COUNTRY_ISO = "countryiso"; + + /** * The date the call occured, in milliseconds since the epoch * <P>Type: INTEGER (long)</P> */ diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index b87e0ec0116d..9f9a4d462e2e 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -3301,6 +3301,14 @@ public final class ContactsContract { * <P>Type: TEXT</P> */ public static final String LABEL = "label"; + + /** + * The phone number's E164 representation. + * <P>Type: TEXT</P> + * + * @hide + */ + public static final String NORMALIZED_NUMBER = "normalized_number"; } /** @@ -4153,6 +4161,14 @@ public final class ContactsContract { public static final String NUMBER = DATA; /** + * The phone number's E164 representation. + * <P>Type: TEXT</P> + * + * @hide + */ + public static final String NORMALIZED_NUMBER = DATA4; + + /** * @deprecated use {@link #getTypeLabel(Resources, int, CharSequence)} instead. * @hide */ |