Skip to content

Instantly share code, notes, and snippets.

@ecdundar
Created February 6, 2019 08:31
Show Gist options
  • Save ecdundar/2be73d0d89b6dc1a9af76a0189da11b4 to your computer and use it in GitHub Desktop.
Save ecdundar/2be73d0d89b6dc1a9af76a0189da11b4 to your computer and use it in GitHub Desktop.
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<application>
<receiver android:name="com.evollu.react.fcm.FIRLocalMessagingPublisher"/>
<receiver android:enabled="true" android:exported="true" android:name="com.evollu.react.fcm.FIRSystemBootEventReceiver">
<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