## What happened

Following the Codemagic docs for uploading iOS dSYMs to Firebase Crashlytics, only one archive's symbols made it. The upload script used find with | head -1, which grabs just the first dSYM zip and ignores the rest. So Crashlytics showed incomplete symbolication for the rest of the build's frameworks.

## The fix that worked

Drop the | head -1 so every dSYM archive is uploaded, not just the first match. The corrected script lists all dSYM files, resolves the parent directory of each zip, and runs upload-symbols against all of them. The reporter confirmed all symbols went up after the change.