Philipp Hofmann

Results 731 comments of Philipp Hofmann

Thanks for reporting this, @lhunath. We will add an API to support your use case. Can't give you an ETA yet.

Swift async is only available since Swift 5.5 but we still use Swift 5.3 for SPM https://github.com/getsentry/sentry-cocoa/blob/cf972098baef6f2042eee18549c33451fd983731/Package.swift#L1 We will bump the swift-tools-version to at least 5.5 in our next major,...

> Fair enough! Please note that as mentioned in the OP, this applies equally to all other asynchronous APIs, such as those that work with callbacks or delegate responses. Oh,...

Thanks for reporting this, @diogot. This should be an easy fix. There is no guarantee that `SentryUIApplication init` is called on the main thread. It usually gets called on the...

@diogot the crash you pointed out in https://github.com/getsentry/sentry-cocoa/issues/3836#issuecomment-2110605384 is a different one and will be fixed with https://github.com/getsentry/sentry-cocoa/pull/4245. We can close this.

Thanks for opening this. It might be related to https://github.com/getsentry/sentry-cocoa/issues/3081.

If I got it right @Swatinem, except from doing https://github.com/getsentry/sentry-cocoa/issues/3081 there isn't much we can do right now, except to wait for Apple to provide proper dSYMs for SwiftUI?

Thanks for reporting this. I can reproduce the issue by adding the following code to our iOS-Swift sample app and running a release build on an iOS simulator. ```Swift var...

I tried to reproduce this by adding breadcrumbs on a dispatch queue directly before starting the SDK but was unable to reproduce the issue: ``` let dispatchSerial = DispatchQueue(label: "queue")...