root/app/descriptor.xml

Revision 1, 4.9 kB (checked in by swizec, 3 years ago)

initial import of working example app

Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<application xmlns="http://ns.adobe.com/air/application/1.5">
3
4<!-- Adobe AIR Application Descriptor File Template.
5
6        Specifies parameters for identifying, installing, and launching AIR applications.
7
8        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.1
9                        The last segment of the namespace specifies the version
10                        of the AIR runtime required for this application to run.
11
12        minimumPatchLevel - The minimum patch level of the AIR runtime required to run
13                        the application. Optional.
14-->
15
16        <!-- The application identifier string, unique to this application. Required. -->
17        <id>wolfvssheep</id>
18
19        <!-- Used as the filename for the application. Required. -->
20        <filename>QuantumWolfHunt</filename>
21
22        <!-- The name that is displayed in the AIR application installer.
23             May have multiple values for each language. See samples or xsd schema file. Optional. -->
24        <name>Quantum Wolf Hunt</name>
25        <!-- name by InnovativeVA (twitter) -->
26
27        <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
28        <version>0.1</version>
29
30        <!-- Description, displayed in the AIR application installer.
31             May have multiple values for each language. See samples or xsd schema file. Optional. -->
32        <!-- <description></description> -->
33
34        <!-- Copyright information. Optional -->
35        <copyright>Swizec, eccentric poet of software and teller of tales</copyright>
36
37        <!-- Settings for the application's initial window. Required. -->
38        <initialWindow>
39                <!-- The main SWF or HTML file of the application. Required. -->
40                <!-- Note: In Flex Builder, the SWF reference is set automatically. -->
41                <content>index.html</content>
42
43                <!-- The title of the main window. Optional. -->
44                <!-- <title></title> -->
45
46                <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
47                <systemChrome>standard</systemChrome>
48
49                <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
50<!--            <transparent>true</transparent> -->
51
52                <!-- Whether the window is initially visible. Optional. Default false. -->
53                <visible>true</visible>
54
55                <!-- Whether the user can minimize the window. Optional. Default true. -->
56                <!-- <minimizable></minimizable> -->
57
58                <!-- Whether the user can maximize the window. Optional. Default true. -->
59                <!-- <maximizable></maximizable> -->
60
61                <!-- Whether the user can resize the window. Optional. Default true. -->
62                <!-- <resizable></resizable> -->
63
64                <!-- The window's initial width. Optional. -->
65                <width>810</width>
66
67                <!-- The window's initial height. Optional. -->
68                <height>830</height>
69
70                <!-- The window's initial x position. Optional. -->
71                <!-- <x></x> -->
72
73                <!-- The window's initial y position. Optional. -->
74                <!-- <y></y> -->
75
76                <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
77                <!-- <minSize></minSize> -->
78
79                <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
80                <!-- <maxSize></maxSize> -->
81        </initialWindow>
82
83        <!-- The subpath of the standard default installation location to use. Optional. -->
84        <!-- <installFolder></installFolder> -->
85
86        <!-- The subpath of the Windows Start/Programs menu to use. Optional. -->
87        <!-- <programMenuFolder></programMenuFolder> -->
88
89        <!-- The icon the system uses for the application. For at least one resolution,
90                 specify the path to a PNG file included in the AIR package. Optional. -->
91        <icon>
92<!--            <image16x16></image16x16> -->
93<!--            <image32x32></image32x32> -->
94<!--            <image48x48></image48x48> -->
95<!--            <image128x128>looks/images/icon.png</image128x128> -->
96        </icon>
97
98        <!-- Whether the application handles the update when a user double-clicks an update version
99        of the AIR file (true), or the default AIR application installer handles the update (false).
100        Optional. Default false. -->
101        <!-- <customUpdateUI></customUpdateUI> -->
102
103        <!-- Whether the application can be launched when the user clicks a link in a web browser.
104        Optional. Default false. -->
105        <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
106
107        <!-- Listing of file types for which the application can register. Optional. -->
108        <!-- <fileTypes> -->
109
110                <!-- Defines one file type. Optional. -->
111                <!-- <fileType> -->
112
113                        <!-- The name that the system displays for the registered file type. Required. -->
114                        <!-- <name></name> -->
115
116                        <!-- The extension to register. Required. -->
117                        <!-- <extension></extension> -->
118
119                        <!-- The description of the file type. Optional. -->
120                        <!-- <description></description> -->
121
122                        <!-- The MIME type. Optional. -->
123                        <!-- <contentType></contentType> -->
124
125                        <!-- The icon to display for the file type. Optional. -->
126                        <!-- <icon>
127                                <image16x16></image16x16>
128                                <image32x32></image32x32>
129                                <image48x48></image48x48>
130                                <image128x128></image128x128>
131                        </icon> -->
132
133                <!-- </fileType> -->
134        <!-- </fileTypes> -->
135
136</application>
Note: See TracBrowser for help on using the browser.