Skip to content

2.0.0

Compare
Choose a tag to compare
@orhanobut orhanobut released this 04 Jun 09:27
· 9 commits to master since this release
  • 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)
  • Consumer proguard rules added
  • Kotlin support added
  • How it works added
    screen shot 2017-06-04 at 10 31 44