Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR ITMS-90086 submitting app

Tags:

xcode

ios

ipa

I need to submit my app and I retrieve this error: error and the configuration is on 64 bits:

config I don't know how to do...

thanks in advance

like image 846
ghiboz Avatar asked Apr 10 '15 17:04

ghiboz


3 Answers

Make sure that for BOTH:

  • Project --> Build Settings --> Architectures

Project --> Build Settings --> Architectures

AND:

  • Targets --> Build Settings --> Architectures

Targets --> Build Settings --> Architectures

You have the following 4 things:

  1. Architectures set to Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)
  2. Base SDK set to some iOS8 SDK, for example Latest iOS (iOS 8.3) or iOS 8.3
  3. Build Active Architecture Only --> Release set to No
  4. Valid Architectures set to arm64 armv7 armv7s

You will then no longer get the ERROR ITMS-90086

like image 85
Dave Chambers Avatar answered Sep 30 '22 22:09

Dave Chambers


Make sure your "Build Active Architecture Only" setting is set to "No"

like image 43
Ramy Adeeb Avatar answered Oct 01 '22 00:10

Ramy Adeeb


I case you bought an old app somewhere and are having this error message, also check that the deployment target is set to 8.0 or higher in both the project and the target.

like image 1
Totoro Avatar answered Sep 30 '22 23:09

Totoro