-
Notifications
You must be signed in to change notification settings - Fork 65
/
config.xml
94 lines (65 loc) · 5.19 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
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "it.venerons.APPLICATION"
version = "1.0.0"
versionCode = "1">
<name>APPLICATION NAME</name>
<description>
APPLICATION DESCRIPTION
</description>
<author href="http://veneronslabs.wordpress.com" email="[email protected]">
Daniele Veneroni
</author>
<!-- ICONS -->
<icon src="icon.png" /> <!-- default 72 pixels -->
<icon src="icons/ios/icon.png" width="57" height="57" /> <!-- iPhone 3G, iPhone 3GS, iPod Touch 2G, 3G -->
<icon src="icons/ios/icon72.png" gap:platform="ios" width="72" height="72" /> <!-- iPad, iPad 2, iPad mini -->
<icon src="icons/ios/icon114.png" width="114" height="114" /> <!-- iPhone 4, iPhone 4S, iPod Touch 4G -->
<icon src="icons/ios/icon144.png" width="144" height="144" /> <!-- iPad 3, iPad 4 -->
<icon src="icons/android/ldpi.png" gap:platform="android" gap:density="ldpi" /> <!-- 36 pixels -->
<icon src="icons/android/mdpi.png" gap:platform="android" gap:density="mdpi" /> <!-- 48 pixels -->
<icon src="icons/android/hdpi.png" gap:platform="android" gap:density="hdpi" /> <!-- 72 pixels -->
<icon src="icons/android/xhdpi.png" gap:platform="android" gap:density="xhdpi" /> <!-- 96 pixels -->
<icon src="icons/bb/icon.png" gap:platform="blackberry" /> <!-- 72 pixels -->
<icon src="icons/bb/icon_hover.png" gap:platform="blackberry" gap:state="hover"/> <!-- 72 pixels -->
<icon src="icons/winphone/icon.png" gap:platform="winphone" /> <!-- 57 pixels -->
<icon src="icons/winphone/tileicon.png" gap:platform="winphone" gap:role="background" /> <!-- 72 pixels -->
<icon src="icons/webos/icon.png" gap:platform="webos" /> <!-- 29 pixels -->
<icon src="icons/webos/miniicon.png" gap:platform="webos" gap:role="mini" /> <!-- 15 pixels -->
<!-- SPLASH SCREENS -->
<gap:splash src="splash.png" /> <!-- default 320x480 pixels -->
<gap:splash src="splash/ios/splash-1024x768.png" width="1024" height="768" /> <!-- iPad 1, iPad 2, iPad mini -->
<gap:splash src="splash/ios/splash-768x1024.png" width="768" height="1024" /> <!-- iPad 1, iPad 2, iPad mini -->
<gap:splash src="splash/ios/splash-320x480.png" width="320" height="480" /> <!-- iPhone 3G, iPhone 3GS, iPod Touch 2, iPod Touch 3 -->
<gap:splash src="splash/ios/splash-640x960.png" width="640" height="960" /> <!-- iPhone 4, iPhone 4S, iPod Touch 4 -->
<gap:splash src="splash/ios/splash-640x1136.png" width="640" height="1136" /> <!-- iPhone 5, iPod Touch 5 -->
<gap:splash src="splash/android/ldpi.png" gap:platform="android" gap:density="ldpi" /> <!-- 200x320 -->
<gap:splash src="splash/android/mdpi.png" gap:platform="android" gap:density="mdpi" /> <!-- 320x480 -->
<gap:splash src="splash/android/hdpi.png" gap:platform="android" gap:density="hdpi" /> <!-- 480x800 -->
<gap:splash src="splash/android/xhdpi.png" gap:platform="android" gap:density="xhdpi" /> <!-- 720x1280 -->
<gap:splash src="splash/bb/splash.png" gap:platform="blackberry" /> <!-- BlackBerry 250x250 -->
<gap:splash src="splash/winphone/splash.jpg" gap:platform="winphone" /> <!-- Windows Phone 7 480x800 -->
<gap:splash src="splash/webos/splash.png" gap:platform="webos" /> <!-- WebOS 64x64 -->
<!-- GENERAL PREFERENCES -->
<preference name="phonegap-version" value="2.2.0" /> <!-- versione di phonegap usata -->
<preference name="orientation" value="default" /> <!-- entrambe supportate -->
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" /> <!-- toglie la barra in alto su iOS e Android -->
<!-- iOS PREFERENCES -->
<preference name="webviewbounce" value="false" /> <!-- effetto bounce quando si raggiunge la cima o il fondo della pagina -->
<preference name="prerendered-icon" value="true" /> <!-- non applica effetto gloss all'icona -->
<preference name="stay-in-webview" value="false" /> <!-- if set to true, all links (even with target set to blank) will open in the app's webview -->
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="exit-on-suspend" value="true" /> <!-- if set to false, app will continue to run on suspend -->
<preference name="show-splash-screen-spinner" value="true" /> <!-- if set to false, the spinner won't appear on the splash screen during app loading -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- if set to false, the splash screen must be hidden using a JavaScript API -->
<!-- ANDROID PREFERENCES -->
<preference name="android-minSdkVersion" value="7" /> <!-- minimo Android 2.1 -->
<!-- <preference name="android-maxSdkVersion" value="17" /> massimo Android 4.2 -->
<preference name="android-installLocation" value="auto" />
<!-- BLACKBERRY PREFERENCES -->
<preference name="disable-cursor" value="false" />
<!-- PHONEGAP API FEATURES PREFERENCES -->
<preference name="permissions" value="none"/>
</widget>