Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why the Missing 64-bit support happened when upload to the iTunes connect?

Tags:

I try to upload the file via Application Loader. But I got the mail from iTunes store.

Missing 64-bit support - Beginning on February 1, 2015 new iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK. Beginning June 1, 2015 app updates will also need to follow the same requirements. To enable 64-bit in your project, we recommend using the default Xcode build setting of “Standard architectures” to build a single binary with both 32-bit and 64-bit code.

But I already add the arm64 in Xcode like the following picture.

enter image description here

Why the Missing 64-bit support happened when upload to the iTunes connect ?

Did I missing something ?

like image 801
Martin Avatar asked Feb 04 '15 02:02

Martin


2 Answers

I had same problem today I set Build Active Architecture to NO and it got submitted. Give a try

like image 171
Shashi3456643 Avatar answered Oct 11 '22 20:10

Shashi3456643


From this SO Answer and this SO Answer

  • Architecture: "Standard architectures" arm7, arm64
  • Valid Architectures: "arm64" , armv7...
  • Build Active Architecture Only - NO (specially... if your connected device is not arm64 compatible)
like image 24
zaph Avatar answered Oct 11 '22 20:10

zaph