iOS Question cannot upload my latest app via application loader

ilan

Expert
Licensed User
Longtime User
i have problems uploading my latest app

this is the errors i get in Application Loader:

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

ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle 'www.sagital.pf’."

The resulting API analysis file is too large. We were unable to validate your API usage prior to delivery. This is just an informational message.


seems like i have to enable all orientations... do i?? my game is only in landscape and i want it only in landscape mode

what is launch story??

i need your help @Erel

regards, ilan

ps: i am using a full screen app: https://www.b4x.com/android/forum/threads/full-screen-apps.47866/
 
Last edited:

ilan

Expert
Licensed User
Longtime User
i found out that others got that issues too, this is how they solve it: https://forums.xamarin.com/discussi...support-requires-launch-story-board-in-bundle

it seems like this will solve also the orientation issue: http://stackoverflow.com/questions/32559724/ipad-multitasking-support-requires-these-orientations

Add the key bellow on your info.plist

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

but i dont know how to do it in b4i ??

another question i am using a a local mac and i have deleted the whole directory of my uploadingprojects in my mac and then build a new store build and when i uncompress the ipa and look for "info.plist" i find all info.plist of all my apps... should it be like this? i also did Clean Project!
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
thank you erel, will i still need?:

#PlistExtra: <key>UIViewControllerBasedStatusBarAppearance</key><false/>

and

Dim no As NativeObject = App
no.RunMethod("setStatusBarHidden:animated:", Array(True, False))
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
thank you very much, i could upload my app now

and what i would like to ask you is if i should care about this message:

The resulting API analysis file is too large. We were unable to validate your API usage prior to delivery. This is just an informational message.

and also why do i find info.plist from all my other apps in my new app (*.ipa file)??
(maybe thats why we could not use iad lib)

thanx
 
Last edited:
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top