3

I'm pushing my app to app store using Xcode 7 and my app is universal for iPhone and iPad. But it supports only Portrait and landscape left.

Here's my error:

enter image description here

How to submit the app with the particular orientation such as Portrait and Landscape left only.

Any suggestions to resolve the issue?

Manoj Arun S
  • 543
  • 5
  • 17
  • Does this answer your question? [iPad Multitasking support requires these orientations](https://stackoverflow.com/questions/32559724/ipad-multitasking-support-requires-these-orientations) – Anton Belousov May 20 '20 at 14:44

1 Answers1

14

If you don't want to enable multi-tasking just disable it by adding UIRequiresFullScreen to your info.plist and set the boolean value to YES

Or

Choose your Target->General->Deployment Info->Enable "Requires Full Screen" option

Disable Multi-tasking

Refer Adopting Multitasking Enhancements on iPad for more info

Midhun MP
  • 103,496
  • 31
  • 153
  • 200