Hello,
Is it necessary to do something in Visual Studio on Windows when I create the .ipa file to symbolicate the crash report or is it necessary to symbolicate the crash report somehow in Xcode on my Mac?
Yes, you could add the following to your csproj, this will let the methods be symbolicated instead of showing up as only memory addresses.
<PropertyGroup>
<NoSymbolStrip>true</NoSymbolStrip>
</PropertyGroup>
How can I symbolicate my crash report?
This is really an iOS question but not a MAUI question. Please see Symbolicate the crash report in Xcode.
For getting the dSYMs file, you can also follow the steps: open Xcode->Window->Organizer->your app ->Archives->select the archive->right-click and Show in Finder-> right-click the .xcarchive file-> Show Package Contents.
And I found a same issue reported at Apple developer forum- https://developer.apple.com/forums/thread/772077, you could add comments and post your concerns.
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.