Pebble: Specify Transport as LE when connecting via BLE

This commit is contained in:
Benjamin Temple
2026-06-02 11:29:48 -07:00
parent 1b04588176
commit a7f512356c
@@ -249,7 +249,7 @@ class PebbleGATTClient extends BluetoothGattCallback implements PairingCallback
if (mBluetoothGatt != null) {
this.close();
}
mBluetoothGatt = btDevice.connectGatt(mContext, false, this);
mBluetoothGatt = btDevice.connectGatt(mContext, false, this, BluetoothDevice.TRANSPORT_LE);
}
private void subscribeToConnectivity(BluetoothGatt gatt) {