diff options
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
| -rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index 0cf9f9fd6f..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 @@ -436,6 +443,8 @@ public interface BluetoothProfile { return "OPP"; case HEARING_AID: return "HEARING_AID"; + case LE_AUDIO: + return "LE_AUDIO"; default: return "UNKNOWN_PROFILE"; } |
