|
| 1 | +<?xml version="1.0" encoding="utf-8" standalone="no"?> |
| 2 | +<application xmlns="http://ns.adobe.com/air/application/2.6"> |
| 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/2.6 |
| 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 | + <!-- A universally unique application identifier. Must be unique across all AIR applications. |
| 17 | + Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. --> |
| 18 | + <id>SWFSecurityTool</id> |
| 19 | + |
| 20 | + <!-- Used as the filename for the application. Required. --> |
| 21 | + <filename>SWFSecurityTool</filename> |
| 22 | + |
| 23 | + <!-- The name that is displayed in the AIR application installer. |
| 24 | + May have multiple values for each language. See samples or xsd schema file. Optional. --> |
| 25 | + <name>SWFSecurityTool</name> |
| 26 | + |
| 27 | + <!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade. |
| 28 | + Values can also be 1-part or 2-part. It is not necessary to have a 3-part value. |
| 29 | + An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . --> |
| 30 | + <versionNumber>0.0.0</versionNumber> |
| 31 | + |
| 32 | + <!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. --> |
| 33 | + <!-- <versionLabel></versionLabel> --> |
| 34 | + |
| 35 | + <!-- Description, displayed in the AIR application installer. |
| 36 | + May have multiple values for each language. See samples or xsd schema file. Optional. --> |
| 37 | + <!-- <description></description> --> |
| 38 | + |
| 39 | + <!-- Copyright information. Optional --> |
| 40 | + <!-- <copyright></copyright> --> |
| 41 | + |
| 42 | + <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 --> |
| 43 | + <!-- <publisherID></publisherID> --> |
| 44 | + |
| 45 | + <!-- Settings for the application's initial window. Required. --> |
| 46 | + <initialWindow> |
| 47 | + <!-- The main SWF or HTML file of the application. Required. --> |
| 48 | + <!-- Note: In Flash Builder, the SWF reference is set automatically. --> |
| 49 | + <content>SWFSecurityTool.swf</content> |
| 50 | + |
| 51 | + <!-- The title of the main window. Optional. --> |
| 52 | + <!-- <title></title> --> |
| 53 | + |
| 54 | + <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. --> |
| 55 | + <!-- <systemChrome></systemChrome> --> |
| 56 | + |
| 57 | + <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. --> |
| 58 | + <!-- <transparent></transparent> --> |
| 59 | + |
| 60 | + <!-- Whether the window is initially visible. Optional. Default false. --> |
| 61 | + <!-- <visible></visible> --> |
| 62 | + |
| 63 | + <!-- Whether the user can minimize the window. Optional. Default true. --> |
| 64 | + <!-- <minimizable></minimizable> --> |
| 65 | + |
| 66 | + <!-- Whether the user can maximize the window. Optional. Default true. --> |
| 67 | + <!-- <maximizable></maximizable> --> |
| 68 | + |
| 69 | + <!-- Whether the user can resize the window. Optional. Default true. --> |
| 70 | + <!-- <resizable></resizable> --> |
| 71 | + |
| 72 | + <!-- The window's initial width in pixels. Optional. --> |
| 73 | + <!-- <width></width> --> |
| 74 | + |
| 75 | + <!-- The window's initial height in pixels. Optional. --> |
| 76 | + <!-- <height></height> --> |
| 77 | + |
| 78 | + <!-- The window's initial x position. Optional. --> |
| 79 | + <!-- <x></x> --> |
| 80 | + |
| 81 | + <!-- The window's initial y position. Optional. --> |
| 82 | + <!-- <y></y> --> |
| 83 | + |
| 84 | + <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. --> |
| 85 | + <!-- <minSize></minSize> --> |
| 86 | + |
| 87 | + <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. --> |
| 88 | + <!-- <maxSize></maxSize> --> |
| 89 | + |
| 90 | + <!-- The initial aspect ratio of the app when launched (either "portrait" or "landscape"). Optional. Mobile only. Default is the natural orientation of the device --> |
| 91 | + |
| 92 | + <!-- <aspectRatio></aspectRatio> --> |
| 93 | + |
| 94 | + <!-- Whether the app will begin auto-orienting on launch. Optional. Mobile only. Default false --> |
| 95 | + |
| 96 | + <!-- <autoOrients></autoOrients> --> |
| 97 | + |
| 98 | + <!-- Whether the app launches in full screen. Optional. Mobile only. Default false --> |
| 99 | + |
| 100 | + <!-- <fullScreen></fullScreen> --> |
| 101 | + |
| 102 | + <!-- The render mode for the app (either auto, cpu, or gpu). Optional. Mobile only. Default auto --> |
| 103 | + |
| 104 | + <!-- <renderMode></renderMode> --> |
| 105 | + |
| 106 | + <!-- Whether or not to pan when a soft keyboard is raised or lowered (either "pan" or "none"). Optional. Defaults "pan." --> |
| 107 | + <!-- <softKeyboardBehavior></softKeyboardBehavior> --> |
| 108 | + <autoOrients>false</autoOrients> |
| 109 | + <fullScreen>false</fullScreen> |
| 110 | + <visible>false</visible> |
| 111 | + </initialWindow> |
| 112 | + |
| 113 | + <!-- We recommend omitting the supportedProfiles element, --> |
| 114 | + <!-- which in turn permits your application to be deployed to all --> |
| 115 | + <!-- devices supported by AIR. If you wish to restrict deployment --> |
| 116 | + <!-- (i.e., to only mobile devices) then add this element and list --> |
| 117 | + <!-- only the profiles which your application does support. --> |
| 118 | + <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> --> |
| 119 | + |
| 120 | + <!-- The subpath of the standard default installation location to use. Optional. --> |
| 121 | + <!-- <installFolder></installFolder> --> |
| 122 | + |
| 123 | + <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. --> |
| 124 | + <!-- <programMenuFolder></programMenuFolder> --> |
| 125 | + |
| 126 | + <!-- The icon the system uses for the application. For at least one resolution, |
| 127 | + specify the path to a PNG file included in the AIR package. Optional. --> |
| 128 | + <!-- <icon> |
| 129 | + <image16x16></image16x16> |
| 130 | + <image32x32></image32x32> |
| 131 | + <image36x36></image36x36> |
| 132 | + <image48x48></image48x48> |
| 133 | + <image72x72></image72x72> |
| 134 | + <image114x114></image114x114> |
| 135 | + <image128x128></image128x128> |
| 136 | + </icon> --> |
| 137 | + |
| 138 | + <!-- Whether the application handles the update when a user double-clicks an update version |
| 139 | + of the AIR file (true), or the default AIR application installer handles the update (false). |
| 140 | + Optional. Default false. --> |
| 141 | + <!-- <customUpdateUI></customUpdateUI> --> |
| 142 | + |
| 143 | + <!-- Whether the application can be launched when the user clicks a link in a web browser. |
| 144 | + Optional. Default false. --> |
| 145 | + <!-- <allowBrowserInvocation></allowBrowserInvocation> --> |
| 146 | + |
| 147 | + <!-- Listing of file types for which the application can register. Optional. --> |
| 148 | + <!-- <fileTypes> --> |
| 149 | + |
| 150 | + <!-- Defines one file type. Optional. --> |
| 151 | + <!-- <fileType> --> |
| 152 | + |
| 153 | + <!-- The name that the system displays for the registered file type. Required. --> |
| 154 | + <!-- <name></name> --> |
| 155 | + |
| 156 | + <!-- The extension to register. Required. --> |
| 157 | + <!-- <extension></extension> --> |
| 158 | + |
| 159 | + <!-- The description of the file type. Optional. --> |
| 160 | + <!-- <description></description> --> |
| 161 | + |
| 162 | + <!-- The MIME content type. --> |
| 163 | + <!-- <contentType></contentType> --> |
| 164 | + |
| 165 | + <!-- The icon to display for the file type. Optional. --> |
| 166 | + <!-- <icon> |
| 167 | + <image16x16></image16x16> |
| 168 | + <image32x32></image32x32> |
| 169 | + <image48x48></image48x48> |
| 170 | + <image128x128></image128x128> |
| 171 | + </icon> --> |
| 172 | + |
| 173 | + <!-- </fileType> --> |
| 174 | + <!-- </fileTypes> --> |
| 175 | + |
| 176 | + <!-- iOS specific capabilities --> |
| 177 | + <!-- <iPhone> --> |
| 178 | + <!-- A list of plist key/value pairs to be added to the application Info.plist --> |
| 179 | + <!-- <InfoAdditions> |
| 180 | + <![CDATA[ |
| 181 | + <key>UIDeviceFamily</key> |
| 182 | + <array> |
| 183 | + <string>1</string> |
| 184 | + <string>2</string> |
| 185 | + </array> |
| 186 | + <key>UIStatusBarStyle</key> |
| 187 | + <string>UIStatusBarStyleBlackOpaque</string> |
| 188 | + <key>UIRequiresPersistentWiFi</key> |
| 189 | + <string>YES</string> |
| 190 | + ]]> |
| 191 | + </InfoAdditions> --> |
| 192 | + <!-- <requestedDisplayResolution></requestedDisplayResolution> --> |
| 193 | + <!-- </iPhone> --> |
| 194 | + |
| 195 | + <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. --> |
| 196 | + <!--<android> |
| 197 | + <manifestAdditions> |
| 198 | + <![CDATA[ |
| 199 | + <manifest android:installLocation="auto"> |
| 200 | + <uses-permission android:name="android.permission.INTERNET"/> |
| 201 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 202 | + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
| 203 | + <uses-configuration android:reqFiveWayNav="true"/> |
| 204 | + <supports-screens android:normalScreens="true"/> |
| 205 | + <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/> |
| 206 | + <application android:enabled="true"> |
| 207 | + <activity android:excludeFromRecents="false"> |
| 208 | + <intent-filter> |
| 209 | + <action android:name="android.intent.action.MAIN"/> |
| 210 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 211 | + </intent-filter> |
| 212 | + </activity> |
| 213 | + </application> |
| 214 | + </manifest> |
| 215 | + ]]> |
| 216 | + </manifestAdditions> |
| 217 | + </android> --> |
| 218 | + <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file --> |
| 219 | + |
| 220 | +</application> |
0 commit comments