Full stack information not properly capturing for ios. #742
Labels
awaiting feedback
Awaiting a response from a customer. Will be automatically closed after approximately 2 weeks.
backlog
We hope to fix this feature/bug in the future
Describe the bug
Issue 1.
When I compare both Android and iOS crash stacktraces, in Android it's captured the exact file and function name, but in iOS it's not captured.For iOS, bugsee does not show the exact script point, which causes the crash. Please check the screenshot.
I implemented code for the app crash check. I added dysm files for iOS and symbol files for Android for full-stack trace.
Attaching screenshots reported in Bugssang for Android and iOS for the same crash
Issue 2:
Even after uploading the symbols and dysm file, the line number is still not showing, which caused the crash. In Android, file name and function name showed in the full stack trace but not line number. In iOS, it is not even showing the file name and function name as mentioned in Issue 1.
Android crash stack trace:
IOS crash stack trace:
Even in Xcode, the stack trace is updated properly. Screenshot from xcode
Steps to reproduce
Environment
Example Repo
Example code snippet
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CrashData : MonoBehaviour
{
public void ReekkkpeateWhile()
{
while (true) ;
}
}
Error messages:
The text was updated successfully, but these errors were encountered: