I'm developing an app for iOS and Android using Xamarin where I need to use the user's location but the location permission isn't displaying on within the app settings.
I've added:
<key>NSLocationAlwaysUsageDescription</key>
<string>Description of usage</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Description of usage</string>
to my Info.plist file but it isn't showing the location settings in my app settings.
I've also added the permissions for Media Library and Camera and they're showing perfectly fine so I'm not sure why location is any different.
Per some advice online I've also tried re-installing the app and rebooting the device, but neither have changed what I'm seeing.
I'm testing this on iOS 12.3.1.
Thanks