Skip to content

Releases: orhanobut/tracklytics

2.1.0

27 Feb 11:24
0d2e1bc
Compare
Choose a tag to compare
  • All dependencies are updated. E.g. com.android.tools.build:gradle:3.3.0 Thanks @Kolyall

2.0.0

04 Jun 09:27
Compare
Choose a tag to compare
  • 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

1.3.0

04 Jun 08:35
Compare
Choose a tag to compare
Bump version to 1.3.0