* commit '33a95f93ca4856032eef804cfe97a798c6df6748': Add Carrier Presence to CP2: Phone
This commit is contained in:
@@ -25587,6 +25587,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";
|
||||
|
||||
@@ -27513,6 +27513,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";
|
||||
|
||||
@@ -4076,6 +4076,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;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -8272,7 +8287,7 @@ public final class ContactsContract {
|
||||
/**
|
||||
* Constructs a QuickContacts intent based on an incoming intent for DevicePolicyManager
|
||||
* to strip off anything not necessary.
|
||||
*
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static Intent rebuildManagedQuickContactsIntent(String lookupKey, long contactId,
|
||||
|
||||
Reference in New Issue
Block a user