Search results for

dsym file

75,434 results found

Post

Replies

Boosts

Views

Activity

How to download dSYM file from app store connect
i want to download dSYM file from App store connect, i can see the download option for download dSYM in Build Metadata, but when click on that link download dSYM it opening new tab in browser and closing it, its not downloading any file Please help me to find missing dSYM file, i didn't create archive in my machine, some other team member have created build by using codemagic
1
0
669
Jun ’22
I am seeing .dSYM file but Instruments wont read it.
Hey guys I am finally able to generate a .dSYM file for my debug verision of an app running in XCode 7.3which was a painful endeavor in and of itself...this seemed to be more automatic in Xcode 6.Anyway...It seems to be the correct dSYM file, based on time stamps of the app and the dSYM file itself.However, Instruments does not want to find it, even if I use the File/Symbols option to show it directlythe folder to look in.I get a popup alert from Instruments that says this:The specified path didn't locate a dSYM for any of the selected libraries.In File/Symbols panel I tried selecting the app on the left and the app binary on the left...neither wouldacknowledge my .dSYM file.Seems broken. Any advice?
2
0
2.0k
Jun ’16
Xcode build tools producing empty dSYM file
Hello! I’m currently trying to build my iOS project from the command line including all symbols with dSYMs. Some information about my project: I have two different targets in addition to libraries imported with a mix of Cocoapods and SwiftPM The debug information format for all targets is “DWARF with dSYM File” The issue I’m having is that after dSYM files are created, there is one empty one. The empty one always ends up being the actual app’s dSYM file. So the second target and all dependency dSYM files are created successfully, but the main app dSYM file is completely empty. Strangely, it works properly in about 1 out of every 20 builds. I’m building the app with the following command: 
 xcodebuild clean archive -workspace $WORKSPACE/workspaceName -scheme “appName-$ENV -archivePath $WORKSPACE/build/xcarchive name -destination 'generic/platform=iOS' || exit 1 I run the build command from a build server that uses Jenkins. When I run this locally, or build
0
0
1.7k
Jul ’23
dSYM file issue
Summary: Our app uses BITCODE. After we made the build and sent it to the appstore connect (xrun altool) we have load dsym from itunes. Usually dsym filesize was more than 50 mb. For now (last 5 days) after load our app into appstore connect we get very small dsym - about 16 mb. We cannot symbolicate crashes with this dsym.Steps to Reproduce:1. build project2. send to app store connect (via xcrun altool)3. wait for processing4. download dsymsExpected Results: dSYMs is validActual Results: dsyms is too small and not valid.
0
0
1.2k
Mar ’20
Can somebody help me with DSYM files please?
I have submitted an app to apple review team and it has been rejected 2 times now. They say to look at the crash logs but they are hard to understand where the error is, and they are not helping me really pin pointing the errors. I have managed to download the DSYM file for the app from Itunes Connect but again its not readable to me.I have been reading up on it and I have to symbolise it? Hope you understand what I mean. I have found the following terminal code but can't figure out where the first file path ends and the second file path begin.xcrun dsymutil -symbol-map ~/Library/Developer/Xcode/Archives/2017-11-23/MyGreatApp 11-23-17, 12.00 PM.xcarchive/BCSymbolMaps ~/Downloads/dSYMs/3B15C133-88AA-35B0-B8BA-84AF76826CE0.dSYMAny help would be greatly apprecated, thanks
0
0
805
Mar ’19
empty dSYM file detected - Xcode 16
Hi , I am currently encountering issues while running a Titanium application using Xcode 16. I would like to request your guidance on resolving the following problems: When running the Titanium app on a real device, I receive the following warning in Xcode and the app does not proceed beyond this point and the app is crashing on launch. warning: (arm64) /Users/Library/Developer/Xcode/DerivedData/Procedures-hamsarmfbtnowbcdocpmydtuafnp/Build/Products/Debug-iphoneos/Procedures.app/Procedures empty dSYM file detected, dSYM was created with an executable with no debug info. Thank you
1
0
105
May ’25
empty dSYM file detected - Xcode 16
Hi, I recently updated to Xcode 16. Since then I successfully built my app and sent an update to the App Store. But suddenly, after an exception I've experienced while working on my code, the app is crashing on launch, without showing the stack trace, and showing only one warning in the console: warning: (arm64) /Users/myuser/Library/Developer/Xcode/DerivedData/myapp-bglvscamatwthwbfqmtzmbvxeewc/Build/Products/Debug-iphonesimulator/myapp.app/MyApp empty dSYM file detected, dSYM was created with an executable with no debug info. Tried deleting derived data Erasing all simulator data Reseting my computer No change yet. Any idea what am I missing? Thank you..
27
0
26k
Sep ’24
Reply to How can I find the error in a TestFlight crash report?
I have found the following UUID in the Binary Images section of the crash report: In addition I have found the dSYM file. But I don't know how to open and find the UUID in the dSYM file. I have tried to open the dSYM file with TextEdit but it doesn't work. How can I find the UUID in my dSYM file? In addition, I don't know what I should enter in macOS Terminal when I want to use % grep to find the UUID in the dSYM file.
Jan ’25
Reply to Xcode 16 warning about missing symbols of static framework
I want to summarize my findings: Firebase libraries, such as Firebase, usually provide dSYM files correctly. Maybe this helps to evaluate possible solutions Xcode 16: There is a warning: “empty dSYM file detected, dSYM was created with an executable with no debug info” when archiving in Xcode 16. This leads to dSYM files not being properly generated for certain frameworks. Xcode 15: This issue did not occur in Xcode 15. The dSYM files were generated correctly, and there were no related warnings TransponderApp: When using the TransponderApp, the dSYM files are generated correctly, and there are no warnings or errors regarding missing dSYM files I assume Firebase libraries generally support dSYM files for debugging, but issues with dSYM generation might occur, especially in Xcode 16. Xcode may fail to generate them correctly.
Oct ’24
How to generate a dSym file for a Release build and still strip symbols?
I'm building a OSX app and this is giving me a very hard time.I need to generate a separate dSym file for symbolicating crash reports and I want to strip function names and symbols so as to keep out prying eyes.I'm using these command line flags when building my Release build. It generates the dSym just fine, but it doesn't strip the symbols from the binary so the crash report shows my function names...which I don't want.GCC_GENERATE_DEBUGGING_SYMBOLS=YES,GCC_DEBUGGING_SYMBOLS = full,DEBUG_INFORMATION_FORMAT=dwarf-with-dsym,DWARF_DSYM_FILE_NAME = $(TARGET_NAME).dSYM,DWARF_DSYM_FOLDER_PATH = $(CONFIGURATION_BUILD_DIR)/dSyms,DEPLOYMENT_POSTPROCESSING = YES,COPY_PHASE_STRIP=YES,STRIP_INSTALLED_PRODUCT = YES,STRIP_STYLE = all,SEPARATE_STRIP = YESPlease help...thanks.
1
0
17k
Aug ’17