diff options
author | Mariusz Skamra <mariusz.skamra@codecoup.pl> | 2020-11-17 09:11:17 +0000 |
---|---|---|
committer | Jack He <siyuanh@google.com> | 2022-01-11 19:36:33 +0000 |
commit | 90bd65132b36a8d9225b5645e14d1f54083fa108 (patch) | |
tree | 30e3592857dcbd3d44e33d0ac6f29216554875b1 /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 2e710d49816b4c8c5b4daf1940c1769f0bc50376 (diff) |
gtbs: Add Generic Telephone Bearer Service support
Tag: #feature
Bug: 159786353
Bug: 213412267
Sponsor: jpawlowski@
Test: build
Change-Id: Iecd56b91ce59f6b014878691fe4c6fae826b73f9
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 e047e5d81a..d0f74e9857 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -240,12 +240,19 @@ public interface BluetoothProfile { int LE_AUDIO_BROADCAST = 26; /** + * @hide + * Telephone Bearer Service from Call Control Profile + * + */ + int LE_CALL_CONTROL = 27; + + /** * 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 = 26; + int MAX_PROFILE_ID = 27; /** * Default priority for devices that we try to auto-connect to and |