Data Center
Configure data center redirection in the MoEngage Android SDK to comply with your data policies.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure data center redirection in the MoEngage Android SDK to comply with your data policies.
// this is the instance of the application class and "XXXXXXXXXXX" is the APP ID from the dashboard.
val moEngage = MoEngage.Builder(
application = this,
appId = "XXXXXXXXXXX",
dataCenter = DataCenter.DATA_CENTER_X
)
.build()
MoEngage.initialiseDefaultInstance(moEngage)
// this is the instance of the application class and "XXXXXXXXXXX" is the APP ID from the dashboard.
MoEngage moEngage = new MoEngage.Builder(this, "XXXXXXXXXXX", DataCenter.DATA_CENTER_X)
.build();
MoEngage.initialiseDefaultInstance(moEngage);
| 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 |
Was this page helpful?