Advertise over Bluetooth Low Energy from Flutter. This plugin puts the device in peripheral mode, broadcasting the service UUIDs, manufacturer data and service data you give it so that nearby centrals can discover it. For the other direction, see flutter_ble_central.
| Platform | Minimum version | Notes |
|---|---|---|
| Android | API 21 | Full AdvertiseSettings support |
| iOS | 13.0 | Only serviceUuids and localName are broadcast |
| macOS | 10.15 | Only serviceUuids and localName are broadcast |
| Windows | Windows 10 | Can conflict with Nearby Sharing, see below |
Advertising is a broadcast to everything in range. Treat everything you put in an advertisement as public.
flutter pub add flutter_ble_peripheralThe plugin already contributes every permission it needs to your merged manifest:
BLUETOOTH and BLUETOOTH_ADMIN (both capped at API 30), the API 23–30 location
permissions, and BLUETOOTH_CONNECT, BLUETOOTH_ADVERTISE and BLUETOOTH_SCAN for
API 31+. BLUETOOTH_SCAN is declared with neverForLocation.
To drop or change one of them, override it in
android/app/src/main/AndroidManifest.xml:
<manifest xmlns:tools="http://schemas.android.com/tools">
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"
tools:node="remove" />
</manifest>Add a usage description to Info.plist, or the app is terminated the first time it
touches Bluetooth:
<key>NSBluetoothAlwaysUsageDescription</key>
<string>This app needs Bluetooth to advertise to nearby devices.</string>On macOS, also tick the Bluetooth entitlement in both
macos/Runner/Release.entitlements and macos/Runner/DebugProfile.entitlements:
<key>com.apple.security.device.bluetooth</key>
<true/>No manifest changes are needed. Windows requires the location permission for BLE, which
requestPermission() asks for.
Nearby Sharing can hold the Bluetooth resources that advertising needs, which surfaces as
a ResourceInUse failure. Use isNearbyShareEnabled() to detect it and
openNearbyShareSettings() to send the user to the right settings page.
FlutterBlePeripheral is a singleton, so calling the constructor anywhere gives you the
same instance.
import 'package:flutter_ble_peripheral/flutter_ble_peripheral.dart';
final peripheral = FlutterBlePeripheral();Every permission call returns a PeripheralBluetoothState, which covers both the
permission result and the state of the adapter.
if (!await peripheral.isSupported) return;
var state = await peripheral.hasPermission();
if (state != PeripheralBluetoothState.granted) {
state = await peripheral.requestPermission();
}
switch (state) {
case PeripheralBluetoothState.granted:
case PeripheralBluetoothState.ready:
break;
case PeripheralBluetoothState.turnedOff:
await peripheral.enableBluetooth(); // Android and Windows only
break;
case PeripheralBluetoothState.permanentlyDenied:
await peripheral.openAppSettings();
break;
default:
return;
}await peripheral.start(
advertiseData: AdvertiseDataCore(
serviceUuid: 'bf27730d-860a-4e09-889c-2d8b6a9e0fe7',
localName: 'My peripheral',
manufacturerId: 1234,
manufacturerData: Uint8List.fromList([1, 2, 3]),
),
);
// later
await peripheral.stop();start returns a PeripheralBluetoothState, so an advertisement that could not be
started because Bluetooth is off or unsupported is reported rather than thrown.
AdvertiseDataCore carries what more than one platform can advertise: the service
uuids, the local name, the manufacturer data and the TX power flag. Not every
platform carries all of them:
- Apple broadcasts only the service uuids and the local name, and limits the name to about 10 bytes.
- Android ignores
localName; useAndroidAdvertiseData.includeDeviceNameto broadcast the system name instead. - Windows carries only the manufacturer data and the service data. A legacy Windows advertisement refuses to start at all when it sets a local name or service uuids, so both are validated and then left off the air.
Anything a single platform supports lives on that platform's class, passed alongside the shared data and ignored on the others.
await peripheral.start(
advertiseData: const AdvertiseDataCore(localName: 'My peripheral'),
androidSettings: const AndroidAdvertiseSettings(
advertiseSettings: AdvertiseSettings(
advertiseMode: AdvertiseMode.advertiseModeLowLatency,
txPowerLevel: AdvertiseTxPower.advertiseTxPowerHigh,
connectable: true,
timeout: 400,
),
),
);| Class | Carries |
|---|---|
AndroidAdvertiseData |
Service data, the device name flag, a solicitation uuid |
AndroidAdvertiseSettings |
Advertise settings or set parameters, scan response and periodic data |
DarwinAdvertiseSettings |
Overflow and solicited service uuids |
WindowsAdvertiseSettings |
Advertise timeout, advertisement flags, extended advertising, preferred TX power |
AndroidAdvertiseData extends AdvertiseDataCore, so pass it as advertiseData when
you need the Android-only fields.
On Android 8.0 and above, passing AndroidAdvertiseSettings.advertiseSetParameters
switches to the extended advertising API instead of the legacy one.
Android and Windows each carry their own advertise timeout, because the rules differ:
AdvertiseSettings.timeout applies on Android's legacy path only, since an
advertising set is limited by AdvertiseSetParameters.duration instead, while
WindowsAdvertiseSettings.timeout applies either way, since a Windows publisher has
no per-set duration to end it. Apple has no equivalent.
Pass gattServer to serve a service alongside the advertisement. It holds a TX
characteristic the peripheral notifies on and an RX characteristic the central writes
to.
await peripheral.start(
advertiseData: const AdvertiseDataCore(
serviceUuid: 'bf27730d-860a-4e09-889c-2d8b6a9e0fe7',
),
gattServer: const GattServerSettings(),
);
peripheral.onDataReceived.listen((bytes) {
// A central wrote to the RX characteristic.
});
await peripheral.sendData(Uint8List.fromList([1, 2, 3]));The service uuid defaults to the advertised one. The characteristic uuids default to
the Nordic UART Service pair, exported as defaultTxCharacteristicUuid and
defaultRxCharacteristicUuid, so a central that knows that profile can talk to the
peripheral without being told them out of band. Pass your own to serve a different
layout. They are never derived from the service uuid, because a central caches the
GATT database between connections and a characteristic uuid that moves breaks the
link.
sendData only reaches a central that subscribed to TX, which is not the same as one
that merely connected. Watch onSubscriptionChanged, or check isSubscribed, to know
when it can deliver. Payloads are queued per central, so back-to-back calls arrive in
order rather than overwriting each other, and a central that reads TX gets the payload
sent last.
Not supported on Windows yet.
| Stream | Type | Description |
|---|---|---|
onPeripheralStateChanged |
PeripheralState |
Adapter and advertising state |
onMtuChanged |
int |
Negotiated MTU, after a central connects |
onSubscriptionChanged |
bool |
Whether a central is subscribed to TX |
onDataReceived |
Uint8List |
Bytes a central wrote to the RX characteristic |
| Member | Returns | Description |
|---|---|---|
start({advertiseData, ...}) |
PeripheralBluetoothState |
Starts advertising |
stop() |
PeripheralBluetoothState |
Stops advertising |
isSupported |
bool |
Whether BLE advertising is available on this device |
isAdvertising |
bool |
Whether an advertisement is running |
isConnected |
bool |
Whether a central is connected (Android and Apple) |
isSubscribed |
bool |
Whether a central subscribed to TX, so sendData can deliver |
sendData(Uint8List) |
void |
Notifies the subscribed centrals on the TX characteristic |
isBluetoothOn |
bool |
Whether the adapter is powered on |
hasPermission() |
PeripheralBluetoothState |
Current permission and adapter state |
requestPermission() |
PeripheralBluetoothState |
Prompts for the required permissions |
enableBluetooth({askUser}) |
bool |
Turns the adapter on (Android and Windows) |
openBluetoothSettings() |
void |
Opens the system Bluetooth settings |
openAppSettings() |
void |
Opens this app's settings page |
isNearbyShareEnabled() |
bool |
Windows only, false elsewhere |
openNearbyShareSettings() |
void |
Windows only, no-op elsewhere |
openLocationSettings() |
void |
Windows only, no-op elsewhere |
The example app covers permission handling, adapter state,
advertising with custom data and the GATT server. Run it with
cd example && flutter run.
It is the peripheral half of a pair. Run the flutter_ble_central example on a second device to connect to it and exchange bytes in both directions; see the example README.
Bug reports and pull requests are welcome. See CONTRIBUTING.md for the branch layout, commit conventions and release process.
BSD 3-Clause. See LICENSE.