Android BluetoothGatt - status 133 - register callback

前端 未结 6 692
庸人自扰
庸人自扰 2021-01-30 08:56

First of all I read SOLVED: GATT callback fails to register and took the steps suggested in that post to solve this issue with no success. The recommended fix in there if you ha

6条回答
  •  执念已碎
    2021-01-30 09:15

    Android OS < 6.0:

    mBluetoothDevice.connectGatt(context, false, callback);
    

    Android OS >= 6.0:

    mBluetoothDevice.connectGatt(context, false, callback, BluetoothDevice.TRANSPORT_LE);
    

    Ultimately, hardware equipment is needed to completely solve this problem.

提交回复
热议问题