Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_FILE_NAME in xcode 9.3

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

like image 619
jazzbpn Avatar asked May 04 '18 08:05

jazzbpn


2 Answers

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.

like image 166
Yulia Avatar answered Sep 21 '22 17:09

Yulia


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
like image 32
LondonGuy Avatar answered Sep 20 '22 17:09

LondonGuy