27 lines
756 B
XML
Executable File
27 lines
756 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="im.vector.app">
|
|
|
|
<application>
|
|
|
|
<!-- Firebase components -->
|
|
<meta-data
|
|
android:name="firebase_analytics_collection_deactivated"
|
|
android:value="true" />
|
|
|
|
<receiver
|
|
android:enabled="true"
|
|
android:name=".push.fcm.EmbeddedFCMDistributor"
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
<action android:name="org.unifiedpush.android.distributor.REGISTER"/>
|
|
<action android:name="org.unifiedpush.android.distributor.UNREGISTER"/>
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
</manifest>
|