35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
<!-- Remove this line if Google Play Store is giving you a hard time -->
|
|
<!-- <uses-permission android:name="android.permission.READ_CONTACTS"/> -->
|
|
|
|
<application android:icon="@mipmap/new_launcher">
|
|
|
|
<meta-data
|
|
android:name="firebase_analytics_collection_deactivated"
|
|
android:value="true" />
|
|
<meta-data
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
android:value="false" />
|
|
|
|
<receiver
|
|
android:name=".services.MaintenanceReceiver"
|
|
android:exported="true"
|
|
android:permission="android.permission.CHANGE_CONFIGURATION">
|
|
<intent-filter>
|
|
<action android:name="eu.siacs.conversations.RENEW_INSTANCE_ID" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service
|
|
android:name=".services.PushMessageReceiver"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
</manifest>
|