Unity In App
In-App Notifications
In-app notifications are pop-ups that you can show to your users while they are in your application.
In-App Notification Button onClick callback
To handle on In-App Button Click add the following code snippet:
void CleverTapInAppNotificationButtonTapped(string message)
{
Debug.Log("unity received inapp notification button clicked: " + (!String.IsNullOrEmpty(message) ? message : "NULL"));
}
In-App Notification Button on Dismissed callback
To handle Dismissed callback:
void CleverTapInAppNotificationDismissedCallback(string message)
{
Debug.Log("unity received inapp notification dismissed: " + (!String.IsNullOrEmpty(message) ? message : "NULL"));
}
Updated about 1 year ago