mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-28 11:58:35 +03:00
20 lines
561 B
XML
20 lines
561 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<application>
|
||
|
|
||
|
<!-- Firebase components -->
|
||
|
<meta-data
|
||
|
android:name="firebase_analytics_collection_deactivated"
|
||
|
android:value="true" />
|
||
|
|
||
|
<service android:name="im.vector.push.fcm.VectorFirebaseMessagingService">
|
||
|
<intent-filter>
|
||
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|