mirror of
https://github.com/bitwarden/android.git
synced 2026-06-01 10:16:47 -05:00
16 lines
549 B
XML
16 lines
549 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>
|
|
</application>
|
|
|
|
</manifest>
|