In iOS 11 onwards we follow these instructions from Apple:
You are required to include the NSLocationWhenInUseUsageDescription and NSLocationAlwaysAndWhenInUsageDescription keys in your app's Info.plist file. (If your app supports iOS 10 and earlier, the NSLocationAlwaysUsageDescription key is also required.) If those keys are not present, authorization requests fail immediately.
This shows both "Always" and "When in Use" options when the user is prompted to enable location tracking.
However we'd like to show just the "Always" option. Is this possible?