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
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
You need to go to Organizer and select your archive file, select show in finder
after that you need to select show package content
and finally there is your
DYSM
folderYou can do it using
xcodebuild
tool:Output of this command will contain Xcode env values including
DWARF_DSYM_FOLDER_PATH
andDWARF_DSYM_FILE_NAME
.