14

I am creating dSYM file in XCode 7.0, After archiving my project, I can't find my dSYM file. I referred to lots of sites from stack overflow and followed many instructions but I could not find my dSYM file on any Folder available. Please any one help me.

Please instruct me what are the properties I need to Enable in app Build settings.

Thanks.

Efren
  • 4,003
  • 4
  • 33
  • 75
Vinayak
  • 329
  • 1
  • 3
  • 10

2 Answers2

30

in xcode -> window -> orgnizer

or xcode - > product -> Archive

you see Archives window

1 Select any Archives of your app Right click on it Then select show in finder

2 you see aapname.xcarchive file Right click on it and select show package contents

3 you see dSYMs folder open it and get .dSYM file

:)

balkaran singh
  • 2,754
  • 1
  • 17
  • 32
  • Thanks for your reply. i tried already But here am getting only folder name as dSYMs. dSYM file note created. this is only my problem. i think am missing some option to enable in app target build settings. – Vinayak Apr 27 '16 at 10:52
  • 3
    plz check build settings -> buid options ->Debug Information Format -> Debug DWARF with dSYM File and release DWARF with dSYM File – balkaran singh Apr 27 '16 at 11:07
  • Yes also changed like that. – Vinayak Apr 27 '16 at 11:26
  • Already am faced same issues, fallowed instruction like you are given. its works fine. But now am facing same issue in some other project. this project started before 3 years. its started in old xcode i thought its may be the reason. Please if you find help me. – Vinayak Apr 27 '16 at 11:30
  • i am using xcode Version 7.3 (7D175) update your xcode may be its work for you – balkaran singh Apr 27 '16 at 11:54
  • Ok friend. i ll try and tel you know Thanks. – Vinayak Apr 27 '16 at 11:56
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/110378/discussion-between-vinayak-and-balkaran-singh). – Vinayak Apr 27 '16 at 12:12
15

Make sure you have Debug with DWARF with dSYM File enabled

Click on your Project -> Build Settings -> Build Options -> Debug -> DWARF with dSYM File

(see picture below)

enter image description here

Danny Yassine
  • 661
  • 7
  • 9