Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find .dSYM file for app built with Xamarin iOS?

Tags:

I've built an iOS application with Xamarin and need the .dSYM to get a complete crash log. The official documentation says the file is suppose to be at ~/Library/Caches/Xamarin/mtbs/builds/. However, I do not have a folder named mtbs in ~/Library/Caches/Xamarin/. Anyone seen this before and know where to find the .dSYM-file?

https://developer.xamarin.com/guides/ios/troubleshooting/questions/symbolicate-ios-crash/

like image 269
ocwendel Avatar asked Feb 06 '17 11:02

ocwendel


People also ask

Where can I find dSYM files?

Download dSYM files using Xcode's app archive Open the Xcode Organizer: From the Xcode menu, select Window > Organizer > Archives > (select a mobile app). From Version, select the archive that matches the app version (listed first) and build number (following the app version in parentheses). Select Download dSYMs.

How do I get dSYM files from the app store?

Answer. Log in to App Store Connect, then click My Apps > TestFlight. Select the build you want to download a dSYM for. Click Build Metadata Tab > Download dSYM.

What is dSYM file?

A dSYM file is a debug symbol file generated by Apple Xcode and has all the debugging information for the particular crash. They are useful for re-symbolicating the crash reports.


1 Answers

Select Release configuration and Device as deployment target and build your application.

enter image description here

Then you´ll find it here: AppDir/bin/iPhone/Release/{YourAppName}.app.dSYM

like image 55
xleon Avatar answered Sep 22 '22 11:09

xleon