Member-only story
Missing dSYM — iOS
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:
- Open your Xcode project and select your project file in the Xcode navigator.
- In the left-hand pane, select the target for your project.
- Go to Build Settings in the main area.
- In the search bar, type
debug information format
. - 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