Reputation: 161
Has anyone seen two dsym files in their ipa? (Note: the two files are pictured below if helpful.) I'm unclear why it's happening and when I symbolicate my crash logs, the line numbers are not at all matching up. I tried symbolicating with each separately and both have different, incorrect line numbers. I'm using XCode 6.1.1 on Yosemite. Thanks for any info!
Upvotes: 2
Views: 2728
Reputation: 156
Unfortunately, DSYM can not be found in ipa package. DSYM file can be found by application archive. You should check it in {archive}/dSYMs/{yourappname}.app.dSYM/Contents/Resources/DWARF/
to find down a file name yourappname
(not included .dSYM
) and this is the real dSYM file that you need.
Upvotes: 6