Get Workspace ID from the Settings Page Dashboard --> Settings --> App --> General
on the MoEngage dashboard and initialize the MoEngage SDK in the Application
class's onCreate()
.
info |
Note It is recommended that you initialize the SDK on the main thread inside |
// this is the instance of the application class and "XXXXXXXXXXX" is the Workspace ID from the dashboard.
MoEngage.Builder moEngage =
new MoEngage.Builder(this, "XXXXXXXXXXX");
MoEInitializer.INSTANCE.initialize(getApplicationContext(), moEngage);
In case you are facing issues with the import add the below import statement in your java file.
import com.moe.pushlibrary.MoEHelper;
import com.moengage.core.MoEngage;
import com.moengage.react.MoEInitializer;
Refer to the API reference doc for a detailed list of possible configurations.