onResult

abstract fun onResult(@Nullable intent: Intent, @Nullable t: Throwable)

This callback is used to notify the application that the request to check for a post-app install deep link is complete. If a deep link was found, it will be returned here. If an error was encountered while making the request, it will optionally be returned here.

Parameters

intent

if a post-install link was found it will be returned here in the intent data. The intent can be started to navigate the user to the appropriate location in the app. If no post-install intent was found, this param will be null.

t

if an error was encountered while making the request it will be returned in this param, otherwise null.