Skip to content

Instantly share code, notes, and snippets.

@caubry
Last active December 15, 2015 08:38
Show Gist options
  • Select an option

  • Save caubry/5232027 to your computer and use it in GitHub Desktop.

Select an option

Save caubry/5232027 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<application xmlns="http://ns.adobe.com/air/application/3.2">
<id>myApp</id>
<versionNumber>1.0</versionNumber>
<filename>myApp</filename>
<description>...</description>
<!-- To localize the description, use the following format for the description element.
<description>
<text xml:lang="en">English App description goes here</text>
<text xml:lang="fr">French App description goes here</text>
<text xml:lang="ja">Japanese App description goes here</text>
</description>
-->
<name>My App</name>
<!-- To localize the name, use the following format for the name element.
<name>
<text xml:lang="en">English App name goes here</text>
<text xml:lang="fr">French App name goes here</text>
<text xml:lang="ja">Japanese App name goes here</text>
</name>
-->
<copyright>Copyright (c) 2013</copyright>
<initialWindow>
<content>../bin/myApp_output.swc</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<fullScreen>false</fullScreen>
<autoOrients>false</autoOrients>
<aspectRatio>portrait</aspectRatio>
<renderMode>auto</renderMode>
</initialWindow>
<customUpdateUI>false</customUpdateUI>
<allowBrowserInvocation>false</allowBrowserInvocation>
<!-- Only if you want to add an icon to your application.
<icon>
<image16x16>icons/smallIcon.png</image16x16>
<image32x32>icons/mediumIcon.png</image32x32>
<image48x48>icons/bigIcon.png</image48x48>
<image128x128>icons/biggerIcon.png</image128x128>
</icon>
-->
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment