Created
February 6, 2019 08:20
-
-
Save ecdundar/68b39e2b77b4c5257b204abfad5fd62b 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
+ <meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/ic_notif"/> | |
+ <service android:name="com.evollu.react.fcm.MessagingService" android:enabled="true" android:exported="true"> | |
+ <intent-filter> | |
+ <action android:name="com.google.firebase.MESSAGING_EVENT"/> | |
+ </intent-filter> | |
+ </service> | |
+ <service android:name="com.evollu.react.fcm.InstanceIdService" android:exported="false"> | |
+ <intent-filter> | |
+ <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> | |
+ </intent-filter> | |
+ </service> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment