2016-02-12 10:39:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-22 09:17:30 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-02-12 10:39:27 +00:00
|
|
|
|
2024-02-20 09:25:18 +00:00
|
|
|
|
|
|
|
<!-- Remove this line if Google Play Store is giving you a hard time -->
|
2024-03-12 18:05:23 +00:00
|
|
|
<!-- <uses-permission android:name="android.permission.READ_CONTACTS"/> -->
|
2024-02-20 09:25:18 +00:00
|
|
|
|
2022-08-22 09:17:30 +00:00
|
|
|
<application android:icon="@mipmap/new_launcher">
|
2016-02-12 10:39:27 +00:00
|
|
|
|
2022-08-22 09:17:30 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="firebase_analytics_collection_deactivated"
|
|
|
|
android:value="true" />
|
|
|
|
<meta-data
|
|
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
|
|
android:value="false" />
|
2018-05-20 16:02:04 +00:00
|
|
|
|
2022-08-22 09:17:30 +00:00
|
|
|
<receiver
|
|
|
|
android:name=".services.MaintenanceReceiver"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.CHANGE_CONFIGURATION">
|
2017-09-22 11:31:00 +00:00
|
|
|
<intent-filter>
|
2022-08-22 09:17:30 +00:00
|
|
|
<action android:name="eu.siacs.conversations.RENEW_INSTANCE_ID" />
|
2017-09-22 11:31:00 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2016-02-12 10:39:27 +00:00
|
|
|
<service
|
|
|
|
android:name=".services.PushMessageReceiver"
|
2022-08-22 09:17:30 +00:00
|
|
|
android:exported="false">
|
2016-02-12 10:39:27 +00:00
|
|
|
<intent-filter>
|
2018-05-19 18:05:45 +00:00
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
2016-02-12 10:39:27 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|