From 3e8edb7e9f1f4e947a54feadd3903c5e93fd9859 Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Tue, 23 May 2023 16:29:33 +0000 Subject: [PATCH] Set the native sdk name for Android (#2389) * Set Native SDK name on Android * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ src/Sentry/Platforms/Android/SentrySdk.cs | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8368836ea7..71b1efe35f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +## Fixes + +- Set the native sdk name for Android ([#2389](https://github.com/getsentry/sentry-dotnet/pull/2389)) + ## 3.33.0 ### Features diff --git a/src/Sentry/Platforms/Android/SentrySdk.cs b/src/Sentry/Platforms/Android/SentrySdk.cs index 01c25f5efc..232ec39df2 100644 --- a/src/Sentry/Platforms/Android/SentrySdk.cs +++ b/src/Sentry/Platforms/Android/SentrySdk.cs @@ -163,6 +163,7 @@ private static void InitSentryAndroidSdk(SentryOptions options) o.EnableExternalConfiguration = false; o.EnableDeduplication = false; o.AttachServerName = false; + o.NativeSdkName = "sentry.native.dotnet"; // These options are intentionally not expose or modified //o.MaxRequestBodySize // N/A for Android apps