Analytics

Some analytic events are recorded out-of-box:

  • Activity/Fragment changes
  • Focus changes
  • Clicked views
  • Application crashes
  • For everything else, custom events can be used

Custom event

A simple custom event can be created by calling:

Smartlook.trackCustomEvent(name: string);

Custom event also accepts a dictionary of string key/values as event properties.

Smartlook.trackCustomEvent(name: string, properties = {});

Navigation event

Screen/navigation transitions can be manually tracked by calling:

Smartlook.trackNavigationEvent(screenName: string, viewState: Smartlook.ViewState);

Timed event

Duration of any time-sensitive or long-running actions in the application can be measured using timed events. A timed event can be started by using the following:

Smartlook.startTimedCustomEvent("sample_timed_event", {prop: "propValue"});

This will not send out any events but will return a unique eventId that needs to be stored and it is then used to stop/cancel a custom timed event. To send out an event with a duration, stop needs to be called:

Smartlook.stopTimedCustomEvent("event_id", {prop: "propValue"});

with corresponding eventId obtained from startTimedCustomEvent.

📘

Properties set in start will be merged with properties set in stop/cancel. Properties from stop/cancel have a higher priority and will rewrite conflicting properties from the start.

In case a given action failed cancelTimedCustomEvent() can be called instead of stopTimedCustomEvent() it has an extra field used for the reason of any failure:

Smartlook.stopTimedCustomEvent("event_id", "reason", {prop: "propValue"});

Global event properties

Extra properties can be attached to every event, these properties are called global event properties. Global event properties can be set by calling:

Smartlook.setGlobalEventProperty(key: string, value: string, immutable = false);
Smartlook.setGlobalEventProperties(properties: {}, immutable = false);

Properties set to be immutable have the highest priority and once set they cannot be overridden (only removed).

📘

Global event properties have higher a priority so in the merging process they will override custom properties with the same key.

Remove global event properties

A global property with a given key can be removed:

Smartlook.removeGlobalEventProperty(key: string);

Or all global event properties can be removed at once:

Smartlook.removeAllGlobalEventProperties();

📘

Global event properties are stored until they are not removed or the app is uninstalled.

Event tracking modes

It can be beneficial to disable some automatically detected events due to security or usability reasons. This can be done using event tracking modes:

  • Smartlook.EventTrackingMode.FullTracking: this a default state. SDK tracks all automatically detected events along with all user defined events.
  • Smartlook.EventTrackingMode.IgnoreUserInteraction: disables automatically detected selector (click on a View), focus, touch, gesture and keyboard events.
  • Smartlook.EventTrackingMode.IgnoreNavigationInteraction: disables automatically detected navigation events. User defined ones are still being sent.
  • Smartlook.EventTrackingMode.IgnoreRageClicks: disables automatic detection and tracking of rage click events.
  • Smartlook.EventTrackingMode.NoTracking: no automatically detected events are tracked. Only user defined events are still tracked.

Set event tracking modes

Single or a combination of event tracking modes can be set any time after SDK setup by using the following:

Smartlook.setEventTrackingMode(eventTrackingMode: Smartlook.EventTrackingMode);
Smartlook.setEventTrackingModes(eventTrackingModes: Smartlook.EventTrackingMode[]);
Smartlook.setEventTrackingMode(Smartlook.EventTrackingMode.IgnoreUserInteraction);
Smartlook.setEventTrackingModes([Smartlook.EventTrackingMode.IgnoreUserInteraction, Smartlook.EventTrackingMode.IgnoreRageClicks]);

👍

Next reading

  • Further info about event tracking modes could be found in the Event Tracking conceptual document.
  • Also take a look at the pin code keyboard sample, demonstrating usage of analytic event modes.