Prthv
Prthv

Reputation: 99

"Upload symbol failed" while archiving and uploading a build through Xcode

While im archiving and uploading an build to the appstore connect through xcode im facing this error.

The archive did not include a SYM for the Flutter.framework with the UUIDs [4C4C44D2-5555-3144-A107-7B9E8F9E2FF7]. Ensure that the archive's dSYM folder includes a DWARF file for Flutter.framework with the expected

It's saying dSYM is not included in the archive. I'm using macos15 with xcode version 16.0

Error image

Is there anything that I need to change or add to the project?

Upvotes: 9

Views: 5718

Answers (3)

Ayan Khan
Ayan Khan

Reputation: 1

Check Build Settings: Ensure that Debug Information Format is set to DWARF with dSYM File for both the Debug and Release configurations:

Go to Xcode > Your Project > Build Settings. Set Debug Information Format to DWARF with dSYM File for all configurations.

Upvotes: -1

Aaydin
Aaydin

Reputation: 477

You can fix this issue by simply updating to the latest version of Flutter.

Upvotes: 2

RafaCom
RafaCom

Reputation: 51

I discovered this error after updating to macOS 15 and Xcode 16.0. The previous archive, which didn't show an error during validation before the update, now shows this error during validation. I'll try to send the app to Connect with this error.

Upvotes: 5

Related Questions