Artur Zaremba

Results 12 comments of Artur Zaremba

I had the same issue when I sent app that worked in sandbox for review. Review team still had the error on its iPad. I had my own IAP manager...

> Yet another approach, based on #12232: > > ```ruby > def crashlytics_binary_path > product_module_name = "SomeModule" # Update with your module's name > derived_data_path = Fastlane::Actions::ClearDerivedDataAction > .available_options[0] >...

Also, I have found similar but resolved issues: https://github.com/getsentry/sentry-cli/issues/895 https://github.com/getsentry/sentry-cli/issues/845 https://github.com/getsentry/sentry-cli/issues/48 https://github.com/getsentry/sentry-cli/issues/1093 https://github.com/getsentry/sentry-fastlane-plugin/issues/127 I want to use sentry plugin fastlane for uploading debug symbols via Using App Store Connect which...

Seems that sentry_upload_dsym fastlane action also don't work in the same environment, I see the same error 😞

Regarding link in Sentry https://betterprogramming.pub/info-plist-is-missing-in-xcode-13-heres-how-to-get-it-back-1a7abf3e2514 I have Info.plist in my project

Thanks @fzymek, seems like it doesn't work without a workaround, that is why I summarised the issue from other closed issues. Seems like Sentry devs don't see it as a...

I have just created new project, added SPM library and added initialization code in AppDelegate.swift. Then I uploaded it to TestFlight, downloaded dSYM and tried upload it via `sentry-cli upload-dif`...

Sure, I will add him. I create iOS project with Storyboard interface.

I have the same issue when I try to access currentItem.asset right after play started. Thats because audioPlayer?.currentItem?.duration is zero at start so I tried to get duration by calling...

Yes, I am. The issue is raised when I access asset immediately after start playing. I avoid the issue by checking if currentItem.status == .readyToPlay then I access the asset....