Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

Reply to Dtrace no longer have access to HFS data structures
Yeah, HFS is now loaded from a KEXT, which is cool in general but makes things hard for DTrace. It would seem logical for the HFS KEXT’s .dSYM to be included in the Kernel Debug Kit but it is not. You should definitely file a bug requesting that. Please post your bug number, just for the record. If no one else chimes in, you might try asking over on the filesystem-dev mailing list.Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’16
Reply to Missing (or invalid) dSYMs
Seeing the same issue. We started seeing this for a build which we uploaded to Appstore connect on July 27th 2021. Ever since then all of our bitcode enabled builds uploaded to appstore connect do not have matching UUIDs between the crashes reported and the dsyms downloaded from appstore connect. Even xcode organiser is unable to symbolicate these crash logs. This issue seems to be happening for app targets and not the extension targets such as Intent Service extensions. The app extension crashes appear symbolicated on xcode organiser. If it helps our Compressed File size on appstore connect is 274MB.
Aug ’21
Reply to Crash log and symbolication when using Xcode Cloud
But what if I don't download the archive builds from Xcode Cloud and don't have them locally? Does that mean that I won't be able to symbolicate crash? I thought the crashes would be symbolicated in the cloud. It's not the case? When you submit your app to the App Store, there's an option for you to include symbol information as part of the app for that upload. When you do so, crash reports that appear in your Xcode Organizer for that app version will be symbolicated for you already. That's a feature of the App Store, and not specific to builds created and uploaded through Xcode Cloud. However, that doesn't mean you shouldn't download the archives from Xcode Cloud, that is still a best practice. One valuable part of that is access to the dSYMs, which are incredibly detailed debugging assets. While using the dSYMs for symbolication is one function they serve, they also enable significant debugging capabilities using LLDB that aren't possible without them. The symbol information for symbolicat
Jun ’25
Unable to see my bundle while creating new app on AppStoreConnect
Hi, I have two bundle id's registered with with of my iOS Apps. with one i'm also using Push notifications but when i create new app to upload it, bundle id chooser does not show me the list of my bundle ids registered. Here you can see when i stry to choose bundle id it is emtpy. I need to download DSYM file for Firebase Crashlytics.
0
0
552
Jun ’23
Xcode 8.2 beta wrong path for Simulator
I'm trying to debug my app in the simulator so I click the 'Build and then run current Schema' button. I get the following error from XCode:Cannot launch simulated executable: no file found at /Users/[myusername]/Library/Developer/Xcode/DerivedData/[myProjectName]-btwfgawblegvrqcojbqvgxppqqfl/Build/Products/Debug-iphoneos/[myAppName].appI go look at the folders and XCode is putting the app in:/Users/[myusername]/Library/Developer/Xcode/DerivedData/[myProjectName]-btwfgawblegvrqcojbqvgxppqqfl/Build/Products/Debug-iphonesimulator/[myAppName].appI can't seem to find where it's determining to use the Debug-iphonesimulator folder and don't know how to change it to Debug-iphoneos.Is there a build setting I'm missing or is it just a bug in xCode?My lame workaround is to delete the app and the .dSYM files from the Debug-iphoneos folder, get the error message then copy the app and .dSYM files from the Debug-iphonesimulator folder and repeat.
2
0
3.7k
Nov ’16
Reply to Using an App Review .crash file
For the record, I am answering my own question. Yes, 'atos' was the correct tool to use. The key was realizing that the '.archive' file was needed by 'atos'... In addition to the console text shown above, there was also this snippet: ... Binary Images: 0x10a062000 - 0x10a325fff +[devProdID] (2.2.3 - 3302) <9248A949-D5CB-3C44-924B-2A9403061E7B> /Applications/AppXYZ.app/Contents/MacOS/AppXYZ ... So the actual command which achieved the desired result was: atos -arch x86_64 -o /Users/steve/Library/Developer/Xcode/Archives/2021-09-10/AppXYZ 9-10-21, 9.05 PM.xcarchive/dSYMs/AppXYZ.app.dSYM/Contents/Resources/DWARF/AppXYZ -l 0x10a062000 0x000000010a069107
Sep ’21
Xcode won't symbolicate .ips crash log
I was my understanding that you're supposed to be able to open a .ips crash log in Xcode and see pretty much what you would see if the app had been running in the debugger when it crashed. But the addresses in my app don't get symbolicated. I opened the .ips in the same project and same version of Xcode that was used to create the app. The .dSym file is around, and I can use it to symbolicate using the atos tool. What am I missing?
3
0
2.4k
Jun ’24