Skip to content

Commit a18bef3

Browse files
authored
fix: sdk name for native on android (#3682)
* fix: sdk name for native on android * changelog
1 parent 1325088 commit a18bef3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Make `Sentry.AspNetCore.Blazor.WebAssembly` generally available. ([#3674](https://github.com/getsentry/sentry-dotnet/pull/3674))
88

9+
### Fixes
10+
11+
- Events from NDK on Android will report sdk.name `sentry.native.android.dotnet` ([#3682](https://github.com/getsentry/sentry-dotnet/pull/3682))
12+
913
### Dependencies
1014

1115
- Bump Java SDK from v7.14.0 to v7.15.0 ([#3670](https://github.com/getsentry/sentry-dotnet/pull/3670))

src/Sentry/Platforms/Android/SentrySdk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private static void InitSentryAndroidSdk(SentryOptions options)
167167
o.EnableExternalConfiguration = false;
168168
o.EnableDeduplication = false;
169169
o.AttachServerName = false;
170-
o.NativeSdkName = "sentry.native.dotnet";
170+
o.NativeSdkName = "sentry.native.android.dotnet";
171171

172172
// These options are intentionally not expose or modified
173173
//o.MaxRequestBodySize // N/A for Android apps

0 commit comments

Comments
 (0)