An Android library that solves a lot of Android's Bluetooth Low Energy problems.
Warning
This library is getting replaced by our new Kotlin BLE Library.
The new library offers the following improvements over this one:
- 100% Kotlin code
- Scanning for Bluetooth LE devices (scan results as
Flow
)- Support for Bluetooth LE advertising
- Support for mocking BLE devices (easy testing)
- All BLE operations use
suspend
modifier orFlow
sRead more on project's Readme file.
The library may be found on Maven Central repository. Add it to your project by adding the following dependency:
implementation 'no.nordicsemi.android:ble:2.7.2'
The last version not migrated to AndroidX is 2.0.5.
BLE library with Kotlin extension is available in:
implementation 'no.nordicsemi.android:ble-ktx:2.7.2'
To import the BLE library with set of parsers for common Bluetooth SIG characteristics, use:
implementation 'no.nordicsemi.android:ble-common:2.7.2'
For more information, read this.
An extension for easier integration with LiveData
is available after adding:
implementation 'no.nordicsemi.android:ble-livedata:2.7.2'
This extension adds ObservableBleManager
with state
and bondingState
properties, which
notify about connection and bond state using androidx.lifecycle.LiveData
.
Importing as a module
Clone this project and add it to your project:
-
In settings.gradle file add the following lines:
if (file('../Android-BLE-Library').exists()) { includeBuild('../Android-BLE-Library') }
-
Sync project and build it.
The library uses Java 1.18 features. If you're using Android Studio below Giraffe, make sure your build.gradle includes the following configuration:
compileOptions { sourceCompatibility JavaVersion.VERSION_1_17 targetCompatibility JavaVersion.VERSION_1_17 } // For Kotlin projects additionally: kotlinOptions { jvmTarget = "1.17" }
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
- GATT server (since version 2.2)
- Kotlin support (coroutines, Flow, ...) (since version 2.3)
Note: The library does not provide support for scanning for Bluetooth LE devices. Instead, we recommend using Android Scanner Compat Library which brings almost all recent features, introduced in Lollipop and later, to the older platforms.
See Releases for details. Below is short summary:
Version 2.7
- Library has been migrated to Java 17 due to minimum supported version in Android Studio Giraffe.
Version 2.6
getGattCallback()
method has been deprecated. Instead, simply move the inner methods to theBleManager
class. See this PR.- Support for server only implementation using
attachClientConnection(BluetoothDevice)
. Call it instead ofconnect(BluetoothDevice)
to use the device as server-only. - Data provider for read requests (server side) was added.
- Cancellation support for flows and suspended methods added to
:ble-kts
.
Version 2.4
- More
:ble-ktx
extensions..suspendForResponse()
and.suspendForValidResponse()
extension methods added to read and write requests..asResponseFlow()
and.asValidResponseFlow()
methods added toValueChangedCallback
..stateAsFlow()
and.bondingStateAsFlow()
inBleManager
now return the same flow when called multiple times.- Progress indications for split outgoing data and merged incoming data can be observed as
Flow
usingsplitWithProgressFlow(...)
andmergeWithProgressFlow(...)
.
- A new
then(...)
method added toValueChangedCallback
which will be called when the callback has been unregistered, or the device has invalidated services (i.e. it has disconnected). Useful to release resources. - A new option to remove a handler from each
Request
usingsetHandler(null)
, which will make the callbacks called immediately from the worker looper. - Option to filter logs by priority. By default only logs on
Log.INFO
or higher will now be logged. UsegetMinLogPriority()
to return a different value if needed. Logs with lower priority will not be produced at all, making the library less laggy (parsing incoming data to hex takes notable time). - Added support for Big Endian format types with the new
Data.FORMAT_xxx_BE
types. Also,FORMAT_xxx
have been deprecated in favor ofFORMAT_xxx_LE
. - All user callbacks (
before
,with
,then
,fail
, ...) are now wrapped intry-catch
blocks.
Version 2.3
-
:ble-ktx
module added with support for coroutines and Flow..suspend()
methods added inRequest
s.asFlow()
method added toValueChangedCallback
.- Connection and bonding state available as Flow.
- New helper methods to get a
BluetoothGattCharacteristic
with given required properties and instance id added toBluetoothGattService
.
-
JsonMerger
class added, which should help with use cases when a device sends a JSON file in multiple packets. -
:ble-livedata
migrated to Java with some API changes, as sealed classes are no longer available. -
Support for new
onServicesChanged()
callback, added in API 31 (Android 12). -
Option to cancel pending Bluetooth LE connection using
ConnectRequest.cancelPendingConnection()
.When using coroutines, use
.suspend()
method inRequest
, instead ofenqueue()
orawait()
.To register to notifications and indications (or incoming write requests for server) use
setNotificationCallback(characteristic) .merge(JsonMerger()) // Example of how to use JsonMerger, optional .asFlow()
Version 2.2
- GATT Server support. This includes setting up the local GATT server on the Android device, new
requests for server operations:
- wait for read,
- wait for write,
- send notification,
- send indication,
- set characteristic value,
- set descriptor value.
- New conditional requests:
- wait if,
- wait until.
- BLE operations are no longer called from the main thread.
- There's a new option to set a handler for invoking callbacks. A handler can also be set per-callback.
Version 2.2 breaks some API known from version 2.1.1. Check out migration guide.
See Usage for more details.
The Trivia game is an example demonstrating client and server.
Please refer to the examples/ble-gatt-client folder
for a project that illustrates the GATT
server provided as a foreground service. There's a simple UI with a text field to update
with the value of a characteristic that can be read and subscribed to. This characteristic also
demands encryption as an illustration of best-practice.
You can run this client on one device and a complimenting server on another (see the next section).
Note: This project is not maintained actively. It is provided as an example only and may not be migrated to latest version.
Starting from version 2.2 you may now define and use the GATT server in the BLE Library.
Please refer to the examples/ble-gatt-server folder
for a project that illustrates the GATT
server provided as a foreground service. There's a simple UI with a text field to update
the value of a characteristic that can be read and subscribed to. This characteristic also
demands encryption as an illustration of best-practice.
Note: This project is not maintained actively. It is provided as an example only and may not be migrated to latest version.
Find the simple example here Android nRF Blinky.
For an example how to use it from a ViewModel
or a Service
, check
nRF Toolbox.
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.
A migration guide is available here.