1.0.4-beta.3 • Published 6 years ago

@dzek69/react-native-indoor-manager v1.0.4-beta.3

Weekly downloads
1
License
BSD-3-Clause
Repository
github
Last release
6 years ago

react-native-indoor-manager

Getting started

$ npm install react-native-indoor-manager --save

Mostly automatic installation

$ react-native link react-native-indoor-manager

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-indoor-manager and add RNIndoorManager.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNIndoorManager.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNIndoorManagerPackage; to the imports at the top of the file
  • Add new RNIndoorManagerPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-indoor-manager'
    project(':react-native-indoor-manager').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-indoor-manager/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-indoor-manager')

Usage

import { NativeEventEmitter } from 'react-native';
import IndoorManager from 'react-native-indoor-manager';

// Create a React Native NativeEventEmitter
const indoorEventEmitter = new NativeEventEmitter(IndoorManager);
// Add listener
indoorEventEmitter.addListener('locationChanged', location => {
	// do things
});
// init Indoor Atlas service
IndoorManager.initService(API_KEY, API_SECRET);