Andrew McKnight
Andrew McKnight
Current status here is that almost all integration projects are able to compile and link, except for the carthage projects targeting a platform other than iOS. I'm debugging the `carthage`...
Current status: all the tests pass except the Carthage non-iOS jobs, because somehow the xcframework that winds up in the Carthage/Build directory always only contains iOS images. Looking into how...
One thing to consider here is that we already have a method today to gather feedback: [`SentrySDK.captureUserFeedback`](https://github.com/getsentry/sentry-cocoa/blob/02671d850aa5eb27ea7810311729a22911d2d3a1/Sources/Sentry/Public/SentrySDK.h#L238) We should keep that method for convenience and backwards compatibility. However, `SentryUserFeedback.eventId` is...
Current status, seeing them in the dashboard  Example: https://sentry-sdks.sentry.io/feedback/?feedbackSlug=sentry-cocoa%3A6065898327&mailbox=ignored&project=5428557&referrer=feedback_list_page&statsPeriod=5m
Continuing with https://github.com/getsentry/sentry-cocoa/issues/4272#issuecomment-2287300182, eventId won't be optional, i'll just give it its own SentryId. But, email and name _will_ become optional, and that would be a breaking change to the...
Per feedback we'll just call it `SentryFeedback`
Current status: got these to show up after sending them as their own events, [here's an example](https://sentry-sdks.sentry.io/feedback/?feedbackSlug=sentry-cocoa%3A6136606765&mailbox=unresolved&project=5428557&referrer=feedback_list_page&statsPeriod=24h) with an attached screenshot (also has an attached image and log from the...
Yeah, that's for sure annoying. The only alternative I can imagine is to split the framework so that we have a core module and a UIKit module that can be...
I think I originally had it in `BaseUITest.setUp` so that it would only set this for the _first_ launch per test case. For some reason I moved it to `newAppSession`...
For some reason tests are failing In CI but not locally, i'm debugging.