Member-only story

Missing dSYM — iOS

Syed Abdul Basit
3 min readNov 12, 2024

--

Facing problem while encountering the Crashlytics has detected a missing dSYM for version XYZ

Step 1: Check the Debug Information Format in Xcode

The first thing you should do is verify that your Xcode project is generating the correct debug symbols (dSYM files). Follow these steps:

  1. Open your Xcode project and select your project file in the Xcode navigator.
  2. In the left-hand pane, select the target for your project.
  3. Go to Build Settings in the main area.
  4. In the search bar, type debug information format.
  5. For all schemes, make sure the Debug Information Format is set to DWARF with dSYM File.

Step 2: Clean the Build Folder

After adjusting the build settings, it’s important to clean the build folder to remove any previous artifacts that could cause issues:

  • Press Shift + Command + K to clean the build folder.

Step 3: Archive Your Build

  • Click on Window
  • Select Organizer

--

--

No responses yet