react-native-background-location-update

1.1.0 • Public • Published

react-native-background-location-update

Getting started

$ npm install react-native-background-location-update --save

Mostly automatic installation

$ react-native link react-native-background-location-update

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-background-location-update and add RNBackgroundLocationUpdate.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNBackgroundLocationUpdate.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.dh.background.location.RNBackgroundLocationUpdatePackage; to the imports at the top of the file
  • Add new RNBackgroundLocationUpdatePackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-background-location-update'
    project(':react-native-background-location-update').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-background-location-update/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-background-location-update')
    

Usage

import RNBackgroundLocationUpdate from 'react-native-background-location-update';

const BackgroundLocationEvent = new NativeEventEmitter(NativeModules.RNBackgroundLocationUpdate)

//listen update location
BackgroundLocationEvent.addListener("didUpdateLocation", (location) => {
		console.log("===========================")
		console.log(location)
		console.log("===========================")
	  });

//Turn on location update
RNBackgroundLocationUpdate.startLocationTracking()
	
//Turn on location update
RNBackgroundLocationUpdate.stopLocationTracking()

background-location-update-v1

Readme

Keywords

Package Sidebar

Install

npm i react-native-background-location-update

Weekly Downloads

6

Version

1.1.0

License

none

Unpacked Size

48.4 kB

Total Files

23

Last publish

Collaborators

  • danghung2403