AnylyticsInterface

The main interface for interacting with the Anylytics library.

This interface defines methods for tracking different types of events, such as screen views and user actions. Implement this interface to integrate Anylytics into your application.

Inheritors

Functions

Link copied to clipboard
open fun trackAction(actionName: String)

Tracks a user action event.

abstract fun trackAction(action: Event.Action)

Tracks a user action event using a predefined Event.Action object.

Link copied to clipboard
open fun trackScreen(screenName: String)

Tracks a screen view event.

abstract fun trackScreen(view: Event.View)

Tracks a screen view event using a predefined Event.View object.