0

I created an universal app and upload to appstore. But I got an error "ITunesSoftwareServiceAuthenticationErrorDomain error 434" when I validate this build. My app supports portrait only. I'm not sure it is the reason I can not upload this app successfully.

Cong Phu
  • 89
  • 5
  • Possible duplicate of [Xcode 8 AppStore upload (error 434)](https://stackoverflow.com/questions/40140560/xcode-8-appstore-upload-error-434) – Devang Tandel Jun 14 '17 at 05:24

3 Answers3

1

That's because iPad apps should at least support 2 orientations. You could add Upside Down (which is just portrait orientation upside down) orientation, and it should get uploaded correctly. I'm not sure why you are receiving the mentioned error though.

Fahri Azimov
  • 11,470
  • 2
  • 21
  • 29
0

From Technical Q&A QA1689

Which orientations should my iPad application support?

You should always make your application support both variants of an orientation. More specifically, if your application supports portrait, then it should support both UIInterfaceOrientationPortrait and UIInterfaceOrientationPortraitUpsideDown; if your application supports landscape, then it should support both UIInterfaceOrientationLandscapeLeft and UIInterfaceOrientationLandscapeRight.

Dharma
  • 3,007
  • 3
  • 23
  • 38
0

This error has nothing to do with your device orientation support.

check these answers,

Strange Errors on Archive Validation

Xcode 8 AppStore upload (error 434)

Rukshan
  • 7,902
  • 6
  • 43
  • 61