Binary analysis must exist, iOS application archive in xcode

I am trying to test my app for the App Store, I made an update for it. He used to use Three20s, although I'm not sure which version is probably 1.0.3. Now it uses 1.0.5, and I restarted the python script, which adds three20 to the application with the -xcode-version = 4 flag.

I have no linker errors and it archives perfectly, but when I try to check the archive for distribution, I get the following errors:

enter image description here

I’m kind of at the end, dealing with linker errors all day and common issues with three and Xcode. Is there something obvious that I can be wrong here?

+4
ios iphone xcode xcode4 three20
Jul 02 '12 at 4:13
source share
1 answer

The parsed binary must be executable:

Check your build settings because something is suspicious. The Mach-O type must be installed in the executable file: enter image description here

Incorrect application code verification ...

You must sign your executable file with a distribution certificate, most likely you are signed with a development certificate or not at all.

enter image description here

The parsed binary must exist:

This is probably due to problem number one. Decide the type of Mach-O and it should disappear immediately.

+2
Jul 02 2018-12-12T00
source share



All Articles