Skip to content

Commit ad081e7

Browse files
committed
add deprecation tags
1 parent 4c92a3c commit ad081e7

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java

+5
Original file line numberDiff line numberDiff line change
@@ -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) {

iterableapi/src/main/java/com/iterable/iterableapi/IterableConfig.java

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public class IterableConfig {
3535
* When set to true, it will check for deferred deep links on first time app launch
3636
* after installation.
3737
*/
38+
@Deprecated
3839
final boolean checkForDeferredDeeplink;
3940

4041
/**

0 commit comments

Comments
 (0)