2

Xcode is giving me 3 errors whenever I try to submit my iOS7 app through Xcode. The errors are:

  1. Apple's web service operation was not successful
  2. Unable to authenticate package
  3. The bundle 'com.x.x' at bundle path 'Payload/x.app' is not signed using an Apple submission certificate. at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
Kara
  • 6,115
  • 16
  • 50
  • 57
  • Did you sign the release build with a distribution (not a development) certificate? – GayleDDS Sep 22 '13 at 05:25
  • I am having a same issue. I submitted app to store many times so I am quite sure that all configurations are correct :( – Son Nguyen Sep 24 '13 at 02:50
  • Did you find any solution to fix this? – Son Nguyen Oct 01 '13 at 08:10
  • I found a solution. I changed my application to run on the new iOS7 architectures and submitted it to iTunesConnect without a problem. –  Oct 05 '13 at 20:03
  • I am having the same problem too. What do you mean to run on the new iOS 7 architecture?? – Joe Huang Oct 08 '13 at 05:37
  • Select your target and change from the old iOS6 armv6, armv7 to iOS7 armv6, armv7, 64 bit, etc. –  Oct 08 '13 at 20:05

1 Answers1

0

Change "Valid Architectures" in Build Settings to "$(ARCHS_STANDARD)". After banging my head on this for almost 2 days, and thinking I had tried the architectures fix, I realized that I had only tried changing the "Architectures" to standard (which kept giving me an error on build), and not the "Valid Architectures".

jbcaveman
  • 911
  • 1
  • 10
  • 19