Data Redirection

In case your app wants to re-direct data to a specific zone because of any data regulation policy please configure the zone in the MoEngage initialiser object.

MoEngage moEngage =
        new MoEngage.Builder(this, "XXXXXXXXXXX")
            .redirectDataToRegion()
            .build();
    MoEngage.initialise(moEngage);

Currently supported regions constants.

/**
* Enum to redirect data to European Region
*/
REGION_EU
/**
* Enum to redirect data to India Region
*/
REGION_SERV3,

Note redirection of data to India Region is supported only from SDK version 10.0.02 and above.