2016-02-12 10:39:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-01-09 16:37:52 +00:00
|
|
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
2016-02-12 10:39:27 +00:00
|
|
|
package="eu.siacs.conversations"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2019-01-09 16:37:52 +00:00
|
|
|
<application tools:ignore="GoogleAppIndexingWarning">
|
2016-02-12 10:39:27 +00:00
|
|
|
|
2018-05-20 16:02:04 +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" />
|
|
|
|
|
2017-09-22 11:31:00 +00:00
|
|
|
<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>
|
|
|
|
|
2016-02-12 10:39:27 +00:00
|
|
|
<service
|
|
|
|
android:name=".services.PushMessageReceiver"
|
|
|
|
android:exported="false" >
|
|
|
|
<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>
|