15

I am using the Crashlytics in order to report the crash occurs in the iOS app. Here, I want to know how to find the path of these below dwarf folder and file in xcode:

DWARF_DSYM_FOLDER_PATH

DWARF_DSYM_FILE_NAME

Reinier Melian
  • 20,519
  • 3
  • 38
  • 55
jazzbpn
  • 6,441
  • 16
  • 63
  • 99

3 Answers3

51

You can do it using xcodebuild tool:

xcodebuild -project MyProject.xcodeproj -target MyTarget -showBuildSettings

Output of this command will contain Xcode env values including DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_FILE_NAME.

Yulia
  • 1,087
  • 9
  • 16
8

You need to go to Organizer and select your archive file, select show in finder

enter image description here

after that you need to select show package content

enter image description here

and finally there is your DYSM folder

enter image description here

Reinier Melian
  • 20,519
  • 3
  • 38
  • 55
4

If you have a workspace and multiple schemes, you can use the following command from the xcodebuild tool.

xcodebuild -workspace Project.xcworkspace -scheme ProjectSceheme -showBuildSettings
LondonGuy
  • 10,778
  • 11
  • 79
  • 151