Capturing Context In Key Moments

Learn how your app’s screens and user actions correlate with real-world user contexts.

Our SDK provides event tracking APIs to capture user interactions within your app, enabling insights into usage across real-world contexts.

Logging these events is optional and for informational purposes only. It will not influence your app's behavior.

Page Views

Track when users navigate between different screens. This data helps you understand which screens users interact with most frequently in various real-world contexts.

ContextManager.trackPageView("page_identifier")

User Actions

Record specific user actions, such as enabling a feature, tapping buttons, creating accounts, or sharing content. Capturing these events helps you gain insights into how user interactions correlate with different real-world scenarios.

ContextManager.trackUserAction("user_tapped_share_button")

Generic Events

Track custom events that don't fall under the other categories. Alternatively, add this to your existing analytics code to easily log all your existing events into ContextSDK, allowing us to provide you insights without much effort.

ContextManager.trackEvent("custom_event")

Last updated

Was this helpful?