Location Permission not showing up in standalone app.

Please provide the following:

  1. SDK Version: 44.0.0
  2. Platforms(Android/iOS/web/all): iOS
  3. Add the appropriate “Tag” based on what Expo library you have a question on.
    expo-location

I’m running a development client, rather than expo-go because I have some native code I needed to use. I’m using eas build to build the development client. The relevant parts of my app.json are:

"ios": {
   "infoPlist": {
     "NSLocationWhenInUseUsageDescription": "removed for brevety..."
   }
},
"android": {
  "permissions": ["ACCESS_COARSE_LOCATION", "ACCESS_FINE_LOCATION"]
},

When I run requestForegroundPermissionAsync(), it always comes back denied, and there is no setting to toggle in the app-specific settings, nor in the location settings on iOS.

Not really sure where to go from here. Any help would be much appreciated!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.