Skip to main content

Initialize React-Native Component

Initialize the MoEngage Plugin in the App.js or App*.***ts of your application once the component is mounted.
import ReactMoE from 'react-native-moengage';
ReactMoE.initialize("YOUR_Workspace_ID");
Example
import ReactMoE from 'react-native-moengage';
useEffect(() => {
    ReactMoE.initialize("YOUR_Workspace_ID");
}, []);
If you have a class-based component then you can initialize in the render() or componentDidMount()

Initialize with Configuration (optional)

import ReactMoE from 'react-native-moengage';
import { MoEInitConfig, MoEPushConfig, MoEngageLogConfig, MoEngageLogLevel } from "react-native-moengage";
const moEInitConfig = new MoEInitConfig(
  MoEPushConfig.defaultConfig(),
  new MoEngageLogConfig(MoEngageLogLevel.DEBUG, isEnabledForReleaseBuild)
);
ReactMoE.initialize(YOUR Workspace ID, moEInitConfig);
Make sure you are setting the Push/InApp callback listeners before calling the initialize().
Refer to the following for platform-specific initialization: For more information about samples, refer to React-Native Sample App.