Symbolicating iPhone App Crash Reports

后端 未结 25 2515
迷失自我
迷失自我 2020-11-21 05:38

I\'m looking to try and symbolicate my iPhone app\'s crash reports.

I retrieved the crash reports from iTunes Connect. I have the application binary that I submitted

25条回答
  •  走了就别回头了
    2020-11-21 05:52

    Here's another issue I have with symbolicatecrash – it won't work with Apps that have spaces in their bundle (i.e. 'Test App.app'). Note I don't think you can have spaces in their name when submitting so you should remove these anyway, but if you already have crashes that need analysing, patch symbolicatecrash (4.3 GM) as such:

    240c240
    <         my $cmd = "mdfind \"kMDItemContentType == com.apple.application-bundle && kMDItemFSName == $exec_name.app\"";
    ---
    >         my $cmd = "mdfind \"kMDItemContentType == com.apple.application-bundle && kMDItemFSName == '$exec_name.app'\"";
    251c251
    <             my $cmd = "find \"$archive_path/Products\" -name $exec_name.app";
    ---
    >             my $cmd = "find \"$archive_path/Products\" -name \"$exec_name.app\"";
    

提交回复
热议问题