Invalid Bundle. iPad Multitasking support requires launch story board in bundle

Hi all

I am trying to deploy my app into itunes store. when my file is getting validated by the app loader I get below errors:


ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle 'com.dtmdata.PulseBox'."

ERROR ITMS-90339: "This bundle is invalid. The Info.plist contains an invalid key 'CFBundleResourceSpecification' in bundle PulseBox [PulseBox.app]"


this started happening after I upgraded XCODE.


I am using Apache Cordova in Visual studio to create my app.

anyone has faced this issue?


thank you so much

Alex

Replies

To fix the first error add the key bellow on your info.plist:

<key>UIRequiresFullScreen</key>
<string>YES</string>

worked for me.

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

Status bar style > Requires full screen (Clicked)

When and where is this key added -- before or after the build/compile? I am very new to this process, so I am trying to understand how to get this ITSM-90475 error resolved. When the build is completed (I am using Visual Studio 2015 and Apache Cordova), it generates the .ipa and <project_name>-info.plist files -- is the *info.plist file embedded within the .ipa file (because I am uploading the .ipa file using Application Loader, and receive the ITSM-90475 error)?


Please provide more detailed instructions on how to do this -- thank you.