Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adobe Air iOS Invalid Bundle The bundle does not support the minimum version os specified in info.plist

Tags:

ios

air

adobe

I got this error and thought I'd share the answer, as it was only due to years of Adobe Air for iOS development I could solve the problem. :)

If you, when uploading through Application Loader get an error like:

Invalid Bundle The bundle does not support the minimum version os specified in info.plist
like image 798
Thyselius Avatar asked Sep 25 '14 20:09

Thyselius


1 Answers

You can simple add

<key>MinimumOSVersion</key>
<string>6.0</string>

into your AppName-app.xml manifest into "InfoAdditions" section.

This was the first thing I've tried. But this didn't help me to get rid of this error...

UPD: Just found here:

Hi,everyone.

I have the same warning too. But I was just resolved.

As a result of the update to the latest version of Mac OSX(10.9.5) that is installed in the Application loader, it came to success.

I don't know this reason. Please try.

Can anybody check if this really helps? Also it would be good to check both cases - with default MinimumOSVersion and with set to 6.0 (for example).

like image 132
Denis Maslov Avatar answered Oct 19 '22 22:10

Denis Maslov