0

I've inherited a project with several linked frameworks by virtue of gitmodules. For crash tracking we use Instabug. It keeps asking me for symbol files that I can't find. Note that I did manage to get some of the dSYM files from iTunes Connect.

An example of what it's asking me is:

F9E0A7B7-5989-3D98-A6ED-29F8D1B04A9E

Things I've tried that did not work: 1. can't find symbols for framework 2. using DWARF with dSYM Debug Information Format 3. built my project using both iOS10 and iOS11

Anyone else encounter this?

I'm using: Xcode 9 Build target: iOS10

meowmeowmeow
  • 713
  • 7
  • 17

1 Answers1

0

If you have enabled Bitcode, you can find the dSYMs inside your app's archive.

You can find the archive via the Xcode Organizer window, by selecting your app in the list on the left side of the window. Once you find the archive, right click on it and select Show in finder.

In the finder, right click on the archive file and select Show Package Contents. In there somewhere there should be a folder named dSYMs.

m_katsifarakis
  • 1,777
  • 1
  • 21
  • 27