forked from Yehonal/app-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
executable file
·97 lines (85 loc) · 4.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="utf-8"?>
<widget id="me.bizzer.app" version="1.0.8" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Bizzer</name>
<description>
Bizzer
</description>
<author email="[email protected]" href="http://www.lenusmedia.it">
Lenus Media
</author>
<icon src="logo.png" />
<icon src="www/data/res/icons/ios/icon.png" />
<platform name="ios">
<!-- iPhone 6 / 6+ -->
<icon src="data/res/icons/ios/icon-60-3x.png" platform="ios" width="180" height="180" />
<!-- iPhone / iPod Touch -->
<icon src="data/res/icons/ios/icon-60.png" platform="ios" width="60" height="60" />
<icon src="data/res/icons/ios/icon-60-2x.png" platform="ios" width="120" height="120" />
<!-- iPad -->
<icon src="data/res/icons/ios/icon-76.png" platform="ios" width="76" height="76" />
<icon src="data/res/icons/ios/icon-76-2x.png" platform="ios" width="152" height="152" />
<!-- Settings Icon -->
<icon src="data/res/icons/ios/icon-small.png" platform="ios" width="29" height="29" />
<icon src="data/res/icons/ios/icon-small-2x.png" platform="ios" width="58" height="58" />
<!-- Spotlight Icon -->
<icon src="data/res/icons/ios/icon-40.png" platform="ios" width="40" height="40" />
<icon src="data/res/icons/ios/icon-40-2x.png" platform="ios" width="80" height="80" />
<!-- iPhone / iPod Touch -->
<icon src="data/res/icons/ios/icon.png" platform="ios" width="57" height="57" />
<icon src="data/res/icons/ios/icon-2x.png" platform="ios" width="114" height="114" />
<!-- iPad -->
<icon src="data/res/icons/ios/icon-72.png" platform="ios" width="72" height="72" />
<icon src="data/res/icons/ios/icon-72-2x.png" platform="ios" width="144" height="144" />
<!-- iPhone Spotlight and Settings Icon -->
<icon src="data/res/icons/ios/icon-small.png" platform="ios" width="29" height="29" />
<icon src="data/res/icons/ios/icon-small-2x.png" platform="ios" width="58" height="58" />
<!-- iPad Spotlight and Settings Icon -->
<icon src="data/res/icons/ios/icon-50.png" platform="ios" width="50" height="50" />
<icon src="data/res/icons/ios/icon-50-2x.png" platform="ios" width="100" height="100" />
</platform>
<preference name="phonegap-version" value="3.7.0" />
<content src="src/main.html" />
<preference name="permissions" value="none" />
<preference name="orientation" value="portrait" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="true" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<!--<preference name="show-splash-screen-spinner" value="true" />-->
<preference name="SplashScreen" value="none"/>
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-installLocation" value="auto" />
<gap:plugin name="cordova-plugin-console" source="npm" />
<gap:plugin name="cordova-plugin-inappbrowser" source="npm" />
<gap:plugin name="cordova-plugin-vibration" source="npm" />
<gap:plugin name="cordova-plugin-device" source="npm" />
<gap:plugin name="cordova-plugin-device-motion" source="npm" />
<gap:plugin name="cordova-plugin-device-orientation" source="npm" />
<gap:plugin name="cordova-plugin-dialogs" source="npm" />
<gap:plugin name="cordova-plugin-globalization" source="npm" />
<gap:plugin name="cordova-plugin-media" source="npm" />
<gap:plugin name="cordova-plugin-network-information" source="npm" />
<gap:plugin name="cordova-plugin-splashscreen" source="npm" />
<gap:plugin name="cordova-plugin-whitelist" source="npm" version="1.0.0" />
<access origin="*" />
<allow-navigation href="*" />
<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>
</widget>