An Android library that solves a lot of Android's Bluetooth Low Energy problems. The BleManager class exposes high level API for connecting and communicating with Bluetooth LE peripherals. The API is clean and easy to read.
BleManager class provides the following features:
- Connection, with automatic retries
- Service discovery
- Bonding (optional) and removing bond information (using reflections)
- Automatic handling of Service Changed indications
- Device initialization
- Asynchronous and synchronous BLE operations using queue
- Splitting and merging long packets when writing and reading characteristics and descriptors
- Requesting MTU and connection priority (on Android Lollipop or newer)
- Reading and setting preferred PHY (on Android Oreo or newer)
- Reading RSSI
- Refreshing device cache (using reflections)
- Reliable Write support
- Operation timeouts (for connect, disconnect and wait for notification requests)
- Error handling
- Logging
The library does not provide support for scanning for Bluetooth LE devices. For scanning, we recommend using Android Scanner Compat Library which brings almost all recent features, introduced in Lollipop and later, to the older platforms.
The library may be found on jcenter and Maven Central repository. Add it to your project by adding the following dependency:
implementation 'no.nordicsemi.android:ble:2.1.1'
The last version not migrated to AndroidX is 2.0.5.
Clone this project and add ble module as a dependency to your project:
- In settings.gradle file add the following lines:
include ':ble'
project(':ble').projectDir = file('../Android-BLE-Library/ble')
- In app/build.gradle file add
implementation project(':ble')
inside dependencies. - Sync project and build it.
BleManager
may be used for a single connection
(see nRF Toolbox -> RSC profile)
or when multiple connections are required (see nRF Toolbox -> Proximity profile),
from a Service (see nRF Toolbox -> RSC profile), ViewModel's repo
(see Architecture Components
and nRF Blinky),
or as a singleton (not recommended, see nRF Toolbox -> HRM).
A single BleManager
instance is responsible for connecting and communicating with a single peripheral.
Multiple manager instances are allowed. Extend BleManager
with you manager where you define the
high level device's API.
- BLE operation methods (i.e.
writeCharacteristic(...)
, etc.) return theRequest
class now, instead of boolean. onLinklossOccur
callback has been renamed toonLinkLossOccurred
.- GATT callbacks (for example:
onCharacteristicRead
,onCharacteristicNotified
, etc.) insideBleManagerGattCallback
has been deprecated. UseRequest
callbacks instead. - Build-in Battery Level support has been deprecated. Request Battery Level as any other value.
- A new callbacks method:
onBondingFailed
has been added toBleManagerCallbacks
. shouldAutoConnect()
has ben deprecated, useuseAutoConnect(boolean)
inConnectRequest
instead.- Timeout is supported for connect, disconnect and wait for notification/indication.
Most BLE operations do not support setting timeout, as receiving the
BluetoothGattCallback
is required in order to perform the next operation. - Atomic
RequestQueue
andReliableWriteRequest
are supported. - BLE Library 2.0 uses Java 8. There's no good reason for this except to push the ecosystem to having this be a default. As of AGP 3.2 there is no reason not to do this (via butterknife).
- Replace
initGatt(BluetoothGatt)
withinitialize()
:
Old code:
@Override
protected Deque<Request> initGatt(final BluetoothGatt gatt) {
final LinkedList<Request> requests = new LinkedList<>();
requests.add(Request.newEnableNotificationsRequest(characteristic));
return requests;
}
New code:
@Override
protected void initialize() {
setNotificationCallback(characteristic)
.with(new DataReceivedCallback() {
@Override
public void onDataReceived(@NonNull final BluetoothDevice device, @NonNull final Data data) {
...
}
});
enableNotifications(characteristic)
.enqueue();
}
See changes in Android nRF Toolbox and Android nRF Blinky for more examples.
Remember to call .enqueue()
method for initialization requests!
Connect's completion callback is called after the initialization is done (without or with errors).
- Move your callback implementation from
BleManagerGattCallback
to request callbacks. - To split logic from parsing, we recommend to extend
DataReceivedCallback
interface in a class where your parse your data, and return higher-level values. For a sample, check out nRF Toolbox and Android BLE Common Library. If you are depending on a SIG adopted profile, like Heart Rate Monitor, Proximity, etc., feel free to include the BLE Common Library in your project. It has all the parsers implemented. If your profile isn't there, we are happy to accept PRs. connect()
anddisconnect()
methods also require calling.enqueue()
in asynchronous use.- Replace the
shouldAutoConnect()
method in the manager withconnect(device).useAutConnect(true).enqueue()/await()
.
The new version is compatible with nRF Toolbox and BLE Common Library. The latter one is a set of useful parsers and callbacks for common Bluetooth SIG adopted profiles.
The libraries are available on jcenter, but if you need to make some changes, clone all 3 projects, ensure the path to :ble and :ble-common modules are correct in settings.gradle file, and sync the project.
Find the simple example here Android nRF Blinky.
For an example how to use it from an Activity or a Service, check the base Activity and Service classes in nRF Toolbox.
- Define your device API by extending
BleManagerCallbacks
: example - Extend
BleManager
class and implement required methods: example
The BLE library v 1.x is no longer supported. Please migrate to 2.x for bug fixing releases. Find it on version/1x branch.