-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.xml
79 lines (57 loc) · 3.23 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
67
68
69
70
71
72
73
74
75
76
<?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.fongwama.edupalu"
versionCode = "13"
version = "2.0"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<!-- versionCode is optional and Android only. It must be an integer -->
<name>EduPalu</name>
<description>
Application d’éducation sur le paludisme et d’accès aux services de santé au Congo. / Application of education on malaria and access to health services in Congo.
</description>
<author href="http://www.fongwama.com" email="mbote@Fongwama.com">
Fongwama
</author>
<!-- build only for android -->
<platform name="ios" />
<platform name="android" />
<!-- icon -->
<icon src="logo_EduPalu_icon.png" />
<!-- plugin for geolocation -->
<!-- https://build.phonegap.com/plugins/5538 -->
<!-- <plugin name="cordova-plugin-geolocation" source="pgb" /> -->
<plugin name="cordova-plugin-geolocation" version="2.1.0" />
<!-- <plugin spec=“https://github.com/apache/cordova-plugin-geolocation.git” source=“git” /> -->
<plugin name="cordova-plugin-google-analytics" spec="~1.8.2" />
<!-- plugin for whitelist url / protocols -->
<plugin name="cordova-plugin-whitelist" />
<!-- no permission required -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<!-- 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" />
<plugin name="cordova-plugin-splashscreen" source="npm" spec="2.1.0" />
<!-- splash screen -->
<plugin name="cordova-plugin-splashscreen" spec="~5.0.2" />
<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>