diff options
| author | Qasim Javed <qasimj@google.com> | 2021-11-04 12:57:33 -0700 |
|---|---|---|
| committer | Qasim Javed <qasimj@google.com> | 2021-12-05 19:45:08 -0800 |
| commit | 6a7bc39edf790b034f0cc5bd9568d28173b771dc (patch) | |
| tree | 009dcdf85dce7d77d3e8069d895da714695db7ad /core/java/android/bluetooth/BluetoothProfile.java | |
| parent | 8e054179ea5e30ab688c28127da2470ddf72d2b2 (diff) | |
Add BluetoothLeBroadcast profile API.
Implementation for the APIs will be added later.
Bug: 205174140
Bug: 208222281
Tag: #feature
Test: gd/cert/run
Change-Id: I8781be89cba45a6e7a76fec7df24790a9f02d6a6
Diffstat (limited to 'core/java/android/bluetooth/BluetoothProfile.java')
| -rw-r--r-- | core/java/android/bluetooth/BluetoothProfile.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/java/android/bluetooth/BluetoothProfile.java b/core/java/android/bluetooth/BluetoothProfile.java index 0cf9f9fd6f43..7f96958a618e 100644 --- a/core/java/android/bluetooth/BluetoothProfile.java +++ b/core/java/android/bluetooth/BluetoothProfile.java @@ -233,12 +233,19 @@ public interface BluetoothProfile { int CSIP_SET_COORDINATOR = 25; /** + * LE Audio Broadcast Source + * + * @hide + */ + int LE_AUDIO_BROADCAST = 26; + + /** * 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 = 25; + int MAX_PROFILE_ID = 26; /** * Default priority for devices that we try to auto-connect to and |
