-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
44 lines (37 loc) · 1.85 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>WordCamp App</name>
<description>A demo cordova app for WordCamp Barcelona.</description>
<author email="[email protected]" href="http://evil.ninja">Martin Sotirov</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<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="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<!-- icons -->
<icon src="src/images/[email protected]" width="180" height="180" />
<icon src="src/images/[email protected]" width="120" height="120" />
<icon src="src/images/icon-60.png" width="60" height="60" />
<!-- splash screens -->
<splash src="src/images/iphone-3.png" width="320" height="480" />
<splash src="src/images/iphone-4.png" width="640" height="960" />
<splash src="src/images/iphone-5.png" width="640" height="1136" />
<splash src="src/images/iphone-6.png" width="750" height="1334" />
<splash src="src/images/iphone-6-plus.png" width="1242" height="2208" />
</platform>
<!--Settings-->
<preference name="DisallowOverscroll" value="true" />
<preference name="Orientation" value="portrait" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#028db9" />
<!--iOS Settings-->
<preference name="TopActivityIndicator" value="white"/>
<preference name="target-device" value="iphone" />
</widget>