Invalid Bundle Error - “requires launch storyboard”

后端 未结 9 1533
死守一世寂寞
死守一世寂寞 2020-12-02 04:27

I keep getting this error when I try to submit my app to the store using Xcode:

ERROR ITMS-90475: \"Invalid Bundle. iPad Multitasking support requires laun

9条回答
  •  渐次进展
    2020-12-02 05:17

    IF you ONLY want to set RequiresFullScreen For iPhone, and support iPad Multitasking, try this:

    UILaunchStoryboardName~ipad
    LaunchScreenIPad.storyboard
    UIRequiresFullScreen
    
    UIRequiresFullScreen~ipad
    
    

    LaunchScreenIPad.storyboard is the name of LaunchScreen for iPad.

    iPhone will still use Launch Images Source pictures.

    Apple Document Ref: Creating Platform- and Device-Specific Keys

提交回复
热议问题