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