react-native-geolocation icon indicating copy to clipboard operation
react-native-geolocation copied to clipboard

Geolocation APIs for React Native

Results 189 react-native-geolocation issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `@react-native-community/[email protected]` for the project I'm working on. We see some NullPointerExceptions caused by...

# Fix Deprecated Space-Assignment Syntax in Gradle Build Script ## **Problem** Gradle 8.x introduced a deprecation warning for space-assignment syntax in `build.gradle` files. The following usage is now deprecated and...

Could not resolve all dependencies for configuration ':react-native-community_geolocation:classpath'.

I have a quick question regarding `@react-native-community/geolocation` and its functionality on Android. We've recently migrated from `react-native-geolocation-service` to `@react-native-community/geolocation`, but we noticed that the `getCurrentPosition` function is missing a key...

question

## Environment Windows 10 ## Platforms android using expo ## Versions "react-native-get-location": "^5.0.0", - react-native: 0.77.0 - react: ## Description [TypeError: Cannot read property 'getCurrentPosition' of null]. it raises an...

bug

## Environment "react-native": "0.73.9", "@react-native-community/geolocation": "^3.4.0", "react": "18.2.0", "react-native-background-actions": "^4.0.1", const updateLocation = async () => { // webSocketService.connect(); const deviceId = await getAndroidId(); const gpsInterval = store.getState().appInfo.appInfoRelatedState.interval; console.log(gpsInterval, 'gps');...

bug

I created this simple implementation, but when airplane mode is on it doesn't get the location, if I turn it off it normally gets it again. This same situation also...

question

async ConfirmLocation(type) { this.setState({ selectedImageBase4: '', avatarSource: '', remarksNote: '', }); Geolocation.getCurrentPosition( async (position) => { const { latitude, longitude, accuracy } = position.coords; this.setState({ newLatLong: position }); if (this.state.flag...

question

# Overview Hi, First, thank you for this project. I figured since we are adding support for visionOS, now might be a good time to add support for tvOS as...