Search results for

dsym file

77,660 results found

Post

Replies

Boosts

Views

Activity

Reply to empty dSYM file detected - Xcode 16
I tried Enable Debug Dylib Support = NO. At the beginning I saw that the message was gone and I was really happy, but then I tried to make some crashes but no dsym files were uploaded in Firebase. I switched again in Yes and I saw the message again, but after that when I made some crashes, I saw the logs in Firebase. I cannot say that I have a clear answer or I realised exactly what happened, but now it's working. In all these tries I run my app from Xcode of course, but sometimes I just run my app directly from the phone. I don't know if this helped the situation for this thing to unstuck. I hope that maybe someone will get some help from all these and make it work
Oct ’24
Reply to How to access dSYM file
Any idea how to download it when the build done from Xcode cloud? @kassa11, you should download the final archive from Xcode Cloud. See Download and archive build artifacts. We used a no-code platform to build our app. How would we download it without access to Xcode? @FeelGoodMealsNC, that is between you and the vendor of your no-code tool, as they should provide you with the complete set of build artifacts, including all available dSYM files. However, I suspect the reason you're inquiring about this information here is that you're receiving a warning when uploading your app to the App Store. If that's the case, then you'll want to see this other thread. Note that Firebase is a very common library in the iOS developer community, but if it has any closed source components (I do not know since it's from a vendor and not from Apple), then a dSYM may not exist if the author of the library does not wish to make such symbol information available to its clients. —Ed Ford,  DTS Engineer
Oct ’24
symbolicate crashlog using .symbols files instead of dSYMs
Hi, Some crashes downloaded from TestFlight aren't symbolicated by Xcode and I don't know why, here's an example: Although all uploaded builds contain debug symbols (Symbols directory with .symbols files) and other crashlogs in the same version are symbolicated just fine (also visible on the above SS). I have access only to the .symbols files but not to the original dSYMs and I wonder how to perform symbolication manually. I tried pointing atos and symbolicatecrash utilities to respective .symbols file, but they are unable to work with it. I'm sure it's possible as TestFlight symbolicates crashlogs using only .symbols files somehow. Could you give a hint?
2
0
156
2w
Reply to CFBundleSupportedPlatforms issue
Well in my case, just now, I was using one of my own frameworks (built through Carthage). When I stopped having Carthage build it, and just dropped the framework project into my project's workspace, I got past this error.Note that I was still using other Carthage built frameworks, just my own was freaking out for some reason?Additionally, once I had my Framework Project in my Workspace, I adjusted it's framework search paths to point to an absolute filesystem location of the Projects Carthage's Build/iOS (recursive) folder.--- Later ---nevermind, I had to re-archive the app and now the error is back again, but for a different framework I don't control. =(---- Later Still ----Ok, I got it! For me anyway, I needed to remove the dSYM files that Carthage generated from the Apps Resource Bundle.
Oct ’15
dSYM download button not visible anymore in App Store Connect
Build triggered manually and via fastlane Debug Information Format is DWARF with dSYM File Bitcode is enabled Strip Swift symbols is checked Upload app's symbols is checked After building a hotfix a few days ago (basically just added an additional case to my API model) the build metadata says that it contains symbols, but the blue download dSYM button did not show up. The previous build had the exact same build settings and export options and everything worked as expected. I found this post on stack overflow describing the same problem: https://stackoverflow.com/questions/70975504/why-is-there-no-download-dsym-button-in-testflight-for-my-app Is there an issue with App Store Connect at the moment? I am not able to publish an Application with no symbolicated crash reports, this hotfix is pretty critical and needs to be distributed as soon as possible. Is there any workaround for this?
8
0
9k
Feb ’22
Reply to Symbolicate Crash Log
-David, so long as you have the correct .ipa and .dSYM files that match the crash log:drop them all into one folder for simplicity,attach your device to your macbook,remove your app from your device,install the app via the .ipa device directly through itunes (this may take a bit of searching but is fairly easy)once that is done, and you are assured your app matches the one that caused the crash log: in Xcode, fire up the WIndow | Devices viewselect your device,click on View Device Logsdrag your crash log into the log window (left-hand pane, under the headers: Process / Dev / etc..that should be it, Xcode should automatically symbolicate the crash log for you.I hope this helps, as i know just how totally frustrating this experience can be.drew..
Jul ’15
Reply to Swift, XPC, and... segmentation faults?
We use cmake, so it was a bit more difficult -- and CircleCI, so I had to make sure the dsym files got archived. Did that. Re-confirmed it's this code: guard let flowData = self.flowSets[id] else { os_log(.error, log: Self.log, Could not find flow %{public}@, id.uuidString); completion(RedirectorError.flowNotFound) return } id is a UUID; self.flowSets is private var flowSets : [UUID : FlowData] = [:] (where FlowData is a simple class wrapping some flow-related information). This particular method is invoked via XPC from a daemon, with a signature of func handleTCPData(_ id: UUID, data: Data?, completion: @escaping (_: Error?) -> Void). The daemon code is in ObjC++, and it checks to ensure that the UUID is non-nil. So I have no idea why it is segfaulting!
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’22
Reply to Crashes organizer no longer symbolicating reports in Xcode 7.3.1
I'm having this problem as well.I found this post helpful in symbolicating my crash logs manually:http://stackoverflow.com/questions/25855389/how-to-symbolicate-crash-log-xcodein particular the post by 'Sea Coast of Tibet'.In the Xcode Crashes Organizer, cmd-click/right click on the app's name (above # devices) and choose 'Show in Finder' to find the 'xxx.xccrashpoint' bundle containing the raw crash logs. Cmd-click/right-click on this and select 'Show Package Contents' to open the bundle.Copy the raw crash logs to a folder with your app's binary and its dSYM file (you did save these after submitting your app, right?) and follow the directions in Sea Coast of Tibet's post with some/all of the crash logs to see the symbolicated stack trace of each crash.
Aug ’16
Reply to Exception SIGABRT encountered in App Store review
there is no Download Debug Symbols button You shouldn’t need to download debug symbols. Consider this quote from the Download debug symbols page in Xcode help: If you include bitcode when you upload your app to App Store Connect Downloading debug symbols is only relevant if you use bitcode, and there’s no point using bitcode in a Mac App Store app [1]. So: Make sure you’re not using bitcode. Symbolicate using the .dSYM files created by your local build. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] As of WWWDC this year, bitcode is effectively deprecated for all our platforms, but it’s never been relevant to Mac App Store apps.
Topic: App & System Services SubTopic: General Tags:
Jul ’22
The archive did not include a dSYM
I want to upload the ipa to the TestFlight. For this I created the archive and validated it. Its show validated with below warning. I also clicked on distribute its show uploaded to apple with below warning. But when I checked on TestFlight the app is not showing. Sometimes its show under processing but within few seconds it disappears. My Xcode version is 16.1. Upload Symbols Failed The archive did not include a dSYM for the Razorpay.framework with the UUIDs [654F4A20-5A85-369B-9211-D98E364FD681]. Ensure that the archive's dSYM folder includes a DWARF file for Razorpay.framework with the expected UUIDs. Upload Symbols Failed The archive did not include a dSYM for the hermes.framework with the UUIDs [4EAC6EDE-5B89-36B7-8F77-09A0E75C2F4A]. Ensure that the archive's dSYM folder includes a DWARF file for hermes.framework with the expected UUIDs.
1
0
1.9k
Feb ’25
Reply to Comparison between an empty project archive written in Swift versus Objective-C.
I'm not that familiar with Swift, I mostly do Objective-C programming, but my understanding is that Swift apps bundle a Swift runtime to be able to run the specific version of Swift that the app was compiled for.This runtime will obviously increase the size of the app.Looking at the contents of the .app file created by a debug build (using a default project in Xcode 7.1.1) there are the following files of intrest:Objective-CContents/MacOS/<app> 61 KBContents/Resources/Base.lproj/MainMenu.nib 36 KBSwiftContents/MacOS/<app> 37 KBContents/Resources/Base.lproj/MainMenu.nib 36 KBContents/Frameworks/libswift*.dylib 6 MB (the Swift runtime files)So a Swift app appears to get about 6MB of extra Swift related frameworks added to it, which isn't really that much.I'm not sure why the archive builds differ by 99.2MB rather than 6MB - although some of this could be due to dSYM files and other meta data bundled with the app archive. The Swift build may perhaps need to bundle
Dec ’15
Reply to Issues with Embedding Python Interpreter in MacOS App Distributed via TestFlight
[quote='809905022, gpg, /thread/766290?answerId=809905022#809905022, /profile/gpg'] I use Xcode Command Line tools (clang 16.1) to compile the source and generate the dSYM files. [/quote] OK. From Xcode’s perspective, that’s still an external build system. [quote='809905022, gpg, /thread/766290?answerId=809905022#809905022, /profile/gpg'] Can a sandboxed process (python exec) access to a URL from another sandboxed process (app)? [/quote] Yes, but I don’t think it needs to in this case. My understanding is that you’re running this Python executable as a child process, using posix_spawn or something layered on top of that (like NSTask or Process). Please confirm. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Entitlements Tags:
Oct ’24
dSYMs not generating in Release Build
I have a similar but different problem to another thread. I am using Xcode 16, implementing Firebase Crashlytics. I have the dSYMs working correctly in a Debug build. However when I change to a Release Build the dSYMs do not generate properly. In my archive the XXXapp.debug.dylib file is missing. I verified the debug format with dSYMs, changed Strip settings, compared Debug and Release settings etc without any fix. Any ideas of how to solve this problem?
2
0
54
Jun ’25