Skip to content

doniyor2109/react-native-location-mode-android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
});

About

Provides information about location mode for android

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published