26

Since yesterday I try to configure Twitter Crashlytics in my iOS app. I have a problem w dSYMs files. Fabric dashboard show me message "We are missing dSYMs files" so I uploaded the files by online manager (redirect from this message) and this message was shown: enter image description here

but if I go back to dashboard the message that system missing dSYMS files is shown again.. and again. What I have to do?

tobltobs
  • 2,782
  • 1
  • 27
  • 33
Mr. A
  • 704
  • 1
  • 7
  • 16
  • 3
    Mike from Fabric here. I'd run this command: dwarfdump -u that you're uploading and make sure that the UUID matches the one that is reported as missing. – Mike Bonnell Jan 29 '16 at 17:56
  • @MikeBonnell In the dSYMs folder there are lot of files (including pods dSYMs). Do I need to submit all these files? Or else just the myapp.app.dSYM file? – user1960169 Aug 16 '17 at 06:16
  • 1
    Any of the ones reported as missing should be uploaded. If you have many dSYMs, I'd recommend using the upload-symbols script with the following syntax: /Applications/Fabric.app/Contents/MacOS/upload-symbols -a APIKey -p ios /Users/mbonnell/Documents/PathToDsym – Mike Bonnell Aug 16 '17 at 15:18
  • @MikeBonnell What if the dSYM doesn't exist because crashes were generated in debug before DWARF was enabled in debug? How do we get rid of the warning then? – Bradley Thomas Mar 03 '19 at 01:56
  • The warning is removed in a week without the corresponding dSYMs being uploaded. – Mike Bonnell Mar 03 '19 at 20:18

1 Answers1

13

I ran into the same issue. I tried following all of the steps that Crashlytics recommends, including the one that @Mike helpfully posted, to no avail.

I finally found a workaround and posted it here: https://stackoverflow.com/a/35374388/2397068. You need to download the dSYM from iTunes Connect.

Community
  • 1
  • 1
Lane Rettig
  • 6,640
  • 5
  • 42
  • 51
  • If a question is a duplicate, please flag it as such, linking to your other answer - in general please avoid posting link-only answers like this one. Thank you. :) – Eric Aya Mar 08 '16 at 14:24
  • Thanks @EricD. I don't think I have a high enough reputation to mark as a duplicate. Apologies if I've misunderstood something! – Lane Rettig Mar 08 '16 at 16:51
  • You may not "close as duplicate" yet, but you can already "flag as duplicate". :) No worries, Stack Overflow is a complex platform, it takes time to get the subtleties of its rules and guidelines. – Eric Aya Mar 08 '16 at 17:48
  • Amazing! Thanks for letting me know. Will try that next time. – Lane Rettig Mar 08 '16 at 19:43
  • Does this mean, I need to upload the dSYM every time I upload a new build. How to fix this permanently? – Allan Macatingrao Mar 07 '17 at 23:08
  • Hey @Hokage take a look at the commentary on the other thread, http://stackoverflow.com/a/35374388/2397068. Your question may have been answered there! – Lane Rettig Mar 08 '17 at 14:02