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

    <uses-sdk android:minSdkVersion="24" />

    <application>
        <service
            android:name="com.capacitorjs.plugins.pushnotifications.MessagingService"
            android:exported="false" >
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>
    </application>

</manifest>