Loading android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −1 Original line number Original line Diff line number Diff line Loading @@ -215,7 +215,8 @@ public class AdapterService extends Service { // Set profile priorities only for the profiles discovered on the remote device. // Set profile priorities only for the profiles discovered on the remote device. // This avoids needless auto-connect attempts to profiles non-existent on the remote device // This avoids needless auto-connect attempts to profiles non-existent on the remote device if ((hidService != null) && if ((hidService != null) && (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid)) && (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid) || BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hogp)) && (hidService.getPriority(device) == BluetoothProfile.PRIORITY_UNDEFINED)){ (hidService.getPriority(device) == BluetoothProfile.PRIORITY_UNDEFINED)){ hidService.setPriority(device,BluetoothProfile.PRIORITY_ON); hidService.setPriority(device,BluetoothProfile.PRIORITY_ON); } } Loading Loading
android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −1 Original line number Original line Diff line number Diff line Loading @@ -215,7 +215,8 @@ public class AdapterService extends Service { // Set profile priorities only for the profiles discovered on the remote device. // Set profile priorities only for the profiles discovered on the remote device. // This avoids needless auto-connect attempts to profiles non-existent on the remote device // This avoids needless auto-connect attempts to profiles non-existent on the remote device if ((hidService != null) && if ((hidService != null) && (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid)) && (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid) || BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hogp)) && (hidService.getPriority(device) == BluetoothProfile.PRIORITY_UNDEFINED)){ (hidService.getPriority(device) == BluetoothProfile.PRIORITY_UNDEFINED)){ hidService.setPriority(device,BluetoothProfile.PRIORITY_ON); hidService.setPriority(device,BluetoothProfile.PRIORITY_ON); } } Loading