Filter devices by UUID and then class.
The settings app has been updated to use UUIDs. When there is a filter type set for device picket UI, use the UUIDs first and then the class bits. Change-Id: Ifde5dbc3a1cf25babce4c686002315aa3933de59
This commit is contained in:
@@ -37,17 +37,17 @@ import java.util.Set;
|
||||
public abstract class LocalBluetoothProfileManager {
|
||||
private static final String TAG = "LocalBluetoothProfileManager";
|
||||
|
||||
private static final ParcelUuid[] HEADSET_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
/* package */ static final ParcelUuid[] HEADSET_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
BluetoothUuid.HSP,
|
||||
BluetoothUuid.Handsfree,
|
||||
};
|
||||
|
||||
private static final ParcelUuid[] A2DP_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
/* package */ static final ParcelUuid[] A2DP_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
BluetoothUuid.AudioSink,
|
||||
BluetoothUuid.AdvAudioDist,
|
||||
};
|
||||
|
||||
private static final ParcelUuid[] OPP_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
/* package */ static final ParcelUuid[] OPP_PROFILE_UUIDS = new ParcelUuid[] {
|
||||
BluetoothUuid.ObexObjectPush
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user