Location Permisison not showing

I'm working on an angular mobile app that runs in ios by using the ionic framework.

I want the "Always authorise access to location" option to appear in the settings. And just that. I don't care about the user notification, I just want to manually be able to set the geolocation to "always.

I've updated my Info.plist file with the following lines:

<key> NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Always allow Geolocation?</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Always allow Geolocation?</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Allow Geolocation?</string>

However, the option still does not appear in the settings.

Am I missing something?

For context: I am completely new to development for ios.

Location Permisison not showing
 
 
Q