forked from chamilo/mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.xml
44 lines (44 loc) · 2.22 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.chamilo.messaging" version="2.2.0" xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Chamilo Messaging</name>
<description>
The Messaging app for Chamilo LMS is a multi-mobile-OS application that allows you to get your messages from Chamilo LMS's social network.
</description>
<author email="[email protected]" href="https://beeznest.com">
BeezNest
</author>
<icon src="res/icon.png" />
<content src="index.html" />
<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:*" />
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<resource-file src="res/drawable/notification_icon.png"
target="app/src/main/res/drawable/notification_icon.png"/>
<resource-file src="res/values/colors.xml" target="app/src/main/res/values/colors.xml"/>
<config-file parent="/manifest/application" target="app/src/main/AndroidManifest.xml">
<meta-data android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon"/>
<meta-data android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/notification_color"/>
</config-file>
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="iosPersistentFileLocation" value="Compatibility" />
<icon src="res/ios/icon-60.png" width="60" height="60" />
<icon src="res/ios/[email protected]" width="120" height="120" />
<icon src="res/ios/icon-76.png" width="76" height="76" />
<icon src="res/ios/[email protected]" width="152" height="152" />
</platform>
<plugin name="cordova-plugin-whitelist" spec="1" />
</widget>