-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
53 lines (41 loc) · 2.11 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
<?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.awesome.TipCalculator-Test"
versionCode="1"
version = "16.07.10">
<name>Awesome Tip Calculator - Test</name>
<description>
Awesome Tip Calculator application
</description>
<author href="http://codewithmark.com" email="[email protected]">
Mark Kumar
</author>
<!-- For more information about using config.xml, see
https://build.phonegap.com/docs/config-xml -->
<!-- this app will have no device api access -->
<feature name="http://api.phonegap.com/1.0/device" />
<preference name="orientation" value="portrait" />
<preference name="fullscreen" value="false" />
<preference name="target-device" value="universal" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="android-installLocation" value="auto" />
<!--[Google mobile add]-->
<!-- the default icon to be use, for BlackBerry must be less than 16kb -->
<icon src="phonegap_icon_template.png" />
<!-- the default splash screen to use -->
<!-- iOS -->
<gap:splash src="phonegap_splash_template.png" width="320" height="480" />
<gap:splash src="phonegap_splash_template.png" width="640" height="960" />
<gap:splash src="phonegap_splash_template.png" width="1024" height="768" />
<gap:splash src="phonegap_splash_template.png" width="768" height="1024" />
<!-- Android -->
<gap:splash src="phonegap_splash_template.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="phonegap_splash_template.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="phonegap_splash_template.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="phonegap_splash_template.png" gap:platform="android" gap:density="xhdpi" />
<!-- BlackBerry -->
<gap:splash src="phonegap_splash_template.png" gap:platform="blackberry" />
<!-- Windows Phone -->
<gap:splash src="phonegap_splash_template.jpg" gap:platform="winphone" />
</widget>