Is application developed by Adobe Flash Professional CS5 (not CS5.5) visible in App Store on iPhone 4? -


i finished developing application adobe flash professional cs5 , wonder if visible iphones 4 because support retina displays added since cs5.5.

there section in info.plist:

<key>uidevicefamily</key>     <array>         <string>1</string>     </array> 

is enough?

if not request high display resolution, retina display iphones render previous generations (320x480).

if add <requesteddisplayresolution>high</requesteddisplayresolution> target iphone 4 retina (640x960).

for example, target both iphone , ipad requesting high resolution:

     <iphone>         <infoadditions><![cdata[             <key>uidevicefamily</key>             <array>                 <string>1</string>                 <string>2</string>             </array>         ]]></infoadditions>         <requesteddisplayresolution>high</requesteddisplayresolution>     </iphone> 

Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -