Commit 44fdeda6 authored by Libin Lu's avatar Libin Lu Committed by GitHub

Update README.md

parent 959915cd
...@@ -355,9 +355,12 @@ Or you can send `data` using FCM and build a local notification ...@@ -355,9 +355,12 @@ Or you can send `data` using FCM and build a local notification
check out [official docs and see if they support](https://firebase.google.com/docs/cloud-messaging/concept-options) check out [official docs and see if they support](https://firebase.google.com/docs/cloud-messaging/concept-options)
#### I want to add advanced feature that FCM doesn't support for remote notification #### I want to add advanced feature that FCM doesn't support for remote notification
You can either wait for FCM to develop it or you have to write native code to create notifications You can either wait for FCM to develop it or you have to write native code to create notifications.
for iOS, you can do it in `didReceiveRemoteNotification` in `appDelegate.m` for iOS, you can do it in `didReceiveRemoteNotification` in `appDelegate.m`
for android, you can do it by implementing a service similar to "com.evollu.react.fcm.MessagingService" for android, you can do it by implementing a service similar to "com.evollu.react.fcm.MessagingService"
Or if you have a good way to wake up react native javascript thread please let me know, although I'm worring waking up the whole application is too expensive. Or if you have a good way to wake up react native javascript thread please let me know, although I'm worring waking up the whole application is too expensive.
#### Some features are missing #### Some features are missing
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment