Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode - There are no dSYMs available for download

I want to extract the dSYM file from but when I click on "Download dSYMs..." in the Organizer I get the follow message: "There are no dSYMs available for download.".

I'm using Xcode 7.2 with a workspace generated by Cocoapods 0.39.

How can I get them?

enter image description here

like image 675
Felipe Peña Avatar asked Feb 02 '16 16:02

Felipe Peña


People also ask

How do I download dSYM from Xcode?

To download the processed dSYM file, in the Xcode Archives Organizer: Make sure this version of the application is available for download (either TestFlight or the iTunes store). In the Archives organizer, select the archive for this version. Click the Download dSYMs button.

What is dSYMs?

A dSYM file is an ELF file that contains DWARF (debugging with attributed record formats) debug information for your application. DWARF is a debugging file format that supports source-level debugging.

Where are dSYMs stored?

dSYM file automatically for you when you use the Archive option. The created archive contains your app and its dSYM and is stored in ~/Library/Developer/xcode/Archives .


1 Answers

NON-BITCODE

Here's a GIF on how to get DSYMS, compress and upload to crashlytics/fabric

enter image description here

  1. Press Window > Organizer
  2. Right-click on your app> Show in Finder
  3. Right-click on first .xcarchive file > Show package contents

BITCODE ENABLED

You'll need to download dsyms from App Store Connect. The easiest would be to use fastlane

lane :refresh_dsyms do     download_dsyms                  # Download dSYM files from App Store Connect          upload_symbols_to_crashlytics   # Optional for uploading to Crashlytics end 
like image 60
Ted Avatar answered Sep 20 '22 07:09

Ted