mirror of
https://github.com/bitwarden/android.git
synced 2024-12-20 00:02:58 +03:00
19 lines
726 B
XML
19 lines
726 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application tools:ignore="MissingApplicationIcon">
|
|
<service
|
|
android:name="com.x8bit.bitwarden.data.push.BitwardenFirebaseMessagingService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
<!-- Disable Crashlytics for debug builds -->
|
|
<meta-data
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
android:value="false" />
|
|
</application>
|
|
|
|
</manifest>
|