Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invalid Bundle Error - "requires launch storyboard"

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 launch storyboard in bundle 'com.companyname.appname.'"

Anyone know what this error really means?

like image 829
matthias_b_nz Avatar asked Sep 14 '15 05:09

matthias_b_nz


2 Answers

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

like image 132
André Rodrigues Avatar answered Oct 21 '22 03:10

André Rodrigues


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.

like image 29
marji Avatar answered Oct 21 '22 03:10

marji