4

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
  • 3,049
  • 1
  • 9
  • 21

1 Answers1

0

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