-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
47 lines (36 loc) · 1.71 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
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "org.laphonegap.helloworld"
versionCode="10"
version = "1.0.0">
<!-- For more information about using config.xml, see
https://build.phonegap.com/docs/config-xml -->
<!-- versionCode is optional and Android only -->
<!-- this app will have no device api access -->
<preference name="permissions" value="none"/>
<!-- the default icon to be use, for BlackBerry must be less than 16kb -->
<icon src="laphonegap_icon.png" />
<!-- the default splash screen to use -->
<!-- iOS -->
<gap:splash src="laphonegap_splash.png" width="320" height="480" />
<gap:splash src="laphonegap_splash.png" width="640" height="960" />
<gap:splash src="laphonegap_splash.png" width="1024" height="768" />
<gap:splash src="laphonegap_splash.png" width="768" height="1024" />
<!-- Android -->
<gap:splash src="laphonegap_splash.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="laphonegap_splash.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="laphonegap_splash.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="laphonegap_splash.png" gap:platform="android" gap:density="xhdpi" />
<!-- BlackBerry -->
<gap:splash src="laphonegap_splash.png" gap:platform="blackberry" />
<!-- Windows Phone -->
<gap:splash src="laphonegap_splash.jpg" gap:platform="winphone" />
<name>Hello LA PhoneGap</name>
<description>
Simple example for phonegap usage.
</description>
<author href="https://laphonegap.org" email="[email protected]">
George McKinney
</author>
</widget>