iosapp-store-connectdsym

Can't download dSYM file from iTunes connect


I need to download the dSYM file so, as I usually do, I went to iTunes connect -> My app -> Activity -> All builds -> latest version.

"Include symbols" is Yes, but there is no link to download the dSYM file.

The app was uploaded 3 weeks ago, so also it's not like it's processing. Am I missing something stupid? Any idea?

enter image description here


Solution

  • Do you still have the archive available in Xcode as you can save them out from there:

    1. Select Window -> Organizer
    2. This will open up Organizer window containing your archives.
    3. Right click on Archive and select 'Show in Finder'.
    4. Right click archive in finder and select 'Show Package Contents'.
    5. Project.xcarchive contains dSYMs, Info.plist and Products.
    6. dSYMs folder contains dSYM file of your project.

    You can enable the Debug Symbol file generation during build within Xcode as below.

    enter image description here