Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are debug symbols in xcode

Tags:

xcode

ios

what is a debug symbol? and what is the usage?

Will be able to submit an app with debug symbols to appstore?

Please help!

Thanks in Advance.

like image 374
KishoreThindaak Avatar asked Dec 15 '22 16:12

KishoreThindaak


2 Answers

dSym are generated when you archived your project.

You don't have to do anything for that.

It allows you to symbolicate your crash log, else it's just meaningless memory adress.

It's kind of a link between the builded code and the source code.

like image 54
Boris Charpentier Avatar answered Dec 30 '22 17:12

Boris Charpentier


Debug Symbols are additional information about your source code that are used to help debugging. See also this wikipedia article about debug symbols. They will not be submitted to the appstore as they are only part of debug-build while you only submit a release-build to the appstore. Though there are some symbols that will be committed for crash logs, see this question.

like image 33
Sjoerd222888 Avatar answered Dec 30 '22 17:12

Sjoerd222888