Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot compress dSyms

I need to compress dSYMs folder that contains dSYM file But i'm stuck enter image description here

Good thing is, I was able to compress using commandline

zip -r outputFile.zip *.dSYM
like image 632
Ted Avatar asked Jan 11 '17 12:01

Ted


People also ask

What is dSYMs?

A dSYM file is a debug symbol file generated by Apple Xcode and has all the debugging information for the particular crash. They are useful for re-symbolicating the crash reports.

Where can I find dSYM files?

Locate your dSYMsLog in to App Store Connect, then click My Apps > Activity. Select the build you want to download a dSYM for. Click Build Details > Download dSYM.

How do I download dSYM from Xcode?

Download dSYM files using Xcode's app archive Open the Xcode Organizer: From the Xcode menu, select Window > Organizer > Archives > (select a mobile app). From Version, select the archive that matches the app version (listed first) and build number (following the app version in parentheses). Select Download dSYMs.


2 Answers

Command line works for me everytime

zip -r dysm.zip {GUID}.dSYM
like image 52
GentryRiggen Avatar answered Oct 01 '22 10:10

GentryRiggen


I had the same issue. I was able to work around it by copying the dSYMs folder from my package contents to my hard drive. Then I could zip it instantly. I think the issue is trying to compress from the package contents.

I followed the steps from this answer but instead of compressing from the package contents I copied it to another folder then compressed.

like image 29
David L Avatar answered Oct 01 '22 09:10

David L