react-native-background-location-update
v1.1.0
Published
## Getting started
Downloads
4
Readme
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
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-background-location-update
and addRNBackgroundLocationUpdate.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNBackgroundLocationUpdate.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- 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 thegetPackages()
method
- 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')
- 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()