7

I sent application to Appstoreconnect and its rejected for a crash. I try to symbolicate to this crash and follow this answer.

I created all the necessary things and my Folder looks like enter image description here

symbolicatecrash scripts from /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/

When I go this directory on terminal and run these :

export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
./symbolicatecrash mycrash.crash > symbolicated.crash

I'm getting this error message :

No crash report version in mycrash.crash at ./symbolicatecrash line 1365.

How can I fix this issue? Any suggestion would be appreciated

Omer Tekbiyik
  • 4,255
  • 1
  • 15
  • 27

1 Answers1

-1

I encountered the issue as well when using symbolicatecrash on a file generated from an ips crash file using a script (https://github.com/tomieq/AppleCrashScripts?ref=iosexample.com). Resolved it by adding

Report Version: 104

Hope this helps.

  • Can you tell please in which part of crash we need to add "Report Version: 104"? I tried to add it in different places and this didnt work. – Petr Apr 19 '22 at 10:53
  • Sure. it needs to go right to the top section e.g. Process: .. Path:.. Identifier:... Version: ... Report Version: 104 ... Release Type .... – Frank Saar Apr 20 '22 at 12:53
  • In case your crash is an .ips file, you might be able to convert it to a ".crash" file using this tool: https://github.com/tomieq/AppleCrashScripts?ref=iosexample.com. and it will add a report version number to it. After that you can run it through the ./symbolicatecrash tool – Bocaxica Sep 30 '22 at 16:15