@@ -807,6 +807,7 @@ public void trackInboxSession(@NonNull IterableInboxSession session) {
807
807
* (DEPRECATED) Tracks an in-app open
808
808
* @param messageId
809
809
*/
810
+ @ Deprecated
810
811
public void trackInAppOpen (@ NonNull String messageId ) {
811
812
IterableLogger .printInfo ();
812
813
if (!checkSDKInitialization ()) {
@@ -821,6 +822,7 @@ public void trackInAppOpen(@NonNull String messageId) {
821
822
* @param messageId the ID of the in-app message
822
823
* @param location where the in-app was opened
823
824
*/
825
+ @ Deprecated
824
826
void trackInAppOpen (@ NonNull String messageId , @ NonNull IterableInAppLocation location ) {
825
827
IterableLogger .printInfo ();
826
828
IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
@@ -837,6 +839,7 @@ void trackInAppOpen(@NonNull String messageId, @NonNull IterableInAppLocation lo
837
839
* @param clickedUrl the URL of the clicked link
838
840
* @param location where the in-app was opened
839
841
*/
842
+ @ Deprecated
840
843
void trackInAppClick (@ NonNull String messageId , @ NonNull String clickedUrl , @ NonNull IterableInAppLocation location ) {
841
844
IterableLogger .printInfo ();
842
845
IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
@@ -852,6 +855,7 @@ void trackInAppClick(@NonNull String messageId, @NonNull String clickedUrl, @Non
852
855
* @param messageId the ID of the in-app message
853
856
* @param clickedUrl the URL of the clicked link
854
857
*/
858
+ @ Deprecated
855
859
public void trackInAppClick (@ NonNull String messageId , @ NonNull String clickedUrl ) {
856
860
if (!checkSDKInitialization ()) {
857
861
return ;
@@ -867,6 +871,7 @@ public void trackInAppClick(@NonNull String messageId, @NonNull String clickedUr
867
871
* @param closeAction the method of how the in-app was closed
868
872
* @param clickLocation where the in-app was closed
869
873
*/
874
+ @ Deprecated
870
875
void trackInAppClose (@ NonNull String messageId , @ NonNull String clickedURL , @ NonNull IterableInAppCloseAction closeAction , @ NonNull IterableInAppLocation clickLocation ) {
871
876
IterableInAppMessage message = getInAppManager ().getMessageById (messageId );
872
877
if (message != null ) {
0 commit comments