Skip to content

Full stack information not properly capturing for ios. #742

Open
@rakshithshettycs

Description

@rakshithshettycs

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:

Screenshot 2023-09-28 at 6 10 34 PM

IOS crash stack trace:

Screenshot 2023-09-28 at 5 20 21 PM

Even in Xcode, the stack trace is updated properly. Screenshot from xcode
Screenshot 2023-09-28 at 6 11 43 PM

Steps to reproduce

  1. Go to Unity and create one MonoBehaviour class(CrashData.cs) and add code
public void CrashAPP()
    {
        while (true) ;
    } 
  1. Attach the created class to the button in the Unity scene and call CrashAPP() on the button-click event. and observe the app crash, and please verify that crash report in the dashboard.

Environment

  • Bugsnag version: Tested in 7.6.2 & 7.6.5
  • Unity version: 2022.5.5f1
  • iOS/Android/macOS/Windows/browser version: ios version :16.51
  • simulator/emulator or physical device: - physical device
  • Initializing bugsnag via a Unity GameObject or in code?: Start Automatically from bugsang configuration window
  • Player Settings:
    • Scripting backend (Mono or IL2CPP): IL2CPP
    • API compatibility level for .NET: 2.1
    • Stack Trace level for all error types (None/ScriptOnly/Full):Full

Example Repo

  • Create a minimal repository that can reproduce the issue
  • Link to it here:

Example code snippet

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CrashData : MonoBehaviour
{
public void ReekkkpeateWhile()
{
while (true) ;
}
}

# (Insert code sample to reproduce the problem)
Error messages:
EXC_BREAKPOINT • UnityEngine.CoreModule__3.cpp

Metadata

Metadata

Assignees

No one assigned

    Labels

    awaiting feedbackAwaiting a response from a customer. Will be automatically closed after approximately 2 weeks.backlogWe hope to fix this feature/bug in the future

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions