Ios – ITMS 90101 error uploading app

buildiosupload

I am trying to upload an update for my app to the app store but am met with this error

ERROR ITMS-90101: "This bundle does not support one or more of the
devices supported by the previous app version. Your app update must
continue to support all devices previously supported. You declare
supported devices in Xcode with the Targeted Device Family build
setting. Refer to QA1623 for additional information:
https://developer.apple.com/library/ios/#qa/qa1623/_index.html"

I have been struggling with this for a while all the info.plist and build settings options are the same the only things that have changed are that i have had to set enable bitcode to NO and let app transport security settings to allow arbitrary loads.

What could be causing this error, is related to the bitcode/arbitrary loads.

EDIT:

I changed settings from iPhone to universal I then get these errors

ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires
these orientations:
'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'.
Found 'UIInterfaceOrientationPortrait' in bundle 'app.app.app'."

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

I was wondering if these wouldn't appear if the app supported iPads before

Best Answer

if your app had already supported iPad and iPhone version for previous submission, but you want to send app uncheck iPad target divece. You can see this error.

Apple doesn't allow your update if you want to unsupported some old devices(only iPad or iphone).

enter image description here

Related Topic