Skip to content

Instantly share code, notes, and snippets.

@johnlindquist
Created March 22, 2011 15:45

Revisions

  1. johnlindquist created this gist Mar 22, 2011.
    34 changes: 34 additions & 0 deletions gistfile1.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,34 @@
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
    <id>com.johnlindquist.ipad</id>
    <filename>MyApp</filename>
    <name>MyApp</name>
    <versionNumber>1</versionNumber>
    <initialWindow>
    <renderMode>gpu</renderMode>
    <content>deploy/MyApp.swf</content>
    <fullScreen>true</fullScreen>
    <aspectRatio>landscape</aspectRatio>
    <autoOrients>false</autoOrients>
    <visible>true</visible>
    </initialWindow>
    <supportedProfiles>mobileDevice</supportedProfiles>
    <icon>
    <image57x57>build/57.png</image57x57>
    </icon>
    <iPhone>
    <InfoAdditions>
    <![CDATA[
    <key>UIStatusBarStyle</key>
    <string>UIStatusBarStyleBlackOpaque</string>
    <key>UIRequiresPersistentWiFi</key>
    <string>YES</string>
    <key>UIDeviceFamily</key>
    <array>
    <string>2</string>
    </array>
    ]]>
    </InfoAdditions>
    </iPhone>
    </application>