diff options
| author | 2019-05-24 12:08:24 -0700 | |
|---|---|---|
| committer | 2019-05-24 12:08:24 -0700 | |
| commit | b441d2575a5f42ee129a2b51e07e93c51a6df8af (patch) | |
| tree | 01e50bde71d6178b705de99db0f11133742ce19d | |
| parent | 66c4dc07573dc5c70cd5f348cf5586290e0e899c (diff) | |
| parent | 9dd24d05e90dee863d8c3d95265133e5f3756f6f (diff) | |
Merge "Add timestamp and read status extra constants to MAP Client"
am: 9dd24d05e9
Change-Id: I5a1e75de9369fa05f0974523c97e093622b330c6
| -rw-r--r-- | core/java/android/bluetooth/BluetoothMapClient.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/bluetooth/BluetoothMapClient.java b/core/java/android/bluetooth/BluetoothMapClient.java index ec0180c5adde..69682c6ab5d0 100644 --- a/core/java/android/bluetooth/BluetoothMapClient.java +++ b/core/java/android/bluetooth/BluetoothMapClient.java @@ -53,6 +53,10 @@ public final class BluetoothMapClient implements BluetoothProfile { * NOTE: HANDLE is only valid for a single session with the device. */ public static final String EXTRA_MESSAGE_HANDLE = "android.bluetooth.mapmce.profile.extra.MESSAGE_HANDLE"; + public static final String EXTRA_MESSAGE_TIMESTAMP = + "android.bluetooth.mapmce.profile.extra.MESSAGE_TIMESTAMP"; + public static final String EXTRA_MESSAGE_READ_STATUS = + "android.bluetooth.mapmce.profile.extra.MESSAGE_READ_STATUS"; public static final String EXTRA_SENDER_CONTACT_URI = "android.bluetooth.mapmce.profile.extra.SENDER_CONTACT_URI"; public static final String EXTRA_SENDER_CONTACT_NAME = |