Today, I did a research on the air installation configuration file, and found that there are a lot of configuration details. I added a Chinese comment to the automatically generated file. I believe it will be helpful to those who are working on the air project.
<? XML version = "1.0" encoding = "UTF-8"?>
<Application xmlns = "http://ns.adobe.com/air/application/1.0">
<! -- The application identifier string, unique to this application. required. -->
<ID> airtest1 </ID> <! -- Software ID. When installed, the system checks the software version with the same ID. if the version is high, the system updates the software version. -->
<! -- Used as the filename for the application. required. -->
<FILENAME> airtest_filename </FILENAME> <! -- Application: -->
<! -- The name that is displayed in the air application Installer. Optional. -->
<Name> airtest_name </Name> <! -- Add Desktop shortcuts and windows and system control panelProgramName in -->
<! -- An application version designator (such as "V1", "2.5", or "alpha 1"). required. -->
<Version> 1.0 </version> <! -- Software version -->
<! -- Description, displayed in the air application Installer. Optional. -->
<Description> airtest_description </description> <! -- Install description in the second interface -->
<! -- Copyright information. Optional -->
<Copyright> airtest_copyright </Copyright>
[this value will be overwritten by Flex builder in the output app. XML]
airtest_title
<! -- The type of system chrome to use (either "standard" or "NONE"). Optional. Default standard. -->
<Systemchrome> none </systemchrome> <! -- Standard is the standard form, and none is the smooth form -->
<! -- Whether the window is transparent. Only applicable when systemchrome is false. Optional. Default false. -->
<Transparent> true </transparent> <! -- Whether the background is transparent -->
<! -- Whether the window is initially visible. Optional. Default false. -->
<Visible> true </visible> <! -- Whether the form is visible during initialization -->
<! -- Whether the user can minimize the window. Optional. Default true. -->
<Minimizable> true </minimizable> <! -- Whether to minimize -->
<! -- Whether the user can maximize the window. Optional. Default true. -->
<! -- <Maximizable> </maximizable> --> <! -- Whether to maximize -->
<! -- Whether the user can resize the window. Optional. Default true. -->
<! -- <Resizable> </resizable> --> <! -- Whether to allow scaling of the Form -->
<! -- The window's initial width. Optional. -->
<! -- <Width> </width> --> <! -- Form width -->
<! -- The window's initial height. Optional. -->
<! -- <Height>
<! -- The window's initial X position. Optional. -->
<! -- <X> </x> --> <! -- Form X coordinate -->
<! -- The window's initial y position. Optional. -->
<! -- <Y> </Y> --> <! -- Form y coordinate -->
<! -- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
<! -- <Minsize> </minsize> --> <! -- Minimized form value -->
<! -- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
<! -- <Maxsize> </maxsize> --> <! -- Form maximization value -->
</Initialwindow>
<! -- The subpath of the standard default installation location to use. Optional. -->
<Installfolder> airdeskallfield/air </installfolder> <! -- Default installation path: C: \ Program Files \ airdeskallfield \ air -->
airtest_programmenufolder
specify the path to a PNG file encoded in the air package. optional. -->
icons/logo.png
icons/logo_32.png
icons/logo_48.png
icons/logo_128.png
<! -- Whether the application handles the update when a user double-clicks an update version
Of the air file (true), or the default AIR application installer handles the update (false ).
Optional. Default false. -->
<! -- <Customupdateui> </customupdateui> --> <! -- If the version is the same, double-click to directly update it -->
<! -- Whether the application can be launched when the user clicks a link in a web browser.
Optional. Default false. -->
<! -- <Allowbrowserinvocation> </allowbrowserinvocation> --> <! -- Whether the application can be activated through a browser -->
<! -- Listing of file types for which the application can register. Optional. -->
<! -- <Filetypes> -->
<! -- Defines one file type. Optional. -->
<! -- <Filetype> -->
<! -- The name that the system displays for the registered file type. required. -->
<! -- <Name> </Name> -->
<! -- The extension to register. required. -->
<! -- <Extension> </extension> -->
<! -- The description of the file type. Optional. -->
<! -- <Description> </description> -->
<! -- The MIME type. Optional. -->
<! -- <Contenttype> </contenttype> -->
<! -- The icon to display for the file type. Optional. -->
<! -- <Icon>
<Image16x16> </image16x16>
<Image32x32> </image32x32>
<Image48x48> </image48x48>
<Image128x128> </image128x128>
</Icon> -->
<! -- </Filetype> -->
<! -- </Filetypes> -->
</Application>
Transferred from: www.skill8.com/article/flex_html/105.htm