aboutsummaryrefslogtreecommitdiffstats
path: root/src/standardPush/AndroidManifest.xml
blob: 68dc82070fa7b525f4bd09903a6981b46d6ecc4d (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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="de.pixart.messenger">

    <application>

        <receiver
            android:name=".services.MaintenanceReceiver"
            android:exported="true"
            android:permission="android.permission.CHANGE_CONFIGURATION">
            <intent-filter>
                <action android:name="eu.siacs.conversations.RENEW_INSTANCE_ID" />
            </intent-filter>
        </receiver>

        <service
            android:name=".services.PushMessageReceiver"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>

        <service android:name=".services.InstanceIdService">
            <intent-filter>
                <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
            </intent-filter>
        </service>
    </application>
</manifest>