Skip to content

refactor: Migrate Internal listeners class to kotlin (#520) #548

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

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions android-core/src/main/java/com/mparticle/SdkListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Note: This is an Experimental feature. Adding an instance of SdkListener will slow down the SDK and
* should be used only in development.
*
* <p>
* SdkListener is a new feature which enables updates on and visibility into internal Events occuring
* inside the SDK.
*/
Expand Down Expand Up @@ -123,7 +123,7 @@ public void onKitStarted(int kitId) {
* @param kitId the id of the kit, corresponse with a {@link com.mparticle.MParticle.ServiceProviders}
* @param reason a message containing the reason a kit was stopped
*/
public void onKitExcluded(int kitId, @NonNull String reason) {
public void onKitExcluded(int kitId, @Nullable String reason) {

}

Expand Down

This file was deleted.

This file was deleted.

Loading
Loading