3.0.10 • Published 6 months ago

@lovemh9395/react-native-ibeacon-simulator v3.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

React Native Module that broadcasts an iBeacon uuid.

Setup

npm install --save @lovemh9395/react-native-ibeacon-simulator

Please don't try to use react-native link at your RN 0.60.X project

Setup Android

Add project to android/settings.gradle:

rootProject.name = 'MyApp'

include ':@lovemh9395_react-native-ibeacon-simulator'
project(':@lovemh9395_react-native-ibeacon-simulator').projectDir = new File(rootProject.projectDir, '../node_modules/@lovemh9395/react-native-ibeacon-simulator/android')

include ':app'

Add in MainApplication.java:

package com.myapp;

import com.ibeacon.simulator.BeaconBroadcastPackage;

Setup iOS

Add in your Podfile

pod 'BeaconBroadcast', :path => '../node_modules/@lovemh9395/react-native-ibeacon-simulator'

Then run pod install

Usage

Import in your project:

`import BeaconBroadcast from '@lovemh9395/react-native-ibeacon-simulator'`

API

Start iBeacon on device:

uuid: String

You can get from here http://openuuid.net/

identifier: String

minor and major:

are integer values between 0 and 65535.

Start Broadcasting iBeacon:

BeaconBroadcast.startAdvertisingBeaconWithString(uuid, identifier, major, minor)

Stop Broadcasting iBeacon:

BeaconBroadcast.stopAdvertisingBeacon()

iOS

BeaconBroadcast.stopAdvertisingBeacon()
BeaconBroadcast.startAdvertisingBeaconWithString(uuid, identifier, major, minor)

Android

BeaconBroadcast.checkTransmissionSupported()
.then(() => {
  BeaconBroadcast.stopAdvertisingBeacon()
  BeaconBroadcast.startAdvertisingBeaconWithString(uuid, identifier, major, minor)
})
.catch((e) => {
  /* handle return errors */
  - NOT_SUPPORTED_MIN_SDK
  - NOT_SUPPORTED_BLE
  - DEPRECATED_NOT_SUPPORTED_MULTIPLE_ADVERTISEMENTS
  - NOT_SUPPORTED_CANNOT_GET_ADVERTISER
  - NOT_SUPPORTED_CANNOT_GET_ADVERTISER_MULTIPLE_ADVERTISEMENTS
})

Contributors

Features WIP

  • Create beacon
  • Allow peripherals to connect to beacon
  • Read/write characteristics to beacon
  • Read/write characteristics to central

TODO

  • Create a types file for the class
3.0.10

6 months ago

3.0.9

6 months ago

3.0.8

6 months ago

3.0.7

6 months ago

3.0.6

6 months ago

3.0.5

6 months ago

3.0.4

6 months ago

3.0.3

6 months ago

3.0.2

6 months ago

3.0.1

6 months ago

3.0.0

6 months ago