Fork of React Native Bluetooth Low Energy library (cccd + getBondedDevices)
npm install react-native-ble-plx-ccc
This is a fork of react-native-ble-plx to fix two issues on Android:

This is React Native Bluetooth Low Energy library using RxBluetoothKit and RxAndroidBle under the hood.
It supports:
* observing device's Bluetooth adapter state
* scanning BLE devices
* making connections to peripherals
* discovering services/characteristics
* reading/writing characteristics
* observing characteristic notifications/indications
* reading RSSI
* negotiating MTU
What this library does NOT support:
* turning the device's Bluetooth adapter on
* communicating between phones using BLE (Peripheral support)
* bonding peripherals
0.10.0
Breaking changes:
* Deprecate old build system. Carthage is not required anymore. To fix your current project please do following steps:
1. Add empty Swift file if you don't have at least one:
* Select File/New/File...
* Choose Swift file and click Next.
* Name it however you want, select your targets and create it.
* Accept to create Objective-C bridging header.
2. Remove copy-frameworks script if you don't have any other dependency requiring it:
* Go to Your Target / Build Phases
* Remove run script.
Other:
* Fix warning when no listeners were attached and events were emitted.
* Show error.message properly. Make sure that invalid errorCodes from implementation side won't trigger another error during construction.
* Property ServiceUUID is properly propagated to IncludedServicesDiscoveryFailed's error message.
* Add missing deviceServicesNotDiscovered implementation on Android.
Interested in React Native project involving Bluetooth Low Energy? We can help you!
Documentation can be found here.
Contact us at Gitter if you have any questions, feedback or want to help!
1. npm install --save react-native-ble-plx
2. react-native link react-native-ble-plx
3. Add empty Swift file if you don't have at least one:
* Select File/New/File...
* Choose Swift file and click Next.
* Name it however you want, select your targets and create it.
* Accept to create Objective-C bridging header.
4. Minimal supported version of iOS is 8.0
5. If you want to support background mode:
* In your application target go to Capabilities tab and enable Uses Bluetooth LE Accessories in
Background Modes section.
* Pass restoreStateIdentifier and restoreStateFunction to BleManager constructor.
1. Make sure your Expo project is detached. You can read how to do it here and here.
2. npm install --save react-native-ble-plx
3. react-native link react-native-ble-plx
4. Add empty Swift file if you don't have at least one:
* Select File/New/File...
* Choose Swift file and click Next.
* Name it however you want, select your application target and create it.
* Accept to create Objective-C bridging header.
5. Update your ios/Podfile to contain:
```
pod 'react-native-ble-plx', :path => '../node_modules/react-native-ble-plx'
pod 'react-native-ble-plx-swift', :path => '../node_modules/react-native-ble-plx'
ios
6. Enter folder and run pod updateCapabilities
7. Minimal supported version of iOS is 8.0
8. If you want to support background mode:
* In your application target go to tab and enable Uses Bluetooth LE Accessories inBackground Modes
section.restoreStateIdentifier
* Pass and restoreStateFunction to BleManager constructor.
1. npm install --save react-native-ble-plxreact-native link react-native-ble-plx
2. build.gradle
3. In of app module make sure that min SDK version is at least 18:
`groovy`
android {
...
defaultConfig {
minSdkVersion 18
...
4. In AndroidManifest.xml, add Bluetooth permissions and update :
`xml
...
`
Add this to your app/proguard-rules.pro
```
-dontwarn com.polidea.reactnativeble.**