Josh O'Connor
Josh O'Connor

Reputation: 4962

Issue uploading iOS app to iTunes Connect: "Symbol tools failed"

I am in the process of uploading my app to iTunes Connect. As I am uploading to iTunes Connect, an error comes up, saying "An error occurred during upload. Symbols tool failed."

I am very confused to why this error is occurring. I've been able to upload builds to iTunes Connect previously without issue. Our team added Placed framework in our app recently and I have a hunch that might be the issue, but I am not sure. The reason I feel that Placed is our issue is because Xcode mentions that it has 0 Entitlements three times before the upload.

How do I bypass this issue?

Before upload (notice the Placed 0 Entitlements): enter image description here

Symbols tool failed error, occurs shortly after pressing the upload button in previous picture: enter image description here

Archive upload failed: enter image description here

Upvotes: 14

Views: 7324

Answers (4)

17th Dimension
17th Dimension

Reputation: 73

For me this happened when my hard disk was out of space, check out the logs.

Upvotes: 1

itzo
itzo

Reputation: 1249

To resolve this myself, Go to Build Phases -> Copy Bundle Resources -> Remove all frameworks or folder with frameworks. No frameworks should be there!

Upvotes: 5

Abdullah
Abdullah

Reputation: 373

pod install command it will fix the problem

Upvotes: 0

Christopher
Christopher

Reputation: 1455

I ran into this problem with XCode 9 and it appears to occur when you have third party frameworks or compiled .a libraries added to your projects build settings as it is unable to symbolicate these files.

Unchecking Include app symbols allows it to upload.

Upvotes: 17

Related Questions