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.
AdSter.INSTANCE.initializeSdk(getApplicationContext(), AdapterStatus -> {
// Initialization completes here
});AdSter.initializeSdk(getApplicationContext(), object : InitializationListener {
override fun onInitializationComplete(adapterStatus: List<AdapterStatus>) {
// Initialization completes here
}
})Last updated