Giter VIP home page Giter VIP logo

react-native-ble-plx's Introduction

react-native-ble-plx library logo

About this library

This is React Native Bluetooth Low Energy library wrapping Multiplatform Ble Adapter.

It supports:

It does NOT support:

  • bluetooth classic devices.
  • communicating between phones using BLE (Peripheral support)
  • bonding peripherals

Compatibility

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

Recent Changes

2.0.2

  • Updated MultiplatformBleAdapter to version 0.1.7.
  • Added support for BleMulator
  • Removed destroying of client upon catalystInstanceDestroy.
  • Updated CI to RN 0.63.3

All previous changes

Documentation & Support

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.

Contact us at Polidea.

Contact us at Gitter if you have any questions, feedback or want to help!

Configuration & Installation

Expo

  1. Make sure your Expo project is ejected (formerly: detached). You can read how to do it here and here. (only for expo)
  2. Follow steps for iOS/Android.
  1. npm install --save react-native-ble-plx
  2. npx react-native link react-native-ble-plx
  3. Open Xcode workspace located inside ios folder and 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.
  4. Update your ios/Podfile to contain (it may be already there):
    pod 'react-native-ble-plx', :path => '../node_modules/react-native-ble-plx'
    
  5. Enter ios folder and run pod update
  6. Add NSBluetoothAlwaysUsageDescription in info.plist file. (it is a requirement since iOS 13)
  7. 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.

Android (example setup)

  1. npm install --save react-native-ble-plx
  2. npx react-native link react-native-ble-plx
  3. In top level build.gradle make sure that min SDK version is at least 18:
buildscript {
    ext {
        ...
        minSdkVersion = 18
        ...
  1. In build.gradle make sure to add jitpack repository to known repositories:
allprojects {
    repositories {
      ...
      maven { url 'https://www.jitpack.io' }
    }
}
  1. 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"/>

    ...

Troubleshooting

Problems with Proguard

Add this to your app/proguard-rules.pro

-dontwarn com.polidea.reactnativeble.**

react-native-ble-plx's People

Contributors

barbiero avatar bartoszwilk avatar bitcrumb avatar bntnam avatar cierpliwy avatar corymsmith avatar dariuszseweryn avatar davidstritzl avatar guillane avatar jakublipinski avatar jerzykleszcz avatar jsphpl avatar konradrodzik avatar leo3linbeck avatar literator avatar lukefanning avatar lukerayman avatar mikolak avatar mmerickel avatar mutablestudio avatar pandabearcoder avatar patlux avatar piotrdubiel avatar pjpsoares avatar pouljohn1 avatar radko93 avatar shumih avatar stinodes avatar wouterh-dev avatar wung-s avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.