Differentiate between app installs and updates in your React Native app using MoEngage setAppStatus.
During integration if your app is already on the App Store, MoEngage would need to know whether your app update would be an actual UPDATE or an INSTALL.Have logic in place to differentiate Install and Update and make use of the setAppStatus() method to track the same as described:
import ReactMoE, { MoEAppStatus,} from "react-native-moengage";//For Fresh Install of AppReactMoE.setAppStatus(MoEAppStatus.Install); // For Existing user who has updated the appReactMoE.setAppStatus(MoEAppStatus.Update);