Extract
    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)
    }
})Content copied to clipboard
Example usage (Java):
// Async extract call
LiveUpdateManager.extractUpdate(getContext(), zipFile, extractedFile -> {
    // Do something with file
});Content copied to clipboard