Releases: orhanobut/tracklytics
Releases · orhanobut/tracklytics
2.1.0
2.0.0
- Sample module added
- DebugMonitor is removed
- @Tracklytics annotations are removed
- TrackingAdapter and SimpleTrackingAdapter are removed
- Tracker is renamed to Tracklytics
- Initialization format is changed.
Tracklytics.init(new EventSubscriber() {
@Override public void onEventTracked(Event event) {
// Send your events to Mixpanel, Fabric etc
}
});
- SuperAttribute annotations are deprecated.
- Execution time is removed from logs. (Performance reasons)
- Event type is added
- New public api for track event added.
tracklytics.trackEvent(String eventName)
tracklytics.trackEvent(String eventName, Map attributes)
- New public api for super attributes added
tracklytics.addSuperAttribute(String key, Object value)
tracklytics.removeSuperAttribute(String key)