-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
81 lines (77 loc) · 4.74 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version='1.0' encoding='utf-8'?>
<widget id="prv.restaurant.manager.app" version="1.7.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>OneTouchOrder</name>
<description>
Generic restaurant app that will be used to ease the comunication between customer and resturant.
</description>
<author email="[email protected]" href="http://www.creativezone.ro">
Creative Zone & Associates
</author>
<content src="index.html" />
<feature name="http://api.phonegap.com/1.0/camera" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="14" />
<preference name="orientation" value="portrait" />
<preference name="target-device" value="universal" /> <!-- all: possible values handset, tablet, or universal -->
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarStyle" value="blackopaque" />
<preference name="StatusBarBackgroundColor" value="#000000" />
<preference name="auto-hide-splash-screen" value="false" />
<plugin name="cordova-plugin-device" source="npm" spec="1.0.0" />
<plugin name="cordova-plugin-device-motion" source="npm" spec="1.0.0" />
<plugin name="cordova-plugin-device-orientation" source="npm" spec="1.0.0" />
<plugin name="cordova-plugin-transport-security" spec="0.1.2" />
<plugin name="cordova-plugin-camera" source="npm" spec="~2.1.1" />
<plugin name="cordova-plugin-network-information" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-splashscreen" source="npm" spec="~3.2.1" />
<plugin name="cordova-plugin-statusbar" source="npm" spec="~2.1.2" />
<plugin name="phonegap-plugin-barcodescanner" source="npm" spec="3.0.0" />
<icon src="icon.png" />
<icon gap:platform="android" gap:qualifier="ldpi" src="res/icon/android/icon-36-ldpi.png" />
<icon gap:platform="android" gap:qualifier="mdpi" src="res/icon/android/icon-48-mdpi.png" />
<icon gap:platform="android" gap:qualifier="hdpi" src="res/icon/android/icon-72-hdpi.png" />
<icon gap:platform="android" gap:qualifier="xhdpi" src="res/icon/android/icon-96-xhdpi.png" />
<icon gap:platform="blackberry" src="res/icon/blackberry/icon-80.png" />
<icon gap:platform="blackberry" gap:state="hover" src="res/icon/blackberry/icon-80.png" />
<icon gap:platform="ios" height="57" src="res/icon/ios/icon-57.png" width="57" />
<icon gap:platform="ios" height="72" src="res/icon/ios/icon-72.png" width="72" />
<icon gap:platform="ios" height="114" src="res/icon/ios/icon-57-2x.png" width="114" />
<icon gap:platform="ios" height="144" src="res/icon/ios/icon-72-2x.png" width="144" />
<icon gap:platform="webos" src="res/icon/webos/icon-64.png" />
<icon gap:platform="winphone" src="res/icon/windows-phone/icon-48.png" />
<icon gap:platform="winphone" gap:role="background" src="res/icon/windows-phone/icon-173.png" />
<splash src="splash.png" />
<platform name="android">
<splash density="land-hdpi" src="res/screens/android/splash-land-hdpi.png" />
<splash density="land-ldpi" src="res/screens/android/splash-land-ldpi.png" />
<splash density="land-mdpi" src="res/screens/android/splash-land-mdpi.png" />
<splash density="land-xhdpi" src="res/screens/android/splash-land-xhdpi.png" />
<splash density="port-hdpi" src="res/screens/android/splash-port-hdpi.png" />
<splash density="port-ldpi" src="res/screens/android/splash-port-ldpi.png" />
<splash density="port-mdpi" src="res/screens/android/splash-port-mdpi.png" />
<splash density="port-xhdpi" src="res/screens/android/splash-port-xhdpi.png" />
</platform>
<platform name="ios">
<splash height="480" src="res/screens/ios/screen-iphone-portrait.png" width="320" />
<splash height="960" src="res/screens/ios/screen-iphone-portrait-2x.png" width="640" />
<splash height="1136" src="res/screens/ios/screen-iphone-portrait-568h-2x.png" width="640" />
<splash height="1024" src="res/screens/ios/screen-ipad-portrait.png" width="768" />
<splash height="768" src="res/screens/ios/screen-ipad-landscape.png" width="1024" />
</platform>
<access origin="*" />
<plugin name="cordova-plugin-whitelist" version="1" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="android" spec="~5.1.1" />
</widget>