This is React Native Bluetooth Low Energy library wrapping Multiplatform Ble Adapter.
It supports:
It does NOT support:
This version (2.x) breaks compatibility with old RN versions. Please check old README (1.x) for the old instructions or migration guide.
React Native | 2.0.0 |
---|---|
0.63.3 | ✅ |
0.62.2 | ✅ |
0.61.5 | ✅ |
0.60.6 | ✅ |
2.0.2
Interested in React Native project involving Bluetooth Low Energy? We can help you!
Learn more about Polidea's React Native services.
Learn more about Polidea's BLE services.
Documentation can be found here.
Quick introduction can be found here
Contact us at Polidea.
Contact us at Gitter if you have any questions, feedback or want to help!
npm install --save react-native-ble-plx
ios
folder and run pod update
NSBluetoothAlwaysUsageDescription
in info.plist
file. (it is a requirement since iOS 13)Capabilities
tab and enable Uses Bluetooth LE Accessories
in
Background Modes
section.restoreStateIdentifier
and restoreStateFunction
to BleManager
constructor.npm install --save react-native-ble-plx
In top level build.gradle
make sure that min SDK version is at least 18:
buildscript {
ext {
...
minSdkVersion = 18
...
In build.gradle
make sure to add jitpack repository to known repositories:
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
(Optional) In AndroidManifest.xml
, add Bluetooth permissions and update <uses-sdk/>
:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!-- Add this line if your application always requires BLE. More info can be found on:
https://developer.android.com/guide/topics/connectivity/bluetooth-le.html#permissions
-->
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>
...
Add this to your app/proguard-rules.pro
-dontwarn com.polidea.reactnativeble.**
Version | Tag | Published |
---|---|---|
2.0.3 | latest | 6mos ago |