How to find DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_

2019-06-04 13:24发布

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

2条回答
甜甜的少女心
2楼-- · 2019-06-04 13:30

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

查看更多
Deceive 欺骗
3楼-- · 2019-06-04 13:43

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.

查看更多
登录 后发表回答