admin管理员组

文章数量:1404554

I'm working on a .NET MAUI iOS app and trying to set up Firebase Crashlytics. The crashes are showing up in Firebase, but the stack traces are unreadable because the dSYM is missing.

I tried uploading the .app.dSYM file from my Release build folder, but the UUID does not match the UUID that Firebase is expecting. So, the crash logs are still unreadable.

Build Command Used (for real iPhone, not Simulator):

dotnet build -t:Run -f net9.0-ios -c Release -p:RuntimeIdentifier=ios-arm64 -p:_DeviceName=XXXXXXX

What I’ve Tried So Far:

Found and uploaded .app.dSYM from my build folder

But Firebase says the UUID doesn’t match the crash.

Where is the correct dSYM file for a .NET MAUI iOS app built for a real iPhone? How do I ensure that Firebase gets the correct symbols for crash reports?

本文标签: Where is the Firebase Crashlytics dSYM in NET MAUI iOSStack Overflow