Enable Custom Manifest File
Navigate to Build Settings and switch the platform to Android. Then go to Player Settings —> Player —> Android —> Publishing Settings.Under the Build Heading check Custom Main Manifest.

Adding Dependencies
MoEngage plugin depends on the following Jetpack libraries. In case you don’t have them in your application already, please add them.You can choose to enable the custom gradle template in your Application’s Player Settings and the below dependencies.
Add Application Class
- Create a Java/Kotlin class and add it to the Assets —> Plugins —> Android folder. Extend the class with android.app.Application and override the onCreate().
- Declare the above-created class in the Manifest file inside the application tag.
SDK Initialization
Get the WorkspaceID from the Settings Page****Dashboard —> Settings —> Workspace —> General on the MoEngage dashboard and initialize the MoEngage SDK in the Application class’s onCreate() method.It is recommended that you initialize the SDK on the main thread inside onCreate() and not create a worker thread and initialize the SDK on that thread.
| Data Center | Dashboard host |
|---|---|
| DataCenter.DATA_CENTER_1 | dashboard-01.moengage.com |
| DataCenter.DATA_CENTER_2 | dashboard-02.moengage.com |
| DataCenter.DATA_CENTER_3 | dashboard-03.moengage.com |
| DataCenter.DATA_CENTER_4 | dashboard-04.moengage.com |
| DataCenter.DATA_CENTER_5 | dashboard-05.moengage.com |
All the configurations are added to the builder before initialization. If you are calling initialize at multiple places, ensure that all the required flags and configurations are set each time you initialize to maintain consistency in behavior.