Android-BLE-Library icon indicating copy to clipboard operation
Android-BLE-Library copied to clipboard

A library that makes working with Bluetooth LE on Android a pleasure. Seriously.

Results 67 Android-BLE-Library issues
Sort by recently updated
recently updated
newest added

https://github.com/NordicSemiconductor/Android-BLE-Library/tree/master/examples/ble-gatt-server I have found a memory leak in that example app. The leak is because there is no `unregisterReceiver` function in GattService.kt file. Thank you.

bug
example

hi,I am using writeCharacteristic to write a value to my BLE device(a light) but when I try to control the light with high frequency, the light cannot catch up with...

Starting from the example code in the readme I am able to get notifications by changing the `initialize()` method to ```kotlin override fun initialize() { requestMtu(517).enqueue() setNotificationCallback(realTimeDataC).with { device, data...

question

An IoT device controller library uses this library to communicate with device. After I send the settings, the device resets itself, disconnects and triggers the onConnectionStateChange callback method. Inside, there's...

bug

How to dynamically modify whether to connect automatically? Such as: sometimes automatic connection is required, sometimes not.

Hello, I'm working on a device and an application who use this library (2.1.1 version). I'm trying to recover interval connection parameter but I didn't find how. With the nrf...

Hi: How to set current time service with GATT server? When I use setCharacteristicValue to periodically set the time, I can't get a more precise time. Thanks! Sam

enhancement

After disabling bluetooth on the phone, the `BleManager.isReady` of my connected peripheral still returns true (I tested at least 2 minutes after disabling BT), however the `isConnected` correctly returns false....

bug

Our app needs to connect with a single bluetooth peripheral with the following characteristics: - we do not use bonding or pairing (we have our own encryption scheme to secure...

question