forked from touchstonejs/touchstonejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
43 lines (35 loc) · 1.51 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.thinkmill.touchstonejs-starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Starter</name>
<description>
Touchstone Starter App
</description>
<author email="[email protected]" href="http://www.thinkmill.com.au">
Thinkmill Team
</author>
<content src="index.html" />
<access origin="*" />
<preference name="DisallowOverscroll" value="true" />
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="10000" />
<preference name="AutoHideSplashScreen" value="false" />
<!-- ANDROID -->
<platform name="android">
<icon src="resources/icons/[email protected]" density="ldpi" />
<icon src="resources/icons/[email protected]" density="mdpi" />
<icon src="resources/icons/[email protected]" density="hdpi" />
<icon src="resources/icons/[email protected]" density="xhdpi" />
<splash src="resources/splash/1242x2208.png" density="ldpi" />
<splash src="resources/splash/1242x2208.png" density="mdpi" />
<splash src="resources/splash/1242x2208.png" density="hdpi" />
<splash src="resources/splash/1242x2208.png" density="xhdpi" />
</platform>
<!-- IOS -->
<platform name="ios">
</platform>
<!-- PLUGINS -->
<plugin name="cordova-plugin-device" spec="1.0.0" />
<plugin name="cordova-plugin-splashscreen" spec="2.1.0" />
<plugin name="cordova-plugin-statusbar" spec="1.0.1" />
<plugin name="cordova-plugin-whitelist" spec="1.0.0" />
</widget>