Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db919155 authored by Daniel Lehmann's avatar Daniel Lehmann
Browse files

Expose NORMALIZED_NUMBER in the API

Bug:6126736
Change-Id: If9dc84150c58d3968de9c6e4f1e54dab6b611dd7
parent e70583e6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -16567,6 +16567,7 @@ package android.provider {
    field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/phone_v2";
    field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/phone_v2";
    field public static final android.net.Uri CONTENT_URI;
    field public static final java.lang.String NORMALIZED_NUMBER = "data4";
    field public static final java.lang.String NUMBER = "data1";
    field public static final int TYPE_ASSISTANT = 19; // 0x13
    field public static final int TYPE_CALLBACK = 8; // 0x8
@@ -16927,6 +16928,7 @@ package android.provider {
  protected static abstract interface ContactsContract.PhoneLookupColumns {
    field public static final java.lang.String LABEL = "label";
    field public static final java.lang.String NORMALIZED_NUMBER = "normalized_number";
    field public static final java.lang.String NUMBER = "number";
    field public static final java.lang.String TYPE = "type";
  }
+3 −5
Original line number Diff line number Diff line
@@ -4531,8 +4531,6 @@ public final class ContactsContract {
        /**
         * The phone number's E164 representation.
         * <P>Type: TEXT</P>
         *
         * @hide
         */
        public static final String NORMALIZED_NUMBER = "normalized_number";
    }
@@ -5408,10 +5406,10 @@ public final class ContactsContract {
            public static final String NUMBER = DATA;

            /**
             * The phone number's E164 representation.
             * The phone number's E164 representation. This value can be omitted in which
             * case the provider will try to automatically infer it. If present, {@link #NUMBER}
             * has to be set as well (it will be ignored otherwise).
             * <P>Type: TEXT</P>
             *
             * @hide
             */
            public static final String NORMALIZED_NUMBER = DATA4;