If your app needs to redirect data to a specific zone due to a data regulation policy, please configure the zone in the MoEngage initializer object. Pass the data center as the third argument to MoEngage.Builder.
// this is the instance of the application class and "YOUR_WORKSPACE_ID" is the APP ID from the dashboard.val moEngage = MoEngage.Builder( application = this, appId = "YOUR_WORKSPACE_ID", dataCenter = DataCenter.DATA_CENTER_X ) .build()MoEngage.initialiseDefaultInstance(moEngage)
// this is the instance of the application class and "YOUR_WORKSPACE_ID" is the APP ID from the dashboard.MoEngage moEngage = new MoEngage.Builder(this, "YOUR_WORKSPACE_ID", DataCenter.DATA_CENTER_X) .build();MoEngage.initialiseDefaultInstance(moEngage);
The following details the different data centers and dashboard hosts
Data Center
Dashboard host
DATA_CENTER_1
dashboard-01.moengage.com
DATA_CENTER_2
dashboard-02.moengage.com
DATA_CENTER_3
dashboard-03.moengage.com
DATA_CENTER_4
dashboard-04.moengage.com
DATA_CENTER_5
dashboard-05.moengage.com
DATA_CENTER_6
dashboard-06.moengage.com
ImportantThe dashboard host URL provides the Data Center information of your account. Ensure that you contact your account manager or raise a support ticket to know the data center before you change the data center in the Android SDK.
⌘I
Assistant
Responses are generated using AI and may contain mistakes.