iPad Multitasking support requires these orientations

前端 未结 8 1923
心在旅途
心在旅途 2020-12-07 06:51

I\'m trying to submit my universal iOS 9 apps to Apple (built with Xcode 7 GM) but I receive this error message for the bundle in iTunes Connect, just when I select Subm

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 07:39

    I am using Xamarin and there is no available option in the UI to specify "Requires full screen". I, therefore, had to follow @Michael Wang's answer with a slight modification. Here goes:

    Open the info.plist file in a text editor and add the lines:

    UIRequiresFullScreen
    
    

    I tried setting the value to "YES" but it didn't work, which was kind of expected.

    In case you are wondering, I placed the above lines below the UISupportedInterfaceOrientations section

    UISupportedInterfaceOrientations~ipad
    
        UIInterfaceOrientationPortrait
        UIInterfaceOrientationPortraitUpsideDown
    
    

    Hope this helps someone. Credit to Michael.

提交回复
热议问题