ExtractCallback

interface ExtractCallback

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

Example usage (kotlin):

// Async extract call
LiveUpdateManager.extractUpdate("appId", zipFile, object : ExtractCallback {
override fun onComplete(result: File?) {
println(response?.path)
}
})

Example usage (Java):

// Async extract call
LiveUpdateManager.extractUpdate(getContext(), zipFile, extractedFile -> {
// Do something with file
});

Functions

Link copied to clipboard
abstract fun onComplete(file: File?)

Called when the extract process is complete.