KishoreThindaak
KishoreThindaak

Reputation: 401

What are debug symbols in xcode

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.

Upvotes: 6

Views: 12056

Answers (2)

Sjoerd222888
Sjoerd222888

Reputation: 3476

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.

Upvotes: 7

Boris Charpentier
Boris Charpentier

Reputation: 3545

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.

Upvotes: 8

Related Questions