Interface PostInstallIntentListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void onResult(@Nullable() Intent intent, @Nullable() Throwable t) This callback is used to notify the application that the request to check for a post-app install deep link is complete.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • onResult

         abstract void onResult(@Nullable() Intent intent, @Nullable() Throwable t)

        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.
        t - if an error was encountered while making the request it will be returned in this param, otherwise null.