From 763b2fff19cc11cc9d3ace5ec8c4d30612aaa790 Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Fri, 16 Feb 2024 01:41:33 -0800 Subject: [PATCH] chore(native): add note that standalone native sdk is experimental (#9164) --- platform-includes/getting-started-primer/native.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform-includes/getting-started-primer/native.mdx b/platform-includes/getting-started-primer/native.mdx index 3cff1b17b4d85..c63e0aca27083 100644 --- a/platform-includes/getting-started-primer/native.mdx +++ b/platform-includes/getting-started-primer/native.mdx @@ -1,5 +1,11 @@ The Sentry Native SDK is intended for C and C++. However, since it builds as a dynamic library and exposes C-bindings, it can be used by any language that supports interoperability with C, such as the Foreign Function Interface (FFI). + + +Using the `sentry-native` SDK in a standalone use case is currently an experimental feature. The SDK’s primary function is to fuel our other SDKs, like [`sentry-java`](https://github.com/getsentry/sentry-java) or [`sentry-unreal`](https://github.com/getsentry/sentry-unreal). Support from our side is best effort and we do what we can to respond to issues in a timely fashion, but please understand if we won’t be able to address your issues or feature suggestions. + + + Sentry also offers higher-level SDKs for platforms with built-in support for native crashes: - [_Android_](/platforms/android/)