-
-
Notifications
You must be signed in to change notification settings - Fork 335
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
macCatalyst app: Sentry >= 8.11 hangs on launch #3293
Comments
Duplicate of #3277. |
@brustolin is there a workaround currently so we can use Sentry 8.11 and newer? |
@brustolin I do not think this is necessarily the same issue as #3277 |
The catalyst app freezes every launch and does not eventually unfreeze. Just stays hanging. |
Hi @brustolin Just tried 8.13 and so far so good! Mac Catalyst app no long hangs on launch! |
Awesome. I will close this issue. Let me know if this happens again. |
Platform
macOS
Installed
Swift Package Manager
Version
8.11
Steps to Reproduce
Create a UIKit macCatalyst app with Xcode 14 or Xcode 15.
Make sure Notifications are disabled for this app in macOS Settings.
Add Sentry Swift Package v 8.11 or 8.12. 8.10 still works fine.
Integrate Sentry to start on app launch.
Launch the app.
App hangs on launch.
`SentrySDK.start { options in
options.dsn = Configuration.sentry.dsn
options.environment = Configuration.sentry.env
options.releaseName = BuildInfo.current.version.description
options.maxBreadcrumbs = 128
options.attachStacktrace = true
options.enableSwizzling = false
options.enableNetworkTracking = false
options.enableAutoPerformanceTracing = false
options.enableCoreDataTracing = false
options.enableAppHangTracking = false
options.enableWatchdogTerminationTracking = false
options.enableCaptureFailedRequests = false
}
Expected Result
Expecting to launch
Actual Result
Hangs if Notifications are disabled.
If Notifications are enabled, app launches fine.
Are you willing to submit a PR?
Sure
The text was updated successfully, but these errors were encountered: