-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
40 lines (33 loc) · 1.68 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.taylorhamling.lateforthebus" version="2.2.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Late For The Bus</name>
<description>
Late for the Bus is an app designed for Palmerston North Massey University students to make it easier to determine which bus is next available.
</description>
<author email="[email protected]" href="http://www.taylorhamling.com">
Taylor Hamling
</author>
<content src="index.html" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="SplashScreenDelay" value="5000" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="7" />
<preference name="android-installLocation" value="auto" />
<gap:plugin name="org.apache.cordova.splashscreen" />
<icon src="images/busicon.png" />
<gap:splash src="images/splash.png" />
<access origin="*" />
<allow-intent href="http://*/*" />
<engine name="android" spec="^4.0.0" />
</widget>