Search results for

dsym file

77,665 results found

Post

Replies

Boosts

Views

Activity

Trying to symbolicate crash logs without dSym
My Swift app was rejected, and Apple reviewers sent me two crash logs but no dSym. Following these instructions ...Connect an iOS device to your MacChoose Devices from the Window menuUnder the DEVICES section in the left column, choose a deviceClick the View Device Logs button under the Device Information section on the right hand panelDrag your crash report onto the left column of the presented panel. Xcode will automatically symbolicate the crash report and display the results... I am seeing the raw crash logs in Xcode, not symbolicated.Could the problem be that I need a dSym? If so, do I request this from the reviewers, or is there a way for me to generate my own now?Or is there something else I need to do to symbolicate these crash logs?Screenshot of Xcode:http://i.stack.imgur.com/X30tZ.jpgXcode 7.3.1El Capitan
3
0
2.6k
Aug ’16
Reply to Xcode 16 warning about missing symbols of static framework
This could be the sign of a mismatched dSYM with your binary. You're not expecting a binary inside the framework because you say it was linked statically...but is there a binary in the framework in a way you don't expect, sending you down this path? To rule that out, I'd dig around inside the framework contents inside of your Xcode archive to see if there's a binary still in there. If there is, check the binary UUIDs match, as that's the identifier that ties everything together for symbolication. You can use the dwarfdump --uuid command to get it from your framework binary, and then again to the DWARF file nested inside the dSYM package. I would dig around inside the the build Xcode archive from the Organizer to locate those files for this test, rather than relying on any files in your source code base, since the Xcode Archive's contents is what the App Store sees. If that leads to a dead end, then I suggest you study your build log to see if you can find any trace
Aug ’24
Reply to fabric - dsym upload error
Facing the same issue.Error Domain=com.crashlytics.mac.error-domain.process-dsym Code=4 This version of OSX is not able to perform the necessary dSYM transformations. UserInfo={NSLocalizedFailureReason=This version of OSX is not able to perform the necessary dSYM transformations.}
Jan ’20
Reply to What are the *.symbols file in the ipa?
There's no information anywhere about this .symbols files and the information that they contain. Can they be used to symbolicate a crash (if DSYMs are not available)? what format do these files have? Using strings over a .symbols file, I can see that they do contain symbol names, but the file is not supported by any of the usual tools (dwarfdump, otool...)
Oct ’21
Reply to Xcode 26 increase in dSYM size
Thank you for sharing your post. Please be advised that Xcode 26 is currently in beta testing. Could you please provide the beta and build number you are using, as well as the version of macOS you are running? To ensure the comprehensiveness of your report, please include the build number at which you initially encountered the issue, as well as any relevant screenshots, recordings, and dSYM file. Additionally, creating a test project can be a helpful way to demonstrate the issue to this problem. Before submitting a bug report, please provide additional information, including the nature of the project you are working on and any specific details that would be crucial for reproducing the issue. If you have a sample project showing this issue I can test with, please share. Do you get the same results with just the relevant code in a small test project? If so, please share a link to your test project. That'll help us better understand what's going on. If you're not familiar with preparing a test project,
Sep ’25
Where is the download dSYM option in Testflight? Its not in Metadata
If I upload a build to Testflight using Xcode 14 that offers the option to upload the app symbols. Xcode 15 doesn't offer this option, so presumably it does so automatically. However I've got several builds in TF, built with both Xcode 14 and 15 but the option to download dSYMs isn't available in the Metadata section. There defiantly are dSYMs though - they are present in the archive. How can I download them for apps in Testflight and in the AppStore if the option isn't appearing in the Metadata section?
5
0
2.1k
Oct ’23
UUID of bitcode enabled app does not have dSYM available for download
I submitted MyApp with bitcode enabled app to TestFlight. I received a crash report where the binary UUID does match the UUIDs listed in the MyApp.app/MyApp or MyApp.app.dSYM that was built on my machine. I tried using the Download dSYMs... option in Xcode but still there is no dSYM downloaded that matches the UUID of the binary in the crash report. All other dSYMs are downloaded, however.Why isn't the dSYM for the binary that Apple built available?dwarfdump --uuid MyApp.app/MyAppUUID: 0BDA6D6F-3C0D-339E-842F-C2CB04199E10 (armv7) MyApp.app/MyAppUUID: B2A69BEC-DF5E-33EA-A9E0-490EBF03074C (arm64) MyApp.app/MyAppdwarfdump --uuid MyApp.app.dSYMUUID: 0BDA6D6F-3C0D-339E-842F-C2CB04199E10 (armv7) MyApp.app.dSYM/Contents/Resources/DWARF/MyAppUUID: B2A69BEC-DF5E-33EA-A9E0-490EBF03074C (arm64) MyApp.app.dSYM/Contents/Resources/DWARF/MyApp# Why is the the dSYM for this binary not being downloaded?0x100054000 - 0x1000fffff myapp arm64 <3715db2438743cf5aac1742d9a214c2c> /
0
0
1k
Feb ’16
Reply to have .symbols files in Symbols folder but no .dSYM
Are you actually missing a dSYM in the .xcarchive, or are you saying that it's missing only in the .ipa you upload? Xcode won't include the dSYM in the upload when bitcode is enabled, because it has no use. The bitcode compilation process will create a new dSYM for you as a byproduct of any compilation, which you download later in the Xcode Organizer, and it is this new dSYM that helps you debug crashes coming in from customers who download your app from the App Store.
Feb ’21