7

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
Ted
  • 22,696
  • 11
  • 95
  • 109
  • Try to copy dSYMs to the Desktop and compress it from there. If this fails also, try a 3rd party zip tool like keka or command line tools. – shallowThought Jan 11 '17 at 12:43
  • i did that and commandline works. How do i teach finder to use recursive zip – Ted Jan 11 '17 at 12:59
  • The "Archive Utility" application has very limited preferences. You can open the application `/System/Library/CoreServices/Applications/Archive Utility.app` and open the Preferences (Archive Utility Menu -> Preferences) to find out what's possible. – shallowThought Jan 12 '17 at 12:03
  • This is very weird, we've also hit this problem at our company. Has anyone managed to figure out why this is happening exactly? Copying the dSYMs folder somewhere else and then compressing it through Finder works fine, but refuses to work in-place... – m1h4 Aug 17 '17 at 12:05
  • where are you uploading the dSYMs? You can try fastlane so you don't need to compress and upload – Ted Aug 17 '17 at 12:18
  • 1
    This is apparently a known bug. My report was closed as duplicate. [rdar://35048759](https://openradar.appspot.com/radar?id=5491571675889664) – Pavel Zdenek Oct 26 '17 at 09:35

2 Answers2

3

Command line works for me everytime

zip -r dysm.zip {GUID}.dSYM
GentryRiggen
  • 788
  • 10
  • 10
2

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.

David L
  • 4,347
  • 3
  • 18
  • 30