Skip to main content

CheckCallback

The Check Callback interface is used to provide completion behavior when using the asynchronous LiveUpdateManager.checkForUpdate() method.

Methods

onComplete

static

Called when the LiveUpdateManager.checkForUpdate() method has finished.

Usage

// Async check call
LiveUpdateManager.checkForUpdate(context, "appId", object : CheckCallback {
override fun onComplete(result: CheckResponse?) {
// Do something with the result
}
})

Parameters

NameTypeDescription
responseCheckResponseCheck response model containing result data if successful or error information if failed.