Invalid Bundle Error - "requires launch storyboard" Invalid Bundle Error - "requires launch storyboard" xcode xcode

Invalid Bundle Error - "requires launch storyboard"


This is because you need to specify how your app is supposed to handle multitasking on iPad.

If you don't want to handle multitasking right now, you can simply disable it by going to the "General" tab of your target:

enter image description here


I solved the problem in this way, see here:

If you must opt out of Slide Over and Split View, do so explicitly by adding the UIRequiresFullScreen key to your Xcode project’s Info.plist file and apply the Boolean value YES.


You need to add a Launch Screen (Xcode > File > New). Under iOS > User Interface you select "Launch Screen" to add it to the project.

For the iPad you need to support all 4 orientations.

Select in Xcode your target file, and under the General Tab, go to the "App icons and Launch Images".Here you select the Launch Screen file you created.When you launch the app you'll see the launch (bitmap) images are not used, but the Launch Screen Storyboard.