Skip to content

Commit

Permalink
fix: sdk name for native on android (#3682)
Browse files Browse the repository at this point in the history
* fix: sdk name for native on android

* changelog
  • Loading branch information
bruno-garcia authored Oct 16, 2024
1 parent 1325088 commit a18bef3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

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

### Fixes

- Events from NDK on Android will report sdk.name `sentry.native.android.dotnet` ([#3682](https://github.com/getsentry/sentry-dotnet/pull/3682))

### Dependencies

- Bump Java SDK from v7.14.0 to v7.15.0 ([#3670](https://github.com/getsentry/sentry-dotnet/pull/3670))
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry/Platforms/Android/SentrySdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private static void InitSentryAndroidSdk(SentryOptions options)
o.EnableExternalConfiguration = false;
o.EnableDeduplication = false;
o.AttachServerName = false;
o.NativeSdkName = "sentry.native.dotnet";
o.NativeSdkName = "sentry.native.android.dotnet";
// These options are intentionally not expose or modified
//o.MaxRequestBodySize // N/A for Android apps
Expand Down

0 comments on commit a18bef3

Please sign in to comment.