1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2  package="expo.modules.notifications">
3
4  <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
5
6  <application>
7    <service
8      android:name=".service.ExpoFirebaseMessagingService"
9      android:exported="false">
10      <intent-filter android:priority="-1">
11        <action android:name="com.google.firebase.MESSAGING_EVENT" />
12      </intent-filter>
13    </service>
14
15    <receiver
16      android:name=".service.NotificationsService"
17      android:enabled="true"
18      android:exported="false">
19      <intent-filter android:priority="-1">
20        <action android:name="expo.modules.notifications.NOTIFICATION_EVENT" />
21
22        <action android:name="android.intent.action.BOOT_COMPLETED" />
23        <action android:name="android.intent.action.REBOOT" />
24        <action android:name="android.intent.action.QUICKBOOT_POWERON" />
25        <action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
26
27        <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
28      </intent-filter>
29    </receiver>
30
31    <activity android:name=".service.NotificationForwarderActivity"
32      android:theme="@android:style/Theme.Translucent.NoTitleBar"
33      android:exported="false"
34      android:excludeFromRecents="true"
35      android:noHistory="true"
36      android:launchMode="standard"
37      />
38  </application>
39</manifest>
40