0.2.2 • Published 6 years ago

react-native-location-mode-android v0.2.2

Weekly downloads
53
License
-
Repository
github
Last release
6 years ago

react-native-location-mode-android

Provides information about location mode for android

Install

Download package

npm install react-native-location-mode-android --save

Link plugin files

react-native link react-native-location-mode-android

Usage

Get phone's location mode

import LocationMode from 'react-native-location-mode-android';

LocationMode.getMode().then((mode) => {
  console.log(mode); // -> can be one of LOCATION_OFF, HIGH_ACCURACY, DEVICE_ONLY, BATTERY_SAVE
});

Check specific mode

import LocationMode from 'react-native-location-mode-android';

LocationMode.isHighAccuracy().then((result) => {
  console.log(result); // -> boolean
});