Search results for

dsym file

75,458 results found

Post

Replies

Boosts

Views

Activity

Reply to Symbolicating Crashes for Applications Submitted with Bitcode
I make my App enable bitcode, archive my app, upload my app,then I can dowload and get two dSYM files in the dsym folder. But the problem is after changing app's version and some code, and archiving, uploading, I get two same dSYM files as the last. I cannot symblize the crash report using this two dSYM files beacuse this two files is wrong! Is it the bug in itunes connect? I try many times, but the dSYM files downloaded is always wrong.
Sep ’15
CoreFoundation Framework debug info (dsym file)
Hello all, I am debugging core saved in minidump format. After running minidumpstackwalk command in the output I see these messages: 2020-09-06 11:00:14: stackwalker.cc:103: INFO: Couldn't load symbols for: libsystemkernel.dylib|2B6311E662403EF78C87475B66F7452C0 2020-09-06 11:00:14: simplesymbolsupplier.cc:196: INFO: No symbol file at sym/CoreFoundation/C0D70026EDBE3CBDB317367CF4F1C92F0/CoreFoundation.sym 2020-09-06 11:00:14: stackwalker.cc:103: INFO: Couldn't load symbols for: CoreFoundation|C0D70026EDBE3CBDB317367CF4F1C92F0 2020-09-06 11:00:14: simplesymbolsupplier.cc:196: INFO: No symbol file at sym/HIToolbox/DE6F9A208AF7396382E14756C4A7A54C0/HIToolbox.sym 2020-09-06 11:00:14: stackwalker.cc:103: INFO: Couldn't load symbols for: HIToolbox|DE6F9A208AF7396382E14756C4A7A54C0 2020-09-06 11:00:14: simplesymbolsupplier.cc:196: INFO: No symbol file at sym/AppKit/C420864219F73EAAAACD3B836FFDEFCF0/AppKit.sym 2020-09-06 11:00:14: stackwalker.cc:103: INFO: Couldn't load symbols for: AppKit|
0
0
1.1k
Sep ’20
ASC Doesn't generate DSYM file
The latest build of my iOS app in TestFlight does not show a Download DSYM link in the build metadata tab. When I uploaded the build to App Store Connect I had enable bitcode turned on, and I can see Include Symbols is set to yes in the build metadata. But no link is next to it like my other recent builds. The last few builds I've submitted in the same manner have all generated the DSYM download links no problem. For some reason this particular build has not. Has anyone else experienced this same issue? Any tips of how to fix this? I'd like to avoid submitting a new build if possible Cheers
39
0
20k
Feb ’22
dSYM Files for Firebase not generating
Hey All, Just ready to update my app to the AppStore for the first time. I need some help. When I Archive my app to distribute, it shows that there is warnings that ‘the archive did not include a dSYM for firebase.analytics etc. I’ve tried almost everything please help!
2
0
322
Dec ’24
Reply to Lots of warnings when building with Xcode 7 with 3rd party libraries
I had this problem too. Here's how I fixed it.1) Go to Build Settings -> Build Options -> Debug Information Format2) Change the Debug setting from DWARF with dSYM File to DWARF3) Leave the Release setting at DWARF with dSYM FileThe problem appears to be that Xcode was trying to create dSYM files for Debug builds. You don't need dSYM files for Debug builds -- it's release builds where you need them. I hope this helps. Sincerely,Michael Patrick Ellard
Sep ’15
Reply to Investigating SIGTRAP on AppDelegate Declaration during App Store Connect Review
Hello eskimo, Thank you for your reply. Following the instructions on the Adding Identifiable Symbol Names to a Crash Report page, I have been able to apply the appropriate .dSYM file to the crash report to identify lines associated with that particular .dSYM file (FunkyFundz.app.dSYM). However, as you noted, the rest of the stack trace is not symbolicated. How can I go about symbolicating the rest of the crash report? When I look in the dSYMs folder inside the .xcarchive I see .dSYM files associated with my app and my third party libraries. However, in the stack trace I am trying to identify things like libsystem_kernel.dylib, CoreFoundation, and UIKitCore. I do not see .dSYM files for these. Should I be asking Xcode to generate and apply these somehow? Thank you so much for your help and clarification. :) Marvin
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’20
Reply to How to (re)symbolicate crashlog in Xcode 16.0?
[quote='764013021, jennifer266, /thread/764013, /profile/jennifer266'] All calls of my app are not symbolicated. [/quote] That most likely means that you're missing the corresponding dSYM file on your Mac. The first link cited by my colleague above regarding adding symbol information has instructions on how to determine if you have the dSYM file on your Mac. If you can't locate the matching dSYM file, then you won't be able to symbolicate the report fully. —Ed Ford,  DTS Engineer
Sep ’24