Interface SwrveInstallButtonListener


  • public interface SwrveInstallButtonListener
    Implement this interface to handle callbacks of install buttons inside your in-app messages. Note: the methods in this interface will be invoked from the UI thread.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean onAction​(java.lang.String appStoreLink)
      This method is invoked when an install button has been pressed on an in-app message.
    • Method Detail

      • onAction

        boolean onAction​(java.lang.String appStoreLink)
        This method is invoked when an install button has been pressed on an in-app message.
        Parameters:
        appStoreLink - app store install link.
        Returns:
        boolean returning false stops the normal flow of event processing to enable custom logic. Return true otherwise.