-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
30 lines (30 loc) · 1.7 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="9007" id="com.ponup.salmon" version="0.9.7" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Salmon</name>
<description>Salmon is an arcade game which features a fish and lot of obstacles.</description>
<author email="[email protected]" href="http://ponup.com">Ponup Games</author>
<preference name="Fullscreen" value="false" />
<preference name="Orientation" value="portrait" />
<preference name="SplashScreenDelay" value="2000" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-manifest/@android:installLocation" value="auto" />
<content src="index.html" />
<access origin="*" />
<splash src="res/splash-screen.png" />
<icon src="res/mipmap-xxhdpi/ic_launcher.png" />
<platform name="android">
<hook src="hooks/remove-permissions.js" type="after_prepare" />
<icon density="mdpi" src="res/mipmap-mdpi/ic_launcher.png" />
<icon density="hdpi" src="res/mipmap-hdpi/ic_launcher.png" />
<icon density="xhdpi" src="res/mipmap-xhdpi/ic_launcher.png" />
<icon density="xxhdpi" src="res/mipmap-xxhdpi/ic_launcher.png" />
<icon density="xxxhdpi" src="res/mipmap-xxxhdpi/ic_launcher.png" />
</platform>
<plugin name="cordova-plugin-x-socialsharing" spec="~5.1.1" />
<plugin name="cordova-plugin-whitelist" spec="~1.2.2" />
<plugin name="cordova-plugin-device" spec="~1.1.2" />
<plugin name="cordova-plugin-media" spec="~2.3.0" />
<plugin name="cordova-plugin-file" spec="~4.2.0" />
<engine name="android" spec="~5.2.1" />
<engine name="browser" spec="^5.0.1" />
</widget>