AndroidManifest.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<manifest xmlns:tools="http://schemas.android.com/tools"
 3    package="eu.siacs.conversations"
 4    xmlns:android="http://schemas.android.com/apk/res/android">
 5
 6    <application tools:ignore="GoogleAppIndexingWarning">
 7
 8        <meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
 9        <meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
10
11        <receiver android:name=".services.MaintenanceReceiver"
12                  android:exported="true"
13                  android:permission="android.permission.CHANGE_CONFIGURATION">
14            <intent-filter>
15                <action android:name="eu.siacs.conversations.RENEW_INSTANCE_ID"/>
16            </intent-filter>
17        </receiver>
18
19        <service
20            android:name=".services.PushMessageReceiver"
21            android:exported="false" >
22            <intent-filter>
23                <action android:name="com.google.firebase.MESSAGING_EVENT" />
24            </intent-filter>
25        </service>
26    </application>
27</manifest>