We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The plugin doent work with kotlin files
The text was updated successfully, but these errors were encountered:
for example:
findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { @TrackEvent("button_click") @FixedAttribute(key = "button_name", value = "Login") @Override public void onClick(View v) { new KotlinObject().track(); new JavaObject().track(); } });
class KotlinObject { @TrackEvent("event_kotlin_object") fun track() { } }
Log: no any event
Sorry, something went wrong.
but java class works:
class JavaObject { @TrackEvent("event_java_object") void track() { } }
Log:
2020-06-05 17:10:21.868 12772-12772/com.orhanobut.sample D/Tracker: event_java_object-> {}, super attrs: {}, filters: []
fixed in #49
No branches or pull requests
The plugin doent work with kotlin files
The text was updated successfully, but these errors were encountered: