Android BLE BluetoothGattCallback Not Work
I want my ble service run in background even App is closed, that I can still read data. So I used 'startService' instead of 'bindService'. I initialize & connect ble, but I hav
Solution 1:
Your onCharacteristicRead() method is empty. You have to read the received amount of bytes in this method.
Post a Comment for "Android BLE BluetoothGattCallback Not Work"