-
-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash reports not generated on visionOS #4217
Comments
Thanks @miki-shapr for reaching out. |
@miki-shapr, does only |
@philipphofmann There are no crashes appearing in Sentry either. I made the app crash with As I've mentioned, the issue is that the So essentially in I've patched this file locally and afterwards I could see the crashes appearing in Sentry. |
@miki-shapr, would you be open to opening a PR to fix this? |
@philipphofmann Yeah sure, I'll open a PR soon! |
Platform
visionOS
Environment
Production
Installed
CocoaPods
Version
8.32.0
Xcode Version
15.4
Did it work on previous versions?
No
Steps to Reproduce
SentrySDK.crashedLastRun
Expected Result
The value printed should be
true
.Actual Result
false
is printed.I've found that the root cause of the issue is that even though visionOS supports signals, the
SENTRY_HAS_SIGNAL
is set to0
and thus no signal handlers are installed. The resolution should be to set the value of the flag to1
on visionOS as well.Are you willing to submit a PR?
Yes
The text was updated successfully, but these errors were encountered: