Created
February 6, 2019 08:31
-
-
Save ecdundar/2be73d0d89b6dc1a9af76a0189da11b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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