-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
52 lines (52 loc) · 2.32 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
<?xml version="1.0" encoding="utf-8"?>
<widget id="com.bisondev.agendalr"
version="1.0.0"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<!-- Example: https://github.com/apache/cordova-app-hello-world/blob/master/config.xml -->
<name>Agenda La Rochelle</name>
<description>
Application mobile simple, contenant les évènements à La Rochelle.
</description>
<author email="[email protected]" href="http://bisondev.com">
Bruno Cartier - BisonDev
</author>
<content src="index.html" />
<plugin name="cordova-plugin-x-toast" spec="~2.2.0" />
<!-- Whitelist configuration. Refer to https://cordova.apache.org/docs/en/edge/guide_appdev_whitelist_index.md.html -->
<plugin name="cordova-plugin-whitelist" spec="1" />
<plugin name="cordova-plugin-statusbar" spec="~2.2.1" />
<preference name="StatusBarBackgroundColor" value="#097492" />
<plugin name="cordova-plugin-splashscreen" spec="~4.0.1" />
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="10000" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="FadeSplashScreenDuration" value="300"/>
<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>
<!-- Global preferences -->
<preference name="Fullscreen" value="false" />
<preference name="Orientation" value="portrait" />
<!-- Android + iOS -->
<preference name="WebViewBounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<!-- iOS -->
<preference name="BackupWebStorage" value="local" />
<!-- Android - Awesome: http://goo.gl/KYZQnx -->
<preference name="android-minSdkVersion" value="19" />
</widget>