diff options
author | Jakub Tyszkowski <jakub.tyszkowski@codecoup.pl> | 2021-03-01 13:02:25 +0000 |
---|---|---|
committer | Jakub Pawlowski <jpawlowski@google.com> | 2021-08-09 15:37:52 +0000 |
commit | bedd8317c4fc514eb9c3b061b3f5b9d3662d8bd6 (patch) | |
tree | 7a261754ff7565e60b0e3b863f1a9410d51b936d /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | ea7ccc2a888e1fc64dcb851d3dbfdf01acdef861 (diff) |
Bluetooth: Add Media Control Profile
Tag: #feature
Bug: 150670922
Sponsor: jpawlowski@
Test: compilation
Change-Id: Icabed06e6b1973ecee9cd1d6eeec80c6d2a9d72e
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index b76d6b8691..bea32abd06 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -222,12 +222,19 @@ public interface BluetoothProfile { int VOLUME_CONTROL = 23; /** + * @hide + * Media Control Profile server + * + */ + int MCP_SERVER = 24; + + /** * Max profile ID. This value should be updated whenever a new profile is added to match * the largest value assigned to a profile. * * @hide */ - int MAX_PROFILE_ID = 23; + int MAX_PROFILE_ID = 24; /** * Default priority for devices that we try to auto-connect to and |