How to symbolicate ios app Crash developed in .Net MAUI that we are getting from appstore connect

GRANDHI SAI BABA 0 Reputation points
2024-05-31T06:46:41.61+00:00

Hi Team,

We have a app developed in .net MAUI for both android and ios. We are able to see Crashes in ios (Appstore connect)
here is how we are able to see the crashes

Step 1 :- open X-Code
Step 2 :- click on window> Organizer

Step 3 :- select the app and click on crashes. we are able to find the crashes

When we try to symbolicate the crash following the below steps

symbolicate -o "symbolicatedCrash.txt" "MyAppName 2-12-14, 9-44 PM.crash" "MyAppName.app"

following the below link with dsym files
https://jmillerdev.com/symbolicating-ios-crash-files-xamarin-ios/
it is not showing any error, but the symbolication is not showing meaning full information.
Can you please help in symbolicating the crash.

And also is there is any way that we can schedule a screen sharing section with Microsoft team for 30 mins. As we cannot share any source code in Forums.

Thanks in Advance.

Developer technologies | .NET | .NET MAUI
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    2024-05-31T16:19:58.73+00:00

    the crash file has address in the dumps. symbolicate uses the symbol file (.dSYM) from the build to update the addresses to symbol name (and source line number if available) when defined. this make the crash log more readable.

    first you are interested the exception. then you are interested in the backtrace to determine what the app was doing. you particularly want to follow the trace of the thread that crashed.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.