Skip to content

Commit 0dab18a

Browse files
committed
Improve table structure
1 parent c10ec96 commit 0dab18a

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

fern/docs/pages/plug-sdk/android.mdx

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -514,13 +514,25 @@ The session recording feature is opt-out and is enabled by default.
514514

515515
Here are the available methods to help you control the session recording feature:
516516

517-
|Kotlin (`DevRev`) |Java (`DevRevObservabilityExtKt`) |Action |
518-
|---|---|---|
519-
| `startRecording()` | `startRecording(DevRev.INSTANCE, context);` | Starts the session recording. |
520-
| `stopRecording()` | `stopRecording(DevRev.INSTANCE);` | Stops the session recording and uploads it to the portal. |
521-
| `pauseRecording()` | `pauseRecording(DevRev.INSTANCE);` | Pauses the ongoing session recording. |
522-
| `resumeRecording()` | `resumeRecording(DevRev.INSTANCE);` | Resumes a paused session recording. |
523-
| `processAllOnDemandSessions()` | `processAllOnDemandSessions(DevRev.INSTANCE);` | Stops the ongoing user recording and uploads all offline sessions on demand, including the current one. |
517+
- Kotlin
518+
519+
| Method | Action |
520+
|----------------------------------------|------------------------------------------------------------------------|
521+
| `DevRev.startRecording()` | Starts the session recording. |
522+
| `DevRev.stopRecording()` | Stops the session recording and uploads it to the portal. |
523+
| `DevRev.pauseRecording()` | Pauses the ongoing session recording. |
524+
| `DevRev.resumeRecording()` | Resumes a paused session recording. |
525+
| `DevRev.processAllOnDemandSessions()` | Stops the ongoing user recording and uploads all offline sessions on demand, including the current one. |
526+
527+
- Java
528+
529+
| Method | Action |
530+
|-----------------------------------------------------------------------------|------------------------------------------------------------------------|
531+
| `DevRevObservabilityExtKt.startRecording(DevRev.INSTANCE, context);` | Starts the session recording. |
532+
| `DevRevObservabilityExtKt.stopRecording(DevRev.INSTANCE);` | Stops the session recording and uploads it to the portal. |
533+
| `DevRevObservabilityExtKt.pauseRecording(DevRev.INSTANCE);` | Pauses the ongoing session recording. |
534+
| `DevRevObservabilityExtKt.resumeRecording(DevRev.INSTANCE);` | Resumes a paused session recording. |
535+
| `DevRevObservabilityExtKt.processAllOnDemandSessions(DevRev.INSTANCE);` | Stops the ongoing user recording and uploads all offline sessions on demand, including the current one. |
524536

525537
Using this property will return the status of the session recording:
526538

0 commit comments

Comments
 (0)