React Native Ble Plx Versions Save

React Native BLE library

1.0.2

5 years ago
  • Fix build error due to RN 58 changes.
  • Allow registering for notifications and indications on Android despite CCC descriptor being absent.

1.0.1

5 years ago
  • Fix possible ConcurrentModificationException in Android BleModule.
  • Workaround for when canSendWriteWithoutResponse would return false on iOS.
  • Fixed low severity vulnerabilities reported by npm in development dependencies.

1.0.0

5 years ago

Breaking changes

  • Moved to Gradle plugin 3.1.4 and Gradle wrapper to 4.4 (RN 57+ required) on Android.

Other:

  • Added requestConnectionPriority function which increases or decreases connection interval setting on Android Lollipop devices or above.
  • Added connectionPriority option to connection options which calls above function just after the connection is established.
  • Added scanMode and callbackType properties to scan options for Android.
  • Added enable and disable functions to enable/disable Bluetooth on Android.
  • Added optional transactionId argument to discoverAllServicesAndCharacteristicsForDevice.
  • Added errorCodesToMessagesMapping property to BleManagerOptions to be able to override custom BleError messages.
  • Updated cancelDeviceConnection documentation.
  • Don't call CBCentralManager's stopScan, when Bluetooth is powered off in internal implementation on iOS.
  • Clean iOS compiler warnings on XCode10.
  • Changed scan record logging from Debug to Verbose on iOS.
  • Updated writeWithoutResponse implementation on iOS to use canSendWriteWithoutResponse if available starting from iOS 11.
  • Updated library's development dependencies.
  • Fixed cyclic import warnings.
  • Fixed notification/indication subscription moment. Events are monitored before CCC is written on Android.

0.10.0

5 years ago

Breaking changes:

  • Deprecated 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.

v0.9.1

5 years ago
  • Updated binary frameworks for XCode 9.4.

v0.9.0

6 years ago

0.9.0

Breaking changes:

  • Use error.errorCode == BleErrorCode.OperationCancelled instead of error.message == 'Cancelled'
  • Use error.errorCode == BleErrorCode.BluetoothManagerDestroyed instead of error.message == 'Destroyed'
  • Reverted implementation of monitorCharacteristicForDevice to properly write to descriptor when last listener is unsubscribed on Android. If you expect to get new notifications as soon as you subscribe for them please use version 0.8 for the time being, as regression is expected.

Other:

  • All API calls return BleError instance in case of errors which contains additional fields:
    • errorCode - returns API independent and stable error code (defined in BleErrorCode).
    • attErrorCode (optional) - platform independent ATT error code.
    • iosErrorCode (optional) - iOS specific error code.
    • androidErrorCode (optional) - Android specific error code.
    • reason (optional) - platform specific message.
  • Updated BleModuleInterface type to fix flow errors related to usage.
  • Added refreshGatt option to connectToDevice function.
  • Parse short localName advertisement data type on Android.
  • Don't emit state changes when BLE is not supported.
  • Added devices and connectedDevices functions.
  • Fixed iOS issue related to requiresMainQueueSetup.
  • Added timeout option to connectToDevice.

Docs:

  • Updated dev dependencies to the latest ones.
  • Added Expo section to README file.
  • Added About this library section to README file.
  • Updated Wiki pages

v0.8.0

6 years ago
  • Fix regression of Base64 encoding on Android platform. When large chunk of Base64 data was sent from Android it contained new lines characters.
  • Updated RxAndroidBle to version 1.4.3.
  • Fixed colissions in Characteristic and Service id generation on Android. The collisions had place if multiple devices with the same characteristic/service UUIDs were connected at the same time.
  • Fixed dropped notifications right after setup on Android. Before there was small window when notification was monitored and listener for it wasn't mounted.
  • Minor documentation updates.

v0.7.0

6 years ago

Breaking changes:

  • Migrate to Swift 4 (now requires XCode 9 or higher)
  • Fixed spelling mistake characteristic.isIndictable is now characteristic.isIndicatable.

Other:

  • Fixed potential memory leaks in iOS native module.
  • Fixed an issue when successive scans could stop emitting scanned devices.
  • Removed bash dependency in postinstall script.
  • Use --cache-builds option only when specific version of carthage is available.
  • Remove --no-build option to be able to reuse prepackages frameworks.
  • Added option to disable building dynamic frameworks with carthage by setting option in your app's package.json:
    ...
    "react-native-ble-plx": {
      "carthage": false
    }
    ...
    

v0.6.5

6 years ago
  • Fixed Null Pointer Exception when called cancelDeviceConnection on Android.
  • Updated gradle version to be able to use latest Android Studio.
  • Added Nullable and Nonnull annotations to Android implementation.

v0.6.4

6 years ago
  • Fail explicitly when carthage fails on postinstall.
  • Added mtu property for Device object which allows you to get current BLE MTU of device.
  • Added function requestMTUForDevice which allows to negotiate BLE MTU of device if it is possible.