blob: 5207ee97794944bf331fdff37fca234283fc6225 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="mx.trackermap.TrackerMap.android">
<application
android:name=".GoogleMainApplication"
tools:replace="android:name"
tools:ignore="GoogleAppIndexingWarning"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:fullBackupContent="false">
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/notification_channel_id" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/icon_notify" />
<service android:exported="false" android:name=".ManagerMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>
|