Hi,
I have 2 rejected games on the app store because they have a geolocation alert, although my games don't use it.
I didn't choose the geolocation service when exporting from construct 2 with the cordova plug.in, so I guess that phonegap is adding this permission alert.
Any way to get rid of the geolocation alert?
This is my config.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.xxxx.xxxxx" version="1.0">
<name>xxxxx</name>
<description>xxxxx</description>
<author href="xxxxx" email="xxxx">xxxx</author>
<icon src="icon.png" gap:platform="ios" width="57" height="57" />
<icon src="icon-128.png" width="128" height="128" />
<icon src="icon-256.png" width="256" height="256" gap:role="default" />
<icon src="icon-57.png" gap:platform="ios" width="57" height="57" />
<icon src="icon-120.png" gap:platform="ios" width="120" height="120" />
<icon src="icon-152.png" gap:platform="ios" width="152" height="152" />
<icon src="icon-114.png" gap:platform="ios" width="114" height="114" />
<icon src="icon-76.png" gap:platform="ios" width="76" height="76" />
<preference name="permissions" value="none"/>
<preference name="android-targetSdkVersion" value="21" />
<feature name="http://api.phonegap.com/1.0/network"/>
<preference name="orientation" value="landscape" />
<preference name="fullscreen" value="true" />
<gap:config-file platform="ios" parent="UIStatusBarHidden"><true/></gap:config-file>
<gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance"><false/></gap:config-file>
<preference name="deployment-target" value="8.0" />
<preference name="android-minSdkVersion" value="14" />
<preference name="target-device" value="universal" />
<!-- Optional splash screen image, e.g.: -->
<!-- <gap:splash src="splash.png" width="1024" height="768" /> -->
</widget>[/code:37rshztc]