All Projects → scientifichackers → flutter-rx-ble

scientifichackers / flutter-rx-ble

Licence: LGPL-3.0 license
A Flutter BLE plugin, based on RxAndroidBle and RxBluetoothKit.

Programming Languages

dart
5743 projects
kotlin
9241 projects
swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Sponsor pub package

Flutter Rx BLE

A Flutter BLE plugin, based on the wonderful RxAndroidBle and RxBluetoothKit libraries.

Batteries included.

  • Acquire every permission and setting required for Bluetooth access, using a single method - RxBle.requestAccess().
  • No need to manually discover BLE services.
  • Automatically queues up GATT requests to avoid race conditions.

Installation

iOS

  1. Open iOS module in XCode
  2. Edit Info.plist
  3. Right click > Enable show Raw Keys/Values
  4. Add these entries
    • NSBluetoothAlwaysUsageDescription = Please enable location to continue.
    • NSLocationWhenInUseUsageDescription = Please enable location to continue.
    • NSBluetoothPeripheralUsageDescription = Please enable bluetooth to continue.

Or, you may add these entries maually using your editor of choice:

<dict>
    ...

    <key>NSBluetoothAlwaysUsageDescription</key>
    <string>Please enable location to continue.</string>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>Please enable location to continue.</string>
    <key>NSBluetoothPeripheralUsageDescription</key>
    <string>Please enable bluetooth to continue.</string>
</dict>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].