@@ -807,6 +807,7 @@ public void trackInboxSession(@NonNull IterableInboxSession session) {
807807 * (DEPRECATED) Tracks an in-app open
808808 * @param messageId
809809 */
810+ @ Deprecated
810811 public void trackInAppOpen (@ NonNull String messageId ) {
811812 IterableLogger .printInfo ();
812813 if (!checkSDKInitialization ()) {
@@ -821,6 +822,7 @@ public void trackInAppOpen(@NonNull String messageId) {
821822 * @param messageId the ID of the in-app message
822823 * @param location where the in-app was opened
823824 */
825+ @ Deprecated
824826 void trackInAppOpen (@ NonNull String messageId , @ NonNull IterableInAppLocation location ) {
825827 IterableLogger .printInfo ();
826828 IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
@@ -837,6 +839,7 @@ void trackInAppOpen(@NonNull String messageId, @NonNull IterableInAppLocation lo
837839 * @param clickedUrl the URL of the clicked link
838840 * @param location where the in-app was opened
839841 */
842+ @ Deprecated
840843 void trackInAppClick (@ NonNull String messageId , @ NonNull String clickedUrl , @ NonNull IterableInAppLocation location ) {
841844 IterableLogger .printInfo ();
842845 IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
@@ -852,6 +855,7 @@ void trackInAppClick(@NonNull String messageId, @NonNull String clickedUrl, @Non
852855 * @param messageId the ID of the in-app message
853856 * @param clickedUrl the URL of the clicked link
854857 */
858+ @ Deprecated
855859 public void trackInAppClick (@ NonNull String messageId , @ NonNull String clickedUrl ) {
856860 if (!checkSDKInitialization ()) {
857861 return ;
@@ -867,6 +871,7 @@ public void trackInAppClick(@NonNull String messageId, @NonNull String clickedUr
867871 * @param closeAction the method of how the in-app was closed
868872 * @param clickLocation where the in-app was closed
869873 */
874+ @ Deprecated
870875 void trackInAppClose (@ NonNull String messageId , @ NonNull String clickedURL , @ NonNull IterableInAppCloseAction closeAction , @ NonNull IterableInAppLocation clickLocation ) {
871876 IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
872877 if (message != null ) {
0 commit comments