NordicSemiconductor / Android-DFU-Library

Device Firmware Update library and Android app
http://www.nordicsemi.com/dfu
BSD 3-Clause "New" or "Revised" License
763 stars 269 forks source link

BLE API migrated to Tiramisu #405

Closed philips77 closed 1 year ago

philips77 commented 1 year ago

Android 13 improved the Bluetooth LE API. To solve race conditions a new set of methods was added to split value from the BluetoothGattCharacteristic instance.

This PR migrates the library to the new API and solves related issues.

philips77 commented 1 year ago

The PR contained an issue. As characteristic.setValue(...) was never used, the characteristic.getValue() returned null causing a NPE. It will be fixed with a different PR soon.