Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot get passed the Validation stage of submitting app with iPhone 5 support

This is an old app that's been submitted many times without problems. I've modified the code and the info.plist to support iOS 6 and iPhone 5, but didn't change the build settings at all. I've checked the certificates and provisioning profiles, they are all sound. All adhoc builds ran just fine on our devices. I'm using Xcode 4.5.

I build without errors and it archives just fine. It shows up in the Organizer. When I click Validate..., I click through just like normal, pick the right provisioning profile, but then it fails every time with the same three errors:

  1. Unable to run the lipo command /Applications/Xcode.app...: can't open input file: ...(No such file or directory)
  2. Application failed codesign verification. The signature was invalid, contains disallowed entitlements, or it was not signed with an iPhone Distribution Certificate.
  3. The binary being analyzed must exist: ...

I've tried the answers in the following question: Binary being analyzed must exist, iOS App Archive in xcode and my app checks out.

I suspect the problem is that I've included armv6, armv7 and armv7s as valid architectures, but I really have no idea what the problem is because this all worked in Xcode 4.4.

What do I do to fix this?

like image 842
ageektrapped Avatar asked Sep 27 '12 18:09

ageektrapped


People also ask

How long does it take for Apple to approve an app update?

Review status On average, 90% of submissions are reviewed in less than 24 hours. You'll be notified by email of status changes. You can also check the review status of your submission in the My Apps section of App Store Connect or on the App Store Connect app for iPhone and iPad.

How long does it take to put an app on the app Store?

In most cases, it takes about one to three days to receive approval, and it can take up to 24 hours for your app to appear in the App Store after approval.

Is it hard to get an app on the app store?

Developers always have that lurking fear of their app being rejected by the Apple App Store. The Apple App Store is one of the best app marketplaces in the mobile industry, as also one of the most difficult to enter and get recognized as a developer.


1 Answers

You can not build armv6 binaries using Xcode 4.5, the support for armv6 has been dropped by Apple.

It seems your errors are pretty much compounded after it reaches the first error so if you fix it so it builds for armv7 and armv7s then it should fix the rest of the errors (since it'll generate a valid binary if the script is fine with everything else and be able to be analysed)

like image 101
Suhail Patel Avatar answered Sep 21 '22 00:09

Suhail Patel