-
Notifications
You must be signed in to change notification settings - Fork 35
/
config.xml
39 lines (31 loc) · 1.58 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
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.anyconference"
version = "1.0">
<name>AnyConference</name>
<description>
AnyConference application
</description>
<author href="http://phonegap.com" email="[email protected]">
PhoneGap Team
</author>
<access origin="*" />
<icon src="res/icon/icon.png" />
<gap:splash gap:platform="ios" src="res/screen/ios-splash.png" />
<gap:splash src="res/screen/android-splash.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="res/screen/android-splash.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="res/screen/android-splash.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="res/screen/android-splash.png" gap:platform="android" gap:density="xhdpi" />
<feature name="http://api.phonegap.com/1.0/device" />
<feature name="http://api.phonegap.com/1.0/network"/>
<preference name="prerendered-icon" value="true" />
<preference name="phonegap-version" value="2.9.0" />
<preference name="orientation" value="portrait" />
<preference name="target-device" value="handset" />
<preference name="fullscreen" value="false" />
<preference name="webviewbounce" value="false" />
<preference name="load-url-timeout" value="5000" />
<preference name="splash-screen-duration" value="5000" />
<preference name="auto-hide-splash-screen" value="true" />
</widget>