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
8
votes
1 answer

dSYM download when Bitcode is disabled

To use the Rollbar service, Bitcode needs to be disabled for traceback symbolization. I also have to upload the dSYM file to Rollbar. But where do I get the dSYM file when Bitcode is disabled? Normally I can download the file from App Store Connect…
Kevin Lieser
  • 951
  • 1
  • 9
  • 25
8
votes
13 answers

Firebase upload symbol files build error: Unexpected argument 'ServiceAccount.json'

I am trying to implement crash reporting with firebase. I followed the documentation here. And renamed the downloaded son file to ServiceAccount.json. Then copied it to project directory. Also changed the script. Now my build phase run script looks…
Johnykutty
  • 12,091
  • 13
  • 59
  • 100
7
votes
1 answer

How to ship dsym file with vendored framework through cocoapods in ios

I have created a vendored framework that I am shipping through cocoapods. Now I would like to ship the dsym file with the framework also, so that my crashes could be shown in console and included with the archived ipa's dsyms. I tried to copy the…
shivi_shub
  • 1,018
  • 1
  • 7
  • 15
7
votes
4 answers

Run Script Phase after dSYM is generated with Xcode 10 (on build)

In the New Features section, it states: In the new build system, shell scripts can't rely on the state of build artifacts not listed in other build phases (for example, the Info.plist file or .dSYM files.) Add files the script build phase …
Maor Refaeli
  • 2,417
  • 2
  • 19
  • 33
7
votes
2 answers

Unable to upload Crashlytics dSYM file during build phase due to script error

I'm trying to add Firebase Crashlytics to my Swift 4 iOS app. I have the SDK installed but I'm having some issues with this dSYM thing, the firebase console tells me I need to upload the dSYM file before I can see any errors. So I have set up the…
Jamie McAllister
  • 729
  • 2
  • 11
  • 33
7
votes
0 answers

Including .dSYM file inside .ipa file

For iOS builds with Xcode 8, is it possible to include a generated .dSYM file into the .ipa file? I'm building my ipa files like this (in Jenkins but it shouldn't matter) ... # Create xarchive xcodebuild -workspace /sourcepath/myapp.xcworkspace …
BadmintonCat
  • 9,416
  • 14
  • 78
  • 129
7
votes
2 answers

Cannot compress dSyms

I need to compress dSYMs folder that contains dSYM file But i'm stuck Good thing is, I was able to compress using commandline zip -r outputFile.zip *.dSYM
Ted
  • 22,696
  • 11
  • 95
  • 109
7
votes
1 answer

Download dSYM fails "Missing App Version"

When I try to download the dSYM from the organizer, it gives me this error : Missing App Version An app record for “co.**” was found but a matching version for “1.0.3” build “10” was not. I have enabled Bitcode. It's a swift app with Swift and…
JohnVanDijk
  • 3,546
  • 1
  • 24
  • 27
7
votes
1 answer

How do I get rbenv to keep debugging symbols?

I installed the development version of Ruby 2 via rbenv on Mac OS X v10.8.3, and am using it to compile a gem I'm working on. I have a memory problem I want to debug. Unfortunately, whenever I run valgrind, gdb, or cgdb in the context of a rake…
Translunar
  • 3,739
  • 33
  • 55
6
votes
2 answers

Missing UUID dSYM within the AppStore downloaded dSYMs (more targets app)

I face to the following issue with iOS app (XCode 10.3): Crashlytics says that I have a missing dSYM, and provides the missing dSYM UUID (I have both required and optional UUIDs missing) The app is BitCode app, and dSYMs are downloaded from…
Michael Bernat
  • 486
  • 5
  • 16
6
votes
2 answers

What is in the .dSYM directories created by cmake with the makefile generator on macos?

I'm using CMake on MacOS to generate Makefiles for my C++ project. When I build a target (say, test/AsyncTest), I get that target, plus a test/AsyncTest.dSYM/ directory that contains the…
Eric Niebler
  • 5,927
  • 2
  • 29
  • 43
6
votes
0 answers

xcodebuild build action to distribute a dynamic framework with stripped dSYM

I used to build our dynamic frameworks for internal development using xcodebuild -workspace build -configuration "Release" now that we are shipping frameworks to 3rd party developers we want to remove symbols from framework…
Lubbo
  • 1,030
  • 1
  • 10
  • 18
6
votes
3 answers

what the structure of dsym file?

What's structure of a dsym file generated when build the app. I know it contain DWARF debug info, but what's a dsym file. I want to read the DWARF info in it. Is it just a Mach-O binary file that contain only debug sections? How do I pass it to a…
leavez
  • 2,119
  • 2
  • 27
  • 36
6
votes
2 answers

Scheme with multiple targets -> Crashlytics -> Unable to copy dSym file

I am building a scheme with multiple targets for Archive. If I build every single target with corresponding scheme alone, it works just fine. However, when I am building them altogether in one scheme I get error from crashlytics: 2014-05-13…
Miroslav Kuťák
  • 1,875
  • 1
  • 18
  • 24
5
votes
1 answer

How to get the .dSYM file from expo EAS build?

I have successfully built an app using Expo EAS build and now I want to retrieve the .dSYM file generated. Anyone know if it's possible? I couldn't find anything related to that in the Expo AES build docs.
1 2
3
12 13