<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
    <application>
        <activity
            android:name=".PushNotificationLaunchActivity"
            android:launchMode="singleInstance"
            android:exported="false" />

        <service android:name=".PushNotificationHeadlessTaskService" />

        <service
            android:name=".PushNotificationFirebaseMessagingService"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>
    </application>
</manifest>
