- Home /
Unity crash-reporting on iOS
By ticking 'Development Build' & 'Script Debugging' in the Build Settings, I create these mdb-files (Mono DeBugger-files). However, I am wondering how to backtrace the Unity C# crash-line from this, since my crash-reports now will only give the crash in Xcode, which does not help me at all.
Answer by DenverCoulson · Aug 31, 2012 at 09:18 PM
The crashes in Xcode aren't as informative as Unity but you can generally get a general location. If it actually crashes, it will take you to the line which usually is in assembly. In assembly the methods are called by jumping to a label that will be x lines above the crash. Just find out that name and you can determine where the crash is happening. The why is left for you though it's generally a null reference (from my experiences at least).
Your answer

Follow this Question
Related Questions
Problem when building to development iPhone 1 Answer
EXC_ARM_DA_ALIGN crash in mono_runtime_invoke_profiled (iOS) 0 Answers
Unity iOs project gets crashed when returning from internal method UnityUpdateDisplayList() 2 Answers
Terminated due to memory issue at start - in Xcode 7 running iOS 2 Answers
Several Memory Optimization Questions 0 Answers