Skip to content

Instantly share code, notes, and snippets.

@helenaford
Created December 28, 2019 19:48
Show Gist options
  • Save helenaford/ac30819baf698d8ae0bcf6bf7036afef to your computer and use it in GitHub Desktop.
Save helenaford/ac30819baf698d8ae0bcf6bf7036afef to your computer and use it in GitHub Desktop.
RNFirebase Part 2 - AndroidManifest.xml
<application>
...
<!-- schedule local notification -->
<receiver android:name="io.invertase.firebase.notifications.RNFirebaseNotificationReceiver"/>
<receiver android:enabled="true" android:exported="true" android:name="io.invertase.firebase.notifications.RNFirebaseNotificationsRebootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment