Flash - How to build exclusively for ipad?

I created an iOS app in flash. I successfully generated the .ipa package, but on itunes I connected to the iphone and ipad applications, but I wanted to distribute it exclusively on the ipad. I think this has something to do with the settings of the Flash linker, but I cannot find this option in the flash linker or on the Internet to build exclusively for the ipad.

Does anyone know what needs to be built exclusively for the ipad in the flash linker?

thank

+5
source share
1 answer

I do not know how to do this in FB (click on some case or something else). But you can add something like the following in the application.xmlfile

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

, node iPhone! <string>2</string> : 2 , iPad. .

+6

All Articles