Search results for

dsym file

75,458 results found

Post

Replies

Boosts

Views

Activity

Reply to DSYMs No Longer Offered for Download?
any update on this? Firebase and Crashlytics expect a dSYM file that does not exist. I've tried all combinations of 'strip' 'dont strip' and 'upload... to receive symbolicated...' and not checking 'upload... to receive symbolicated' when distributing my application to itunes from Xcode.yes, DWARF with DSYM is turned on in my build settings.Also the download debug symbols that appears in Xcode under Window > Organizer > Archives does not find any Dsym locally - which I can confirm by right-clicking the build, saying 'show in finder', then right clicking my abc.xcarchive and saying 'show package contents' the folder that says 'dSYMs' is always empty.Yes, I have also tried disabled 'bitcode', so that there should be no 'app thinning' related issues.Yes, I am using the absolute latest version of Xcode: ersion 11.1 (11A1027)
Oct ’19
Reply to Bitcode app not symbolicating?
I have the exact same Problem with Xcode 8.2.1.It would be awesome if an Apple Engineer could help us out. Where do we have to put the dSYMs files? We use a build server to submit the binaries to iTunesConnect and all developers get unsymbolicated crash reports in Xcode. We would like to use it as our main crashreporter tool, but it isn't usable as it is. Please help us out or fix it in an upcoming release.
Mar ’17
I am unable to reproduce the crash except client device. Also, not able to symbolicate the crahas report with or without dSYM file.
I have .app,.dSYM and .crash files. I have tried many method to fully symbolicate the crash but no luck. Please find the part of crash log below.Crash 1 hapening on UIWebview randomly. Crash 2 occurs randomly on pressing a button from tableview row.Any help or suggestion appreciated.Crash 1:Date/Time: 2017-06-16 11:47:01.5180 -0500Launch Time: 2017-06-16 11:46:14.0326 -0500OS Version: iPhone OS 10.3.2 (14F89)Report Version: 104Exception Type: EXC_BAD_ACCESS (SIGSEGV)Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000ea315beb8Termination Signal: Segmentation fault: 11Termination Reason: Namespace SIGNAL, Code 0xbTerminating Process: exc handler [0]Triggered by Thread: 0Filtered syslog:None foundThread 0 name: Dispatch queue: com.apple.main-threadThread 0 Crashed:0 libobjc.A.dylib 0x000000018c7d8150 0x18c7bc000 + 1150241 UIKit 0x00000001940b69b8 0x193e7d000 + 23331122 UIKit 0x00000001940992e0 0x193e7d000 + 22125763 UIKit 0x0000000194098ffc 0x193e7d000 + 22118364 CoreFoundation 0x000000018dd68
0
0
541
Jun ’17
Reply to Exception SIGABRT encountered in App Store review
Do you think the reason I am unable to further symbolicate the .ips file is because I do not have the correct .dSym file? I don’t know, but this is one of the most common causes of such problems. Can you tell me how to use dwarfdump to see if I have a .dSYM with the right UUID and how to use mdfind to see if it is visible to the symbolicator and what to do if it is not? That information is in Adding Identifiable Symbol Names to a Crash Report. Open that page and search for dwarfdump for the first and mdfind for the second. Where is the required UUID? If you look in the above-mentioned doc, there’s an image that illustrates this in the discussion of mdfind. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Jul ’22
Reply to EXC_BAD_ACCESS since 12.4 can't reproduce
OK, the first step here is to make sure that you have a .dSYM file that matches the UUID of your executable from the crash report (c89cb8e1714435b6a04da699b3bc9b2e). You can confirm this with dwarfdump, as discussed in Technote 2151 Understanding and Analyzing iOS Application Crash Reports. Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Sep ’19
Reply to Xcode 16 warning about missing symbols of static framework
This is a new warning in Xcode 16 where if you're missing a dSYM, Xcode lets you know in case you aren't expecting that — this is to reduce scenarios where you won't are able to fully symbolicating frames coming from your app's code in crash reports. In some cases, you may not have a dSYM, such as a closed source library from a vendor, and in those cases, the warning is safe to discard. For those developing or using libraries that are statically linked, I was not able to reproduce this warning using either the example XCFramework attached in the bug reports noted in this thread, or by doing some simple testing with libraries that I know are popular in the iOS developer community and also statically linked. For the purposes of these tests, I'm creating a brand new Xcode project, adding the library through a Swift package, and making at least function call into the library so that it doesn't appear as dead code that can be eliminated as a release optimization. For these tests, the Xcode archiv
Oct ’24
Reply to Review team says my app crashes.
First - Thank you. Your reply is bery much appreciated.Unfortunately, they did not supply a list of devices or OS versions. Their entire response is below, minus the crash log. They suggest symbolicating the crash log, but since I used PhoneGap Build to create the .ipa file, I don not have a .dsym file to do that with. I know that the app works in airplane mode, so networking is not an issue. If those are my only options, it looks like I have no avenue to pursue to resolve this.
Jul ’15
Empty dSYMs folder since Xcode 15
Since I updated to Xcode 15.3, my archives have an empty dSYMs folder. I have not changed any project settings since Xcode 14. My build settings have: Debug Information Format: DWARF with dSYM File Generate Debug Symbols: Yes From my archives, if I navigate to the .xcarchive, Show Package Contents, there is a dSYMs folder. For all my archives built in Xcode 15, this folder is empty. For previous archives (Xcode 14), this folder contains a .app.dSYM file. When I distribute my app via App Store Connect and receive crash reports from TestFlight, these are symbolicated. So I'm confused why I don't see a local .dSYM file. Can you explain this? What do I need to change to generate this? (And does it matter if I'm getting symbolicated crash reports??)
0
0
769
Jul ’24
Reply to Missing BCSymbolMap for AppStore Submission - Xcode7B5
Exact same problem here. I thought it might be because I am using Carthage and was not copying my dSYM files into my product. So I fixed that issue, per the carthage docs, No love still. Get the same error.Ah! When I uncheck the `Include Bit Code` option as mentioned here everything is fine. So I am going to assume that the problem lies in one of my dependant frameworks being complied without Bit Code enabled.
Sep ’15
Reply to dSYM Files for Firebase not generating
Xcode's warning here is so that you're aware that you may not receive fully symbolicated crash reports that involve code paths through that library. It's also just a warning so that you're aware, but does not impede any runtime functionality in your app. Please see my reply in another thread for a more in-depth discussion. In particular, I said: Your library vendor may have intentionally made that choice to not include a dSYM for proprietary SDK reasons, and that's a choice that's up to them. If you have any further questions about Firebase not providing you with dSYM files, please contact their support. —Ed Ford,  DTS Engineer
Dec ’24
Reply to Xcode 16 warning about missing symbols of static framework
As far as I know, it’s the nature of a static framework to not contain symbols since the framework will be embedded in the final app binary, and the symbols should then be generated. The heart of a static framework is a static library, which essentially is a bag of unlinked object files. It's your choice whether or not to include symbols, but if you do, they will be part of the object files, and not a dSYM. When the final app links a static library, this information is then extracted and combined into the dSYM file for the app as if those object files were their own. However, when testing the Validate function of the Xcode 16 deployment process, our users are receiving a warning that says the framework does not contain symbols. Can you be specific about the exact text in the warning message? A screenshot of the message is welcome too. — Ed Ford,  DTS Engineer
Aug ’24
Download dSYM Link missing from Build Metadata?
Hello, We are trying to ensure our crash reports can be re-symbolicated but are struggling to locate the appropriate dSYM file for build that we upload to App Store Connect. Documentation and online support says there should be a link in the metadata section for the build where I can download this file, but no link is shown. The area says Includes Symbols Yes and then nothing else (no link). Where can I find the appropriate dSYM file to download? We us the xcrun altool to upload our build to App Store Connect (not the organizer), because we use an automated build service (Unity Cloud Build). Thank you for any advice.
2
0
912
May ’21
fabric - dsym upload error
I'm trying to upload dSYM file of my app reading it from the .xcarchive bundle by the Fabric cli command:upload-symbols -p ios -gsp GoogleService-Info.plistBut unfortunately I always get this error: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.}upload-symbols version is: 1.5.0 build 11. MacBook Pro 2019 with macOS Mojave 10.14.6 - 32 GB.Is anybody experiencing the same issue ?
4
0
4.1k
Sep ’19
Reply to Exception SIGABRT encountered in App Store review
I presumed this was due to lack of debug symbols The thing is, the info in Adding Identifiable Symbol Names to a Crash Report let’s you test that presumption: Get the code’s UUID from the Binary Images section of the log. Use dwarfdump to confirm that you have a .dSYM file with the right UUID. Use mdfind to confirm that it’s visible to the symbolicator. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Jul ’22