This repository has been archived by the owner on Jan 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
45 lines (39 loc) · 2.6 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.htwkapp.app" version="0.14.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HTWK-App</name>
<description>
This is an App for Students and Professors of the University of Applied Sciences Leipzig.
</description>
<author email="[email protected]" href="https://rmeissn.github.io/">
HTWK-App Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-geolocation" spec="~2.2.0" />
<plugin name="cordova-plugin-splashscreen" spec="~3.2.2" />
<plugin name="cordova-plugin-whitelist" spec="~1.2.2" />
<plugin name="cordova-plugin-statusbar" spec="~2.1.3" />
<access origin="*" />
<allow-navigation href="*" />
<allow-intent href="*" />
<icon src="icons_splashs/icon_192x192_corner.png" />
<preference name="stay-in-webview" value="false" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
<preference name="ios-statusbarstyle" value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<preference name="detect-data-types" value="true" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<preference name="show-splash-screen-spinner" value="true" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<preference name="android-minSdkVersion" value="15" /> <!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="StatusBarBackgroundColor" value="#0176d3" />
<platform name="android">
<allow-intent href="market:*" />
<splash src="icons_splashs/splash_640x1136.png" density="hdpi"/>
<splash src="icons_splashs/splash_960x640.png" density="ldpi"/>
<splash src="icons_splashs/splash_960x640.png" density="mdpi"/>
<splash src="icons_splashs/splash_640x1136.png" density="xhdpi"/>
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>