Check Callback
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
}
})
Content copied to clipboard
Example usage (Java):
// Async check call
LiveUpdateManager.checkForUpdate(context, "appId", checkResponse -> {
// Do something with response
});
Content copied to clipboard