Skip to content

Commit 3f63cb6

Browse files
Revert signal handler chaining order (PR #3694) (#3871)
1 parent 7024f37 commit 3f63cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Fixes
66

77
- .NET Mobile: Disable and made obsolete the iOS Watchdog termination feature which is based on heuristics that don't work in .NET ([#3867](https://github.com/getsentry/sentry-dotnet/pull/3867))
8-
8+
- NullReferenceExceptions causing application crashes in AOT compiled applications (PR #3694) ([#3871](https://github.com/getsentry/sentry-dotnet/pull/3871))
99

1010
### Dependencies
1111

src/Sentry/Platforms/Android/SentrySdk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private static void InitSentryAndroidSdk(SentryOptions options)
6060
o.ServerName = options.ServerName;
6161
o.SessionTrackingIntervalMillis = (long)options.AutoSessionTrackingInterval.TotalMilliseconds;
6262
o.ShutdownTimeoutMillis = (long)options.ShutdownTimeout.TotalMilliseconds;
63-
o.SetNativeHandlerStrategy(JavaSdk.Android.Core.NdkHandlerStrategy.SentryHandlerStrategyChainAtStart);
63+
o.SetNativeHandlerStrategy(JavaSdk.Android.Core.NdkHandlerStrategy.SentryHandlerStrategyDefault);
6464

6565
if (options.CacheDirectoryPath is { } cacheDirectoryPath)
6666
{

0 commit comments

Comments
 (0)