SDK Configuration
Get the Workspace ID from the Settings Page of the dashboard Dashboard --> Settings --> App --> General on the MoEngage dashboard and initialize the MoEngage SDK in the Application class onCreate().
info |
Note Initialize the SDK on the main thread inside onCreate() and not create a worker thread and initialize the SDK on that thread. |
import com.moengage.core.DataCenter
import com.moengage.core.MoEngage
val moEngage = MoEngage.Builder(this, "YOUR_Workspace_ID", DataCenter.DATA_CENTER_X)
.build()
//replace X with your data center number
MoEngage.initialiseDefaultInstance(moEngage)
import com.moengage.core.DataCenter;
import com.moengage.core.MoEngage;
MoEngage moEngage = new MoEngage.Builder(this, "YOUR_Workspace_ID", DataCenter.DATA_CENTER_X)
.build();
MoEngage.initialiseDefaultInstance(moEngage);
Following details of the different data centers you need to set based on the dashboard hosts
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 |
DataCenter.DATA_CENTER_6 |
dashboard-06.moengage.com |
For more information about the detailed list of possible configurations, refer to the API reference.
warning |
Critical 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. |