## Issue
When the location permission is set to
"Ask every time"
,
expo-location
returns a **
denied
** status.
However, the permission is not actually denied. Android is configured to prompt the user each time the app requests location access, so reporting it as
denied
is misleading.
Expected behavior:
When the permission is set to
"Ask every time"
,
expo-location
should return a status that reflects this state (or otherwise indicate that the permission can still be requested), instead of
denied
.
### Steps to reproduce
  1. Install an app using
    expo-location
    .
  2. Grant the location permission once.
  3. Open the Android app settings and change the location permission to
    "Ask every time"
    .
  4. Reopen the app.
  5. Call
    Location.getForegroundPermissionsAsync()
    .
Current behavior:
The returned permission status is
denied
.
Expected behavior:
The status should not be
denied
, since the permission is configured to prompt the user on each request.