Skip to content

Commit 8be4fc1

Browse files
committed
Reorder
1 parent 49ed365 commit 8be4fc1

File tree

1 file changed

+10
-6
lines changed
  • docs/platforms/native/advanced-usage/external-crash-reporter

1 file changed

+10
-6
lines changed

docs/platforms/native/advanced-usage/external-crash-reporter/index.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,19 @@ system crash reporter, that is launched by the Native SDK upon a crash. It
1212
receives the path to the crash report as its only command-line argument and
1313
is responsible for submitting the crash report to Sentry.
1414

15+
[Sentry Desktop Crash Reporter](https://github.com/getsentry/sentry-desktop-crash-reporter)
16+
is a ready-made crash reporter reference implementation. It is a cross-platform
17+
desktop application made with [.NET](https://dot.net) and [Uno Platform](https://platform.uno/).
18+
19+
![Sentry Desktop Crash Reporter](./img/sentry-desktop-crash-reporter.png)
20+
21+
To configure the Native SDK to use an external crash reporter, set the
22+
`external_crash_reporter_path` option to the path of the external crash reporter
23+
executable when initializing the SDK:
24+
1525
```c
1626
sentry_options_t *options = sentry_options_new();
1727
sentry_options_set_external_crash_reporter_path(options, "/path/to/external_crash_reporter");
1828
/* ... */
1929
sentry_init(options);
2030
```
21-
22-
![Sentry Desktop Crash Reporter](./img/sentry-desktop-crash-reporter.png)
23-
24-
<Alert title="Tip">
25-
[Sentry Desktop Crash Reporter](https://github.com/getsentry/sentry-desktop-crash-reporter) is a ready-made crash reporter reference implementation. It is a cross-platform desktop application made with [.NET](https://dot.net) and [Uno Platform](https://platform.uno/).
26-
</Alert>

0 commit comments

Comments
 (0)