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

Commit 466503d0 authored by Etan Cohen's avatar Etan Cohen Committed by Android (Google) Code Review
Browse files

Merge "Add Carrier Presence to CP2: Phone" into mnc-dev

parents f14c40f9 534a65d3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -25585,6 +25585,8 @@ package android.provider {
  }
  protected static abstract interface ContactsContract.DataColumns {
    field public static final java.lang.String CARRIER_PRESENCE = "carrier_presence";
    field public static final int CARRIER_PRESENCE_VT_CAPABLE = 1; // 0x1
    field public static final java.lang.String DATA1 = "data1";
    field public static final java.lang.String DATA10 = "data10";
    field public static final java.lang.String DATA11 = "data11";
+2 −0
Original line number Diff line number Diff line
@@ -27511,6 +27511,8 @@ package android.provider {
  }
  protected static abstract interface ContactsContract.DataColumns {
    field public static final java.lang.String CARRIER_PRESENCE = "carrier_presence";
    field public static final int CARRIER_PRESENCE_VT_CAPABLE = 1; // 0x1
    field public static final java.lang.String DATA1 = "data1";
    field public static final java.lang.String DATA10 = "data10";
    field public static final java.lang.String DATA11 = "data11";
+16 −1
Original line number Diff line number Diff line
@@ -4069,6 +4069,21 @@ public final class ContactsContract {
        public static final String SYNC3 = "data_sync3";
        /** Generic column for use by sync adapters. */
        public static final String SYNC4 = "data_sync4";

        /**
         * Carrier presence information.
         * <P>
         * Type: INTEGER (A bitmask of CARRIER_PRESENCE_* fields)
         * </P>
         */
        public static final String CARRIER_PRESENCE = "carrier_presence";

        /**
         * Bitmask flags for CARRIER_PRESENCE column. Each value represents
         * a bit (or a set of bits) which may be set independently of each
         * other.
         */
        public static final int CARRIER_PRESENCE_VT_CAPABLE = 0x01;
    }

    /**