Questions tagged [dsym]

On MacOSX and iOS, dSYM files are stand alone bundles containing debug symbols.

On MacOSX and iOS, dSYM files are stand alone bundles containing debug symbols.

http://lldb.llvm.org/symbols.html

194 questions
0
votes
1 answer

I have .crash report the dSYM file, can't symbolicate the crash log

I am sending a crash log gathered from PLCrashReporter to my server, also for each time I make a build a run script works and it uploads the dSYM file to my server, then in the server I am trying to symbolicate the crash log using atos -arch arm64…
0
votes
0 answers

dSYMs missing in Crashlytics, maybe of local Swift Packages

We use Crashlytics for crash reports and recently we started to receive warnings that some dSYMs are missing. The main latest changes are the switch to Xcode 14 that brought disabling bitcode, and the introduction of local Swift Packages. The UUID…
M_D
  • 1
  • 1
0
votes
0 answers

cmake add_custom_command POST_BUILD doesn't work as expected

I generate a iOS framework in my project and pass the GCC_GENERATE_DEBUGGING_SYMBOLS to generate dsym for the built framework. The dsym gets generated as expected, but when I try to copy it to another location it doesn't fully work. It copies only…
rstr1112
  • 308
  • 4
  • 13
0
votes
0 answers

Xcode does not load dSYM files when debugging Unreal Engine 5 code

I am trying to attach Xcode to debug a crash within the Unreal Engine code. I have installed Unreal Engine 5 and installed the debug symbols through the Epic Games Launcher. Thus, I have both UnrealEditor-ApplicationCore.dylib and…
Sc4v
  • 348
  • 2
  • 10
0
votes
2 answers

Is it possible to generate dSyms for a build that was already released?

Due to XCode 14 deprecating bitcode, I'm no longer able to download the dSyms from App Store Connect to submit to Bugsnag like I used to. Unfortunately I realized this too late, and I've released the latest version of our app in the store. I had…
swrobel
  • 4,053
  • 2
  • 33
  • 42
0
votes
1 answer

Bugsnag Upload dsym files

I followed bugsnag‘s documentation and found a few xcarchive file using the mfind UUID command. $ mdfind YOUR_UUID_HERE path/to/dsyms/MyApp.dSYM $ bugsnag-dsym-upload path/to/dsyms Here is the…
es1
  • 1,231
  • 3
  • 14
  • 27
0
votes
1 answer

iOS: Why is Crashlytics saying there are optional dSYMs to upload when everything should already be uploaded?

When an app is uploaded to Testflight, previously there used to be an option to recompile bitcode, which if clicked would mean new dSyms would also get generated and need downloading from Testflight. However that option has now gone, meaning the…
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
0
votes
1 answer

How to create a dSYM bundle with swiftmodule in it

According to https://developer.apple.com/videos/play/wwdc2022/110370/, it is mentioned that a dSYM bundle can contain swift modules, but I just cannot reproduce this when trying to build a framework of a dynamic lib. I have already set Debug…
Jacket
  • 23
  • 4
0
votes
1 answer

How to get 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 and closing it, its not downloading any file Please help me to find…
Joshi G
  • 453
  • 9
  • 16
0
votes
0 answers

Firebase Crashlytics crash report missing line code

I'm not sure what's the cause, I uploaded all the dSYM I could found but I still have this issue The crash report only tells me the crash happened in function but not the line where it happened. It reports the crash as compiler-generated In the dSYM…
Yoho
  • 11
  • 1
0
votes
1 answer

Firebase Crashlytics: Upload dSYM script blocks iOS app building and archiving

I integrated Firebase Crashlytics in one of my bitcode disabled iOS project. It's working properly if I remove upload dSYM script(see image 2). But if add it then app building process never get complete same thing happens for app archiving also. I…
Dipak
  • 2,263
  • 1
  • 21
  • 27
0
votes
0 answers

Sentry iOS dSYM: Failed to process native stacktraces

WHAT I WANT: I try to setup a native iOS project with Sentry (https://sentry.io/) for error tracking and monitoring. (No performance stuff) So if some errors occurs I want to get some detailed info on the Sentry web interface. With detailed I mean…
Laufwunder
  • 773
  • 10
  • 21
0
votes
1 answer

Xcode apparently does not create the app’s dSYM file

I am developing an iOS app. Sometimes when I execute the development version on a test device that is not connected to Xcode, the app crashes. I later connect it to Xcode and display the device logs, and can see the crash log. Unfortunately, my…
Reinhard Männer
  • 14,022
  • 5
  • 54
  • 116
0
votes
1 answer

How do you get the Firebase/Crashlytics uploaded dsyms to register for stastical modeling and percentages?

We have used a various methods to upload dSYMS to firebase (script, manual, etc.) for our iOS app. They all get accepted and you can see the optional vs required in the dashboard: The problem is it seems the crash status is never calculated because…
hulkinggrunt
  • 69
  • 1
  • 9
0
votes
0 answers

Can I recover deleted Swift code from dSYM or XCode DerivedData?

I was tidying up my development Mac yesterday and deleted a couple of rogue Swift files that were just hanging around in my home directory. Turns out these files were actually part of an XCode workspace, but for some unknown reason weren't in the…
Sam Crawford
  • 311
  • 4
  • 16