How to find DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_FILE_NAME in xcode 9.3

jazzbpn picture jazzbpn · May 4, 2018 · Viewed 7.2k times · Source

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

Answer

Yulia picture Yulia · May 14, 2019

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.