Morteza Soleimani
Morteza Soleimani

Reputation: 2670

iOS - Error on publishing iOS application from Xcode

I want to publish our iOS application to iTunes using Xcode but I get the following errors.

We use Xamarin studio to code the application, before this we published our application many times without any error, but we cant update it to new version, and in this new version we only changed some fonts and colors and I think this errors are not correct.

I know that there is some same problems for others and I read all this questions and asnwers but I cant fix the issue.

I enabled NSZombie in the settings but nothing changed.

Please let me know if you need more informations to help me solve this issue.

Regards.

Upvotes: 1

Views: 414

Answers (2)

Rolf Bjarne Kvinge
Rolf Bjarne Kvinge

Reputation: 19335

You're trying to publish a debug build.

Uncheck "Enable debugging" in the project's iOS Build options.

Upvotes: 2

Schemetrical
Schemetrical

Reputation: 5536

Turn off zombies, and search for underscores in your code (its going to be a pain) to find uses of private API. If it doesn't work, contact apple.

Upvotes: 0

Related Questions