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