Initializing the SDK | SDK Implementation Guide

To Initialize the xGrowth SDK call the intitializeSDK() function in the application class of the app. It is recommended to call the function as soon as possible.

The initializeSDK() function returns a list of AdapterStatus. Call it like one of the examples below.

Java
AdSter.INSTANCE.initializeSdk(getApplicationContext(), AdapterStatus -> {
    // Initialization completes here
});
circle-info

All ad load requests must be made only after the SDK initialization completes.

Last updated