-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.xml
69 lines (48 loc) · 2.47 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
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.fcrm.edupalu"
versionCode = "13"
version = "1.3" >
<!-- versionCode is optional and Android only. It must be an integer -->
<name>EduPalu</name>
<description>
EduPalu est une application d'information et d'éducation sur le paludisme au Congo
</description>
<author href="http://www.Fongwama.com" email="[email protected]">
Fongwama
</author>
<!-- build only for android -->
<platform name="android" />
<!-- icon -->
<icon src="logo_EduPalu_icon.png" />
<!-- no permission required -->
<preference name="permissions" value="none" />
<!-- plugin for geolocation -->
<!-- https://build.phonegap.com/plugins/5538 -->
<plugin name="cordova-plugin-geolocation" source="pgb" />
<!-- plugin for whitelist url / protocols -->
<plugin name="cordova-plugin-whitelist" />
<!-- Allow links to web pages to open in a browser -->
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<!-- Allow tel: links to open the dialer -->
<allow-intent href="tel:*" />
<!-- access to external links -->
<access origin="*" browserOnly="true"/>
<!-- allow phone number dialing from app -->
<access origin="tel:*" launch-external="yes" />
<preference name="fullscreen" value="false" />
<!-- splash screen -->
<gap:plugin name="org.apache.cordova.splashscreen" />
<preference name="SplashScreen" value="splash" />
<preference name="SplashScreenDelay" value="1500" />
<gap:splash platform="android" gap:qualifier="port-ldpi" src="res/screen/android/screen-ldpi-portrait.png" />
<gap:splash platform="android" gap:qualifier="port-mdpi" src="res/screen/android/screen-mdpi-portrait.png" />
<gap:splash platform="android" gap:qualifier="port-hdpi" src="res/screen/android/screen-hdpi-portrait.png" />
<gap:splash platform="android" gap:qualifier="port-xhdpi" src="res/screen/android/screen-xhdpi-portrait.png" />
<gap:splash platform="android" gap:qualifier="port-xxhdpi" src="res/screen/android/screen-xxhdpi-portrait.png" />
<gap:splash platform="android" gap:qualifier="port-xxxhdpi" src="res/screen/android/screen-xxxhdpi-portrait.png" />
<gap:splash src="splash.png" />
<preference name="stay-in-webview" value="false"/>
</widget>