45
Views
3
Comments
Solved
"Missing full-screen support for the latest iPad mini display" un upload to AppStore
Question
Application Type
Mobile
Platform Version
11.14.0 (Build 34092)

I am trying to upload to AppStore but I encounter an error upon uploading the .ipa file. It says 'WARNING ITMS-90901: "Missing full-screen support for the latest iPad mini display. The “AppName.app” bundle includes UIRequiresFullScreen=YES in the Info.plist or supports only a subset of UISupportedInterfaceOrientations, and is built with the 14.2 SDK. To take advantage of the full screen size, recompile with Xcode 13 and the SDK for iPadOS 15 or later."

--> I have already added UIRequiresFullScreen=YES  to Info.plist and unto the mobile's extension property however it just made the upload a failure

I am still looking for solution and is currently stuck on it. Would appreciate any help :)

2023-09-12 09-46-07
Melody
Solution

If it helps, after upgrading the applications MABS from 7.2 to MABS 8 we no longer face this issue :)

UserImage.jpg
Hakam Kamsani

I would like to know about this issue as well. I'm encountering this on my deployment too. How do you change the Info.plist in outsystems?


2023-09-12 09-46-07
Melody

Hi Hakam,

To edit the info.plist

(Option 1)

1.Download package .ipa in Service Center (Factory > Applications > Distribute)

2.Rename to .zip > uncompress

3.Under Payload > open info.plist

(Option 2)
1. You can install the Edit Plist File Plugin. You can follow the thread here https://www.outsystems.com/forums/discussion/46847/general-plugin-usage-question/

for the plugin.xml file, on my forked file I edited to:

        <!-- iOS9 whitelisting -->

        <config-file target="*-Info.plist" parent="NSAppTransportSecurity">

            <dict>

                <key>NSAllowsArbitraryLoads</key>

                <true/>

                <key>UIRequiresFullScreen</key>

                <true/>

            </dict>

        </config-file>


Although, the delivery has been successful in Transporter tool. I still can't see it on AppStore under the Build section. I am still stuck as of the moment as to why I could not select anything under the Build section.

2023-09-12 09-46-07
Melody
Solution

If it helps, after upgrading the applications MABS from 7.2 to MABS 8 we no longer face this issue :)

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.