![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-native-cross-geolocation
Advanced tools
React Native Geolocation complatible module that uses the new Google Location API on Android devices.
React Native Geolocation complatible module that uses the new Google Play services location API on Android devices.
If this library has helped you, please support my work with a star or buy me a coffee.
This module was tested with React Native 0.59.0, but it should work smoothly with apps that use Gradle 4.6 or later.
* For previous Gradle versions use react-native-cross-geolocation v1.0.6 or bellow.
yarn add react-native-cross-geolocation
react-native link react-native-cross-geolocation
From v1.1.0, react-native-cross-geolocation supports the global variable playServicesLocationVersion
to specify the version of 'com.google.android.gms:play-services-location' to use. It defaults to 16.0.0
This section only applies to projects made with react-native init
or to those made with Create React Native App which have since ejected. For more information about ejecting, please see the guide on the Create React Native App repository.
You need to include the NSLocationWhenInUseUsageDescription key in Info.plist to enable geolocation when using the app. Geolocation is enabled by default when you create a project with react-native init.
In order to enable geolocation in the background, you need to include the 'NSLocationAlwaysUsageDescription' key in Info.plist and add location as a background mode in the 'Capabilities' tab in Xcode.
To request access to location, add the following line to your app's AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Android API >= 18 Positions will also contain a mocked
boolean to indicate if position was created from a mock provider.
Android API >= 23 Permissions are handled automatically.
setRNConfiguration()
Geolocation.setRNConfiguration(config);
Sets configuration options that will be used in all location requests.
Parameters:
NAME | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
config | object | Yes | See below. |
Supported options:
skipPermissionRequests
(boolean, iOS-only) - Defaults to false
. If true
, you must request permissions before using Geolocation APIs.lowAccuracyMode
(number, Android-only) - Defaults to LowAccuracyMode.BALANCED.fastestInterval
(number, Android-only) - Defaults to 10000 (10 secs).updateInterval
(number, Android-only) - Defaults to 5000 (5 secs).requestAuthorization()
Geolocation.requestAuthorization();
Request suitable Location permission based on the key configured on pList. If NSLocationAlwaysUsageDescription is set, it will request Always authorization, although if NSLocationWhenInUseUsageDescription is set, it will request InUse authorization.
getCurrentPosition()
Geolocation.getCurrentPosition(geo_success, [geo_error], [geo_options]);
Invokes the success callback once with the latest location info.
Parameters:
NAME | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
geo_success | function | Yes | Invoked with latest location info. |
geo_error | function | No | Invoked whenever an error is encountered. |
geo_options | object | No | See below. |
Supported options:
timeout
(ms) - Defaults to MAX_VALUEmaximumAge
(ms) - Defaults to INFINITY.enableHighAccuracy
(bool) - On Android, if the location is cached this can return almost immediately, or it will request an update which might take a while.watchPosition()
Geolocation.watchPosition(success, [error], [options]);
Invokes the success callback whenever the location changes. Returns a watchId
(number).
Parameters:
NAME | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
success | function | Yes | Invoked whenever the location changes. |
error | function | No | Invoked whenever an error is encountered. |
options | object | No | See below. |
Supported options:
timeout
(ms) - Defaults to MAX_VALUE.maximumAge
(ms) - Defaults to INFINITY.enableHighAccuracy
(bool) - Defaults to false
.distanceFilter
(m) - Defaults to 100.useSignificantChanges
(bool) (unused in Android).clearWatch()
Geolocation.clearWatch(watchID);
Parameters:
NAME | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
watchID | number | Yes | Id as returned by watchPosition() . |
stopObserving()
Geolocation.stopObserving();
Stops observing for device location changes. In addition, it removes all listeners previously registered.
Notice that this method has only effect if the geolocation.watchPosition(successCallback, errorCallback)
method was previously invoked.
rnCrossGeolocation exports a LowAccuracyMode
object with values to be used in the lowAccuracyMode
property of the parameter sent to setRNConfiguration
:
NAME | DETAILS |
---|---|
LowAccuracyMode.BALANCED (102) This is the default mode. | Request location precision to within a city block, which is an accuracy of approximately 100 meters. This is considered a coarse level of accuracy, and is likely to consume less power. With this setting, the location services are likely to use WiFi and cell tower positioning. Note, however, that the choice of location provider depends on many other factors, such as which sources are available. |
LowAccuracyMode.LOW_POWER (104) | Request city-level precision, which is an accuracy of approximately 10 Km. This is considered a coarse level of accuracy, and is likely to consume less power. |
LowAccuracyMode.NO_POWER (105) | Use this if you need negligible impact on power consumption, but want to receive location updates when available. With this setting, your app does not trigger any location updates, but receives locations triggered by other apps. |
NOTE: These constants are only for Android, on iOS they are undefined.
I'm a full-stack developer with more than 20 year of experience and I try to share most of my work for free and help others, but this takes a significant amount of time and effort so, if you like my work, please consider...
Of course, feedback, PRs, and stars are also welcome 🙃
Thanks for your support!
[1.1.0] - 2018-03-27
FAQs
React Native Geolocation complatible module that uses the new Google Location API on Android devices.
The npm package react-native-cross-geolocation receives a total of 5 weekly downloads. As such, react-native-cross-geolocation popularity was classified as not popular.
We found that react-native-cross-geolocation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.