Package-level declarations

Properties

Link copied to clipboard

Global key used to obtain access to the Anylytics Interface through a CompositionLocal.

Functions

Link copied to clipboard
fun TrackAction(actionName: String, analyticsInterface: AnylyticsInterface = LocalAnylyticsInterface.current)

A Composable function that tracks user actions using just an action name.

fun TrackAction(analyticsAction: Event.Action, analyticsInterface: AnylyticsInterface = LocalAnylyticsInterface.current)

A Composable function that tracks user actions using an Event.Action object.

Link copied to clipboard
fun TrackScreen(screenName: String, analyticsInterface: AnylyticsInterface = LocalAnylyticsInterface.current)

A Composable function that tracks screen views using just a screen name.

fun TrackScreen(view: Event.View, analyticsInterface: AnylyticsInterface = LocalAnylyticsInterface.current)

A Composable function that tracks screen views using an Event.View object.