25

I need to download dSYM file from iTunes Connect.

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

Any idea why the option is not there?

neha
  • 361
  • 6
  • 12
  • 1
    If the app was submitted with symbols in the first place, you should see the option "Download dSYM" if not check `Build Settings -> Debug Information -> Format -> Release -> DWARF with dSYM File` in xcode – LoVo May 27 '16 at 09:01
  • 4
    I'm using Xcode 7.3.1 and have this all setup, including DWARF with dSYM option, yet when submitting to testflight I can see "Includes Symbols: Yes" with no option to download dSYM. – AndrewPK Aug 16 '16 at 15:23
  • Possible duplicate of https://stackoverflow.com/questions/36397972/cant-download-dsym-file-from-itunes-connect – RPK Apr 04 '19 at 20:56
  • Did u find the solution @neha, i am also facing same issue . – NAVEEN KUMAR Aug 17 '20 at 08:31

2 Answers2

4

with Xcode 8,9,10,11 and above

 * Select Window -> Organizer
 * will open up Organizer window
 * Right click on Specific Archive and select 'Show in Finder' option
 * Right click archive in finder and select 'Show Package Contents'.
 * Project.xcarchive contains dSYMs, Info.plist and Products.
 * dSYMs folder contains dSYM file of your project.
midhun p
  • 1,987
  • 18
  • 24
  • 2
    This only works if you uploaded the project from your computer using Xcode. – Lluis Gerard Nov 30 '20 at 13:30
  • Like @LluisGerard mentioned, this isn't helpful if you're generating builds and uploading them via CI/CD. Can confirm that the link disappeared for us as well. – raybarrera Nov 22 '21 at 19:39
1

you may need to go in

activity -> select build which build dSYM file is need here is display download dSYM

click and download specific build dSYM file.

Sagar Bhut
  • 657
  • 6
  • 28