aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/google/AndroidManifest.xml
blob: ce72a8b622d12a993722e7bdb787df2a1005f70e (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
32
33
34
35
36
37
38
39
40
41
<?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>

        <provider
            android:authorities="${applicationId}.fileprovider"
            android:name="androidx.core.content.FileProvider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/filepaths" />
        </provider>

    </application>

</manifest>