Skip to content

Commit

Permalink
Drop stale warning about Android background location updates (#1375)
Browse files Browse the repository at this point in the history
  • Loading branch information
emersion authored May 16, 2024
1 parent 4df6afd commit 1bf9103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geolocator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ On Android you'll need to add either the `ACCESS_COARSE_LOCATION` or the `ACCESS
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
```

Starting from Android 10 you need to add the `ACCESS_BACKGROUND_LOCATION` permission (next to the `ACCESS_COARSE_LOCATION` or the `ACCESS_FINE_LOCATION` permission) if you want to continue receiving updates even when your App is running in the background (note that the geolocator plugin doesn't support receiving and processing location updates while running in the background):
Starting from Android 10 you need to add the `ACCESS_BACKGROUND_LOCATION` permission (next to the `ACCESS_COARSE_LOCATION` or the `ACCESS_FINE_LOCATION` permission) if you want to continue receiving updates even when your App is running in the background:

``` xml
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
Expand Down

0 comments on commit 1bf9103

Please sign in to comment.