This configuration key will be sent by Hands and it contains the setup ID for your application, with each application containing their specific ID.
The configuration key must be used to initialize MDMCore module, which in turn is responsible for starting the other MDM modules.
The library is started asynchronously. It is recommended to initialize the SDK in the Application’s onCreate event:
String appId = "YOUR_APP_ID";
MDMCore.start(getApplicationContext(), appId, new OnStartListener() {
@Override
public void onStart() {
// Modules to start
}
});