CheckCallback

interface CheckCallback

A callback used to access the results of the Live Update update check process.

Example usage (kotlin):

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

Example usage (Java):

// Async check call
LiveUpdateManager.checkForUpdate(context, "appId", checkResponse -> {
// Do something with response
});

Functions

Link copied to clipboard
abstract fun onComplete(result: CheckResponse?)

Called when the update check process is complete.