Please provide the following:
- SDK Version: 44.0.0
- Platforms(Android/iOS/web/all): iOS
- 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!