2

I just finished with developing my application by Adobe Flash Professional CS5 and I wonder if this will be visible to iPhones 4 because support for Retina displays was added since CS5.5.

There is section in my info.plist:

<key>UIDeviceFamily</key>
    <array>
        <string>1</string>
    </array>

Is it enough?

Benny7500
  • 569
  • 6
  • 16

1 Answers1

2

If you do not request high display resolution, retina display iPhones will render as previous generations (320x480).

If you add <requestedDisplayResolution>high</requestedDisplayResolution> you will target iPhone 4 retina (640x960).

For example, to target both iPhone and iPad requesting high resolution:

    <iPhone>
        <InfoAdditions><![CDATA[
            <key>UIDeviceFamily</key>
            <array>
                <string>1</string>
                <string>2</string>
            </array>
        ]]></InfoAdditions>
        <requestedDisplayResolution>high</requestedDisplayResolution>
    </iPhone>
Jason Sturges
  • 15,855
  • 14
  • 59
  • 80