Location Services Not Working in iOS 11

Location Services not working in iOS 11

find the Info.plist file and insert these lines to it:

1
2
3
4
5
6
<key>NSLocationWhenInUseUsageDescription</key>
<string>Do you allow this app to know your current location?</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Do you allow this app to know your current location?</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Do you allow this app to know your current location?</string>

and rebuild ionic project.