We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f01079e commit 4872e3fCopy full SHA for 4872e3f
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Fixes
6
7
- Bump sentry-dotnet to 8ca0906 - fix IL2CPP crash (#122)
8
+- IL2CPP players crash due to startup time detection (#123)
9
10
## 0.0.7
11
src/Sentry.Unity/SentryInitialization.cs
@@ -60,6 +60,9 @@ internal static void Init(UnitySentryOptions options)
60
{
61
o.Dsn = options.Dsn;
62
63
+ // IL2CPP doesn't support Process.GetCurrentProcess().StartupUpTime
64
+ o.DetectStartupTime = StartupTimeDetectionMode.Fast;
65
+
66
if (options.Logger != null)
67
68
o.Debug = true;
0 commit comments