How to find DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_FILE_NAME in xcode 9.3

老子叫甜甜 提交于 2019-12-07 19:55:05

问题


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


回答1:


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 folder




回答2:


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.



来源:https://stackoverflow.com/questions/50170638/how-to-find-dwarf-dsym-folder-path-and-dwarf-dsym-file-name-in-xcode-9-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!