0

What are Parse symbol files? Are those required to effectively log crashes? Parse seems to log crashed even with this not enabled.

Esqarrouth
  • 38,543
  • 21
  • 161
  • 168

1 Answers1

1

The file you are referring to is a dSYM file, this is not Parse specific, but an iOS thing. The file stores debug symbols for your app and it is required to symbolicate crash reports from your app.

See a crash file as an encrypted file, the dSYM file contains all the information a software tool needs to decrypt the data contained in a crash file on iOS.

Whats the dSYM and how to use it? (iOS SDK)

Community
  • 1
  • 1
Björn Kaiser
  • 9,882
  • 4
  • 37
  • 57