Can't download dSYM file from iTunes connect

IosApp Store-ConnectDsym

Ios Problem Overview


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

Ios Solutions


Solution 1 - Ios

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

Solution 2 - Ios

I got the same issue today. But I've been using Fastlane and do not have any archives inside the project organizer. So the only option is to get it from Appstore. I think it's a bug from the Appstore side. Just don't click the "Download dSYM" button. Just copy the link and open it on a new tab. Then you could download the dSYM's

enter image description here

Solution 3 - Ios

It seems 'Download dSYM file' link is intended for downloading dSYMs generated by App Store when bitcode is enabled. Thus if bitcode is disabled for your application dSYM files are contained by your Mac. If bitcode enabled the final compilation of your binary will be execute on App Store and new dSYM will be generated. And new dSYM you will be able to download from App Store Connect with 'Download dSYM file'.

See 'Bitcode' section in Apple documentation.

Solution 4 - Ios

I had a similar issue and the accepted answer didn't work for me. AppCenter was asking for some missing symbols, and it didn't accept the ones from the app's archive (it needed the dSym's with random letters and numbers in the file name)

In AppstoreConnect, All Builds -> Current Version -> Current Build -> Includes Symbols said YES, but no download link. BitCode was enabled when I published the app.

I just waited a couple more days (I think that there were 5 days in total) and the Download dSYM link appeared.

Solution 5 - Ios

Recently encountered an issue with download link being broken when clicking download dSYM from AppStore Connect. Turned out that the link generated was just missing an "s" in http:// so the browser was blocking it. Happens only for certain browsers. If this happens to you, try adding an "s" to have the link start with https://....

Solution 6 - Ios

App Store DSYM is different for our local DSYM,When bitcode disable you can user local DSYM,when bitcode enable,you should user App Store DSYM.

Solution 7 - Ios

Just to bring this up to date as of Xcode 12.2, Apple is allowing Xcode to download the symbols.

  1. Go to the Organizer and find the app you uploaded to the store.
  2. Click the Download Debug Symbols button beneath Details.
  3. Right-click the app and Show In Finder.
  4. Right-click the xcarchive and Show Package Contents
  5. Your dSYMs are in the folder...

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLuca TorellaView Question on Stackoverflow
Solution 1 - IosJoe BentonView Answer on Stackoverflow
Solution 2 - IosChathuranga SilvaView Answer on Stackoverflow
Solution 3 - IosYuliaView Answer on Stackoverflow
Solution 4 - IosBogdan DobreaView Answer on Stackoverflow
Solution 5 - IosMishkaView Answer on Stackoverflow
Solution 6 - Ios潘智伟View Answer on Stackoverflow
Solution 7 - IosMichael LongView Answer on Stackoverflow