I got rejected when I upload my application to iOS because of Per our 5.1.5 guideline. I use the NSLocationAlwaysUsageDescription
feature, have always been using it and didn't have any problems when I uploaded previous versions until iOS 10. Do i just need to put the below in my config.xml
file and is that the correct syntax for it?
<config-file parent="NSLocationAlwaysUsageDescription " platform="ios" target="*-Info.plist">
<string>This application requires location services to work.</string>
</config-file>
<config-file parent="NSLocationWhenInUseUsageDescription" platform="ios" target="*-Info.plist">
<string>This application requires location services to work.</string>
</config-file>
</platform>