Group CSIP device based on CAP
Enable device group based on CAP for testing, the uuid value would be changed after the specification published. Bug: 150670922 Bug: 178981521 Test: pair with the LE audio coordinated set, and make sure it works Change-Id: Ia3d0dbe496dec822fee8ae6465b81688b9e9440c
This commit is contained in:
@@ -189,7 +189,7 @@ public final class BluetoothUuid {
|
||||
@NonNull
|
||||
@SystemApi
|
||||
public static final ParcelUuid CAP =
|
||||
ParcelUuid.fromString("EEEEEEEE-EEEE-EEEE-EEEE-EEEEEEEEEEEE");
|
||||
ParcelUuid.fromString("00008FE0-0000-1000-8000-00805F9B34FB");
|
||||
/** @hide */
|
||||
@NonNull
|
||||
@SystemApi
|
||||
|
||||
@@ -68,7 +68,7 @@ public class CsipDeviceManager {
|
||||
}
|
||||
|
||||
for (Map.Entry<Integer, ParcelUuid> entry: groupIdMap.entrySet()) {
|
||||
if (entry.getValue().equals(BluetoothUuid.BASE_UUID)) {
|
||||
if (entry.getValue().equals(BluetoothUuid.CAP)) {
|
||||
return entry.getKey();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -338,7 +338,7 @@ public class LocalBluetoothProfileManager {
|
||||
.getGroupUuidMapByDevice(cachedDevice.getDevice());
|
||||
if (groupIdMap != null) {
|
||||
for (Map.Entry<Integer, ParcelUuid> entry: groupIdMap.entrySet()) {
|
||||
if (entry.getValue().equals(BluetoothUuid.BASE_UUID)) {
|
||||
if (entry.getValue().equals(BluetoothUuid.CAP)) {
|
||||
cachedDevice.setGroupId(entry.getKey());
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user