Get APP 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 APP ID from the dashboard.
val moEngage = new MoEngage.Builder(this, "XXXXXXXXXXX")
MoEInitializer.initialize(appplicationContext, moEngage)
// this is the instance of the application class and "XXXXXXXXXXX" is the APP ID from the dashboard.
MoEngage.Builder moEngage = MoEngage.Builder(this, "XXXXXXXXXXX");
MoEInitializer.initialize(getApplicationContext(), moEngage);
Refer to the API reference doc for a detailed list of possible configurations.
warning |
Note All the configurations should be added to the builder before calling initialize. If you are calling initialize at multiple places please ensure that all the required flags and configuration are set each time you initialize to maintain consistency in behavior. |