Skip to content

Commit

Permalink
Update sdk-android.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
Atul-Butola authored Nov 7, 2024
1 parent d184b66 commit 81dd110
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fern/docs/pages/plug-sdk/sdk-android.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ If session recording was disabled for the user using the `stopAllMonitoring()` m
This feature only stores a monitoring permission flag and does not provide any user interface or dialog.
</Callout>

## Session recording
### Session recording

You can enable session recording to capture user interactions with your app.

Expand All @@ -339,7 +339,7 @@ Here are the available methods to help you control the session recording feature
| DevRev.pauseRecording() | DevRevObservabilityExtKt.pauseRecording(DevRev.INSTANCE); | Pauses the ongoing session recording. |
| DevRev.resumeRecording() | DevRevObservabilityExtKt.resumeRecording(DevRev.INSTANCE); | Resumes a paused session recording. |

## Session properties
### Session properties

You can add custom properties to the session recording to help you understand the context of the session. The properties are defined as a dictionary of string values.

Expand Down Expand Up @@ -371,7 +371,7 @@ DevRevObservabilityExtKt.clearSessionProperties(DevRev.INSTANCE);
</Tab>
</Tabs>

## Timers
### Timers

The DevRev SDK offers a timer mechanism to measure the time spent on specific tasks, allowing you to track events such as response time, loading time, or any other duration-based metrics.

Expand Down Expand Up @@ -430,7 +430,7 @@ DevRevObservabilityExtKt.endTimer(DevRev.INSTANCE, "response-time", new HashMap<
</Tab>
</Tabs>

## Screen tracking
### Screen tracking

The DevRev SDK offers automatic screen tracking to help you understand how users navigate through your app. Although activities are automatically tracked, you can manually track screens or fragments using the following method:

Expand Down

0 comments on commit 81dd110

Please sign in to comment.