navroz
navroz

Reputation: 402

Itunes app upload error

I'm facing problem while uploading the app to itunes store i.e ERROR ITMS-90086: "Missing 64-bit support. iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK or later. We recommend using the default "Standard Architectures" build setting for "Architectures" in Xcode, to build a single binary with both 32-bit and 64-bit support." ERROR ITMS-90086: "Missing 64-bit support. iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK or later. We recommend using the default "Standard Architectures" build setting for "Architectures" in Xcode, to build a single binary with both 32-bit and 64-bit support."

I have tried everything i.e Changed Architectures to

Standard architectures(armv7,arm64) -$(ARCHS_STANDARD)

Vaild Architectures

armv7 armv64 armv7s

Bulid Active Architecture only

No

enter image description here

enter image description here

can anyboady please help I'm stuck from last two days.

Upvotes: 0

Views: 1788

Answers (2)

navroz
navroz

Reputation: 402

Actually, the problem is with one of the dependencies i.e RESTKIT(which have multiple targets in it) used for parsing the XML response.So what I did was simply added the library pointing to latest version and copied all my resources,files to a new project.It took some time but it was last option left for me as none of the above mention solutions worked for me.

Anyways, thanks for suggestions

Upvotes: 0

Matloob Hasnain
Matloob Hasnain

Reputation: 1037

  • You have the following 4 things:
  • Architectures set to Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)
  • Base SDK set to some iOS8 SDK, for example Latest iOS (iOS 8.3) or iOS 8.3
  • Build Active Architecture Only --> Release set to No
  • Valid Architectures set to arm64 armv7 armv7s

Upvotes: 1

Related Questions