-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
60 lines (52 loc) · 2.14 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
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="de.artiso.vokabelchef.v1" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>VokabelChef</name>
<description>
VokabelChef
</description>
<author email="office@artiso.de" href="http://www.artiso.de">
Artiso GmbH
</author>
<content src="index.html"/>
<plugin name="cordova-plugin-whitelist" version="1.2.1"/>
<plugin name="cordova-plugin-statusbar" spec="2.1.1"/>
<plugin name="cordova-plugin-splashscreen" spec="3.2.0"/>
<platform name="ios">
<hook type="after_platform_add" src="hooks/ios/after_platform_add_add_plugins.js" />
</platform>
<platform name="android">
<hook type="after_platform_add" src="hooks/android/after_platform_add_add_plugins.js" />
</platform>
<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="android">
<allow-intent href="market:*"/>
</platform>
<platform name="ios">
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
</platform>
<preference name="StatusBarOverlaysWebView" value="false"/>
<preference name="StatusBarBackgroundColor" value="#367fa9"/>
<preference name="StatusBarStyle" value="lightcontent"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="SplashScreen" value="screen"/>
<preference name="SplashScreenDelay" value="3000"/>
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashScreenBackgroundColor" value="white" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-targetSdkVersion" value="19" />
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect"/>
<preference name="xwalkMode" value="embedded"/>
<platform name="ios">
<preference name="Orientation" value="all" />
</platform>
<engine name="ios" spec="~4.1.1"/>
<engine name="android" spec="~5.1.1"/>
<engine name="windows" spec="~4.3.2"/>
</widget>