Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flash - How to build exclusively for ipad?

I´ve built an app for the iOs in flash. I successfully generated de .ipa package but on itunes connect the app shows for iphone and Ipad but i wanted distribute it exclusively on ipad. I think it has something to do with the flash builder options but I can´t seem to find that option on flash builder or on the internet to build exclusively for ipad.

Does anyone know to build exclusively for the ipad in flash builder?

Thx

like image 710
Cobz Avatar asked Mar 28 '12 17:03

Cobz


People also ask

Does flash work on iPad?

The iPhone and iPad Never Officially Supported Adobe Flash So, Flash has never been part of the iPad or iPhone, and it's impossible to force Flash apps to run directly on these devices.

How do you update Flash Player on iPad?

Open the System Preferences. If you see Flash Player in the bottom row, then it's already installed. Click on the icon. Under the Updates tab, if it's on the first radio button for "Allow Adobe to install update (recommended)", then you shouldn't see any messages.


1 Answers

I don't know how to do it in FB (click some chech box or whatever). But you can add something like the following in you application.xml file

<iPhone>
    <InfoAdditions>
        <![CDATA[
            <key>UIDeviceFamily</key>
            <array>
                <string>2</string>
            </array>
        ]]>
    </InfoAdditions>
</iPhone>

Don't mind that node is called iPhone! <string>2</string> is essebtial here: 2 means that your app is for iPad only. All this stuff is described here.

like image 198
Eugeny89 Avatar answered Sep 21 '22 16:09

Eugeny89