diff options
author | Qasim Javed <qasimj@google.com> | 2021-12-06 17:27:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-12-06 17:27:31 +0000 |
commit | b058b49d87cb700aa2d0c2038b6ebfe914441b36 (patch) | |
tree | 26116c8f080c044ddeda6ddd074ba06689f67ced /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 1d98292cc588c1f6be39c713b2a51b452e526538 (diff) | |
parent | 2eb043e7e5273b0f8e70c00c71361a17d97262ee (diff) |
Merge "Add BluetoothLeBroadcast profile API."
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 4f2dba75ba..e047e5d81a 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/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 |