2024-01-05 19:20:53 +03:00
|
|
|
<?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">
|
2024-02-01 06:02:12 +03:00
|
|
|
<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>
|
2024-01-05 19:20:53 +03:00
|
|
|
<!-- Disable Crashlytics for debug builds -->
|
|
|
|
<meta-data
|
|
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
|
|
android:value="false" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|