Error loading iOS application in iTunes Connect: "Symbol utilities failed"

I download the application in iTunes Connect. When I boot into iTunes Connect, an error occurs: "Error loading. The Symbols Tool Didn’t Work."

I am very confused why this error occurs. I was able to load assemblies into iTunes Connect without problems. Our team added a recently hosted framework to our application, and I have a suspicion that this may be a problem, but I'm not sure. The reason I feel that Placed is our problem is because Xcode mentions that it has 0 Entitlements three times before loading.

How to get around this problem?

Before downloading (pay attention to the placed 0 rights): enter image description here

An error with errors with symbols occurs shortly after clicking the download button in the previous picture: enter image description here

Error loading archive: enter image description here

+10
source share
2 answers

I ran into this problem with Xcode 9, and it seems to happen when you have third-party frameworks or compiled .a libraries added to your project build settings because they cannot symbolize these files.

Unmarking Include app symbols allows you to load it.

+11
source

pod install command will solve the problem

0
source

Source: https://habr.com/ru/post/1238447/


All Articles