I am using a geolocation plugin and my app is rejected on the apple store
I am using phonegap build to compile
Your app declares support for audio in the UIBackgroundModes key in your Info.plist but did not include features that require persistent audio.
I have added
<config-file platform="ios" target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>location</string>
</array>
</config-file>
and removed it but the rejection is still the same !
My plugins are
<gap:plugin name="cordova-plugin-request-location-accuracy" source="npm"/>
<gap:plugin name="cordova-plugin-geolocation" source="npm"/>
<feature name="Geolocation">
<param name="ios-package" value="CDVLocation" />
</feature>