确保您的项目构build设置正在生成一个dSYM文件。 对于所有configuration,DEBUG_INFORMATION_FORMAT应该设置为dwarf-with-dsym

我最近开始得到这个错误:

2015-03-23 11:35:48.902 run[60036:1047011] Crashlytics.framework/run 1.3.14 2015-03-23 11:35:48.911 run[60036:1047011] Crashlytics: dSYM Error Unable to process <your app>.app.dSYM at path /path/to/<your app>.app.dSYM Make sure your project build settings are generating a dSYM file. DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations. This could also be a timing issue, make sure the Crashlytics run script build phase is the last build phase and no other scripts have moved the dSYM from the location Xcode generated it. Command /bin/sh failed with exit code 1 

我试过这个答案无法将dSYM文件复制到存档,但我所有的Generate Debug Symbols设置为YES

还有什么build议?

下面的解决scheme为我工作,我希望它会帮助你。

转到build立你的项目的设置,然后在build立设置中searchdebugging信息格式并search“debugging信息格式”,然后将“debugging信息格式”设置为“带有dSYM文件的DWARF”

在这里输入图像说明

并确保生成设置中的生成debugging符号设置为是。

在“运行脚本”中检查是否为“仅在安装时运行脚本”

我删除了Fabric和Crashlytics,并将它们从头再次添加回来,就像我第一次安装它一样。 有效。

另见https://twittercommunity.com/t/how-to-reinstall-fabric-crashlytics/37890