Home > Blockchain >  Using Crashlytics without dSYM in Xcode 14
Using Crashlytics without dSYM in Xcode 14

Time:09-28

My project has been using Firebase's Crashlytics for years now, and I've always upload the dSYM files from App Store Connect to Firebase. However, in Xcode 14 Apple has removed the ability to submit apps with Bitcode enabled, meaning dSYM files are not downloadable from App Store Connect.

I uploaded a new version to App Store from Xcode 14 and now I can't upload dSYM files to see any crashes happening in the app. Crashlytics still even has a dSYMs section to upload those files, but there's nothing I can upload

Has anyone found a way around this? Automatic uploading of crashes never really worked for me before without uploading dSYM files, and only shows non-fatal crashes I manually log using Crashlytics.crashlytics().record(error: error) method.

What I've done:

  • I've gone over the Crashlytics setup instructions multiple times and it call seems to be the same before Xcode change.
  • Spent days searching on the internet but can't find anything that fits this

Setup: I've attached an image of my Crashlytics script (from Crashlytics tutorial). I use Cocoapods to install Crashlytics like:

platform :ios, '14.0'

target `My App` do
   use_frameworks!
   pod 'FirebaseCrashlytics'
   pod 'Firebase/AnalyticsWithoutAdIdSupport'
end

enter image description here

Thank you in advance! I've been struggling with this for a while now and hope this can help someone else too!

CodePudding user response:

We've got the same - after xcode14 (and bitcode disabled) there is no uuid'ed dSYM inside archived folder so fabric have no items to upload.

We tried to upload one large dsym AppName.app.dSYM and farbric was able to process our latest crashlog.

CodePudding user response:

I've opted to develop and test with XCode 14 and then to compile and upload with the previous version of XCode (13.4.1). This requires me to do another smoke test cycle to ensure nothing I did with v14 fails to compile/work but I continue to get dsym files from App Store Connect. I am not a fan of XCode 14 - at all.

Not sure how much longer this will work though and don't know what the ramifications are of doing this.

  • Related