> ## Documentation Index
> Fetch the complete documentation index at: https://moengage.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Data Center

> Configure data center redirection in the MoEngage Android SDK to comply with your data policies.

# Data Redirection

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*](https://moengage.github.io/android-api-reference/core/com.moengage.core/-mo-engage/-builder/index.html).

<CodeGroup>
  ```kotlin Kotlin wrap theme={null}
  // 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_1
      )
      .build()
  MoEngage.initialiseDefaultInstance(moEngage)
  ```

  ```java Java theme={null}
  // 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_1)
      .build();
  MoEngage.initialiseDefaultInstance(moEngage);
  ```
</CodeGroup>

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 |

<Warning>
  **Important**

  The dashboard host URL provides the Data Center information of your account. Ensure that you contact your account manager or [raise a support ticket](https://www.moengage.com/docs/user-guide/contact-support/raise-a-support-ticket-through-moengage-dashboard) to know the data center before you change the data center in the Android SDK.
</Warning>
