Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EventSource.REMOVE_IDENTITY #294

Merged
merged 1 commit into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/android-core-library/api/android-core-library.api
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public final class com/adobe/marketing/mobile/EventSource {
public static final field ERROR_RESPONSE_CONTENT Ljava/lang/String;
public static final field NONE Ljava/lang/String;
public static final field OS Ljava/lang/String;
public static final field REMOVE_IDENTITY Ljava/lang/String;
public static final field REQUEST_CONTENT Ljava/lang/String;
public static final field REQUEST_IDENTITY Ljava/lang/String;
public static final field REQUEST_PROFILE Ljava/lang/String;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ private EventSource() {}
public static final String UPDATE_CONSENT = "com.adobe.eventSource.updateConsent";
public static final String RESET_COMPLETE = "com.adobe.eventSource.resetComplete";
public static final String UPDATE_IDENTITY = "com.adobe.eventSource.updateIdentity";
public static final String REMOVE_IDENTITY = "com.adobe.eventSource.removeIdentity";
public static final String ERROR_RESPONSE_CONTENT =
"com.adobe.eventSource.errorResponseContent";
}