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