Home > Software design >  Invalid bundle. Because your app supports Multitasking on iPad, you need to include the LaunchScreen
Invalid bundle. Because your app supports Multitasking on iPad, you need to include the LaunchScreen

Time:12-15

When uploading an App to AppStore connect i get the following error:

Invalid bundle. Because your app supports Multitasking on iPad, you need to include the LaunchScreen.storyboard launch storyboard file in your ... bundle.

It is really odd since i do think the file is included in the bundle:

enter image description here

I also do have "UILaunchStoryboardName" set as "LaunchScreen.storyboard" in Info.Plist.

This appears to have started in xCode 14.1 and i had no issue with this previously.

I do want the iPas app to support multitasking therefore i do not want to set "Requires full screen"

CodePudding user response:

I had exactly the same issue. I cleared the Launch Screen File drop down list and then edited the Info.Plist "Launch screen interface file base name" from "LaunchScreen.storyboard" to only "LaunchScreen" and that solved the issue.

  • Related