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