-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.xml
30 lines (30 loc) · 1.79 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="103001" id="com.ponup.numbers" version="1.3.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Numbers</name>
<description>A simple math game. Are you fast doing simple arithmetic operations? Prove it!</description>
<author email="[email protected]" href="http://ponup.com/numbers.html">Ponup Games</author>
<preference name="Fullscreen" value="false" />
<preference name="Orientation" value="portrait" />
<preference name="DisallowOverscroll" value="true" />
<preference name="SplashScreenDelay" value="10000" />
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<preference name="android-manifest/@android:installLocation" value="auto" />
<preference name="permissions" value="none" />
<content src="index.html" />
<access origin="*" />
<splash src="res/splash-screen.png" />
<icon src="res/android/mipmap-xxhdpi/ic_launcher.png" />
<platform name="android">
<hook src="hooks/remove-permissions.js" type="after_prepare" />
<icon density="mdpi" src="res/android/mipmap-mdpi/ic_launcher.png" />
<icon density="hdpi" src="res/android/mipmap-hdpi/ic_launcher.png" />
<icon density="xhdpi" src="res/android/mipmap-xhdpi/ic_launcher.png" />
<icon density="xxhdpi" src="res/android/mipmap-xxhdpi/ic_launcher.png" />
<icon density="xxxhdpi" src="res/android/mipmap-xxxhdpi/ic_launcher.png" />
</platform>
<engine name="browser" spec="^5.0.4" />
<plugin name="cordova-plugin-x-socialsharing" spec="^5.4.1" />
<plugin name="cordova-plugin-media" spec="^2.4.1" />
<plugin name="cordova-plugin-device" spec="^1.1.7" />
<plugin name="cordova-custom-config" spec="^2.0.3" />
</widget>