Basic Configuration
To use Push Notification in your React Native application, you need to configure Firebase into your application; refer to the following documentation to configure Push Notification in your application.
In case your application is handling the push token registration and push payload, we highly recommend you use the native Android methods(mentioned in the documentation above) for passing the token and the payload to the SDK. If, for whatever reason, you wish to pass the push token and payload to the SDK via the React component/Javascript code uses the below APIs
Passing Push Token
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.passFcmToken()
Passing Push Payload
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.passFcmPayload()
info |
Note Passing payload and token from JavaScript is only supported for Firebase Messaging Service. |
warning |
Note We recommend that you use the Android native APIs for passing the push payload to the MoEngage SDK instead of the Cordova/JavaScript APIs. Cordova Engine might not get initialized if the application is in the killed state, leading to poor push reachability or delivery. |
Customizing Push notification
If required the application can customize the behavior of notifications by using Native Android code (Java/Kotlin). To learn more about the customization refer to the Advanced Push Configuration documentation.Instead of extending PushMessageListener as mentioned in the above document extend PluginPushCallback.
Refer to the below documentation for Push Amp+, Push Templates, and Geofence.