> ## Documentation Index
> Fetch the complete documentation index at: https://moengage-sdk-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Install/Update differentiation

This is solely required for migration to the MoEngage Platform. We need your help to tell the SDK whether the user is a new user for on your app(first Install) or an existing user who has updated to the latest version.

Make use of the **setAppStatus** method as shown below to track Install/Update as shown below:

<CodeGroup>
  ```javascript JavaScript theme={"theme":{"light":"github-light","dark":"github-dark"}}
  var moe = MoECordova.init(YOUR_Workspace_ID);
  // For fresh Install
  moe.setAppStatus("INSTALL");
  // For tracking App Update
  moe.setAppStatus("UPDATE");
  ```
</CodeGroup>
