|
| 1 | +<?xml version="1.0" encoding="utf-8" ?> |
| 2 | + |
| 3 | +<!-- Adobe AIR Application Descriptor File Template. |
| 4 | + Specifies parameters for identifying, installing, and launching AIR applications. |
| 5 | +
|
| 6 | + xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.5.3. |
| 7 | + The last segment of the namespace specifies the version of the AIR runtime required for this application to run. |
| 8 | +
|
| 9 | + minimumPatchLevel - The minimum patch level of the AIR runtime required to run the application. Optional. --> |
| 10 | + |
| 11 | +<application xmlns="http://ns.adobe.com/air/application/3.3"> |
| 12 | + |
| 13 | + <!-- A universally unique application identifier. Must be unique across all AIR applications. |
| 14 | + Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. --> |
| 15 | + <id>Prezi</id> |
| 16 | + |
| 17 | + <!-- Used as the filename for the application. Required. --> |
| 18 | + <filename>Prezi</filename> |
| 19 | + |
| 20 | + <!-- The name that is displayed in the AIR application installer. May have multiple values for each language. See samples or xsd schema file. Optional. --> |
| 21 | + <name>Prezi</name> |
| 22 | + |
| 23 | + <!-- 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. |
| 24 | + Values can also be 1-part or 2-part. It is not necessary to have a 3-part value. |
| 25 | + An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5. --> |
| 26 | + <!--<versionNumber>0.0.0</versionNumber>--> |
| 27 | + |
| 28 | + <!-- 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. --> |
| 29 | + <!--<versionLabel></versionLabel>--> |
| 30 | + |
| 31 | + <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required for namespace < 2.5. --> |
| 32 | + <versionNumber>1.0</versionNumber> |
| 33 | + |
| 34 | + <!-- Description, displayed in the AIR application installer. May have multiple values for each language. See samples or xsd schema file. Optional. --> |
| 35 | + <!--<description></description>--> |
| 36 | + |
| 37 | + <!-- Copyright information. Optional --> |
| 38 | + <!--<copyright></copyright>--> |
| 39 | + |
| 40 | + <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 --> |
| 41 | + <!--<publisherID></publisherID>--> |
| 42 | + |
| 43 | + <!-- Identifies the ActionScript extensions used by an application. --> |
| 44 | + <!--<extensions> |
| 45 | + <extensionID></extensionID> |
| 46 | + </extensions>--> |
| 47 | + |
| 48 | + <!-- Settings for the application's initial window. Required. --> |
| 49 | + <initialWindow> |
| 50 | + <!-- The main SWF or HTML file of the application. Required. --> |
| 51 | + <content>loader-air-local.swf</content> |
| 52 | + |
| 53 | + <!-- The title of the main window. Optional. --> |
| 54 | + <!--<title></title>--> |
| 55 | + |
| 56 | + <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. --> |
| 57 | + <!--<systemChrome></systemChrome>--> |
| 58 | + |
| 59 | + <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. --> |
| 60 | + <!--<transparent></transparent>--> |
| 61 | + |
| 62 | + <!-- Whether the window is initially visible. Optional. Default false. --> |
| 63 | + <visible>true</visible> |
| 64 | + |
| 65 | + <!-- Whether the user can minimize the window. Optional. Default true. --> |
| 66 | + <!--<minimizable></minimizable>--> |
| 67 | + |
| 68 | + <!-- Whether the user can maximize the window. Optional. Default true. --> |
| 69 | + <!--<maximizable></maximizable>--> |
| 70 | + |
| 71 | + <!-- Whether the user can resize the window. Optional. Default true. --> |
| 72 | + <!--<resizable></resizable>--> |
| 73 | + |
| 74 | + <!-- The window's initial width in pixels. Optional. --> |
| 75 | + <!--<width></width>--> |
| 76 | + |
| 77 | + <!-- The window's initial height in pixels. Optional. --> |
| 78 | + <!--<height></height>--> |
| 79 | + |
| 80 | + <!-- The window's initial x position. Optional. --> |
| 81 | + <!--<x></x>--> |
| 82 | + |
| 83 | + <!-- The window's initial y position. Optional. --> |
| 84 | + <!--<y></y>--> |
| 85 | + |
| 86 | + <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. --> |
| 87 | + <!--<minSize></minSize>--> |
| 88 | + |
| 89 | + <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. --> |
| 90 | + <!--<maxSize></maxSize>--> |
| 91 | + |
| 92 | + <!-- The aspect ratio of the app ("portrait" or "landscape" or "any"). Optional. Mobile only. Default is the natural orientation of the device --> |
| 93 | + <!--<aspectRatio></aspectRatio>--> |
| 94 | + |
| 95 | + <!-- Whether the app will begin auto-orienting on launch. Optional. Mobile only. Default false --> |
| 96 | + <!--<autoOrients></autoOrients>--> |
| 97 | + |
| 98 | + <!-- Whether the app launches in full screen. Optional. Mobile only. Default false --> |
| 99 | + <!--<fullScreen></fullScreen>--> |
| 100 | + |
| 101 | + <!-- The render mode for the app (either auto, cpu, gpu, or direct). Optional. Default auto --> |
| 102 | + <!--<renderMode></renderMode>--> |
| 103 | + |
| 104 | + <!-- Whether the default direct mode rendering context allocates storage for depth and stencil buffers. Optional. Default false. --> |
| 105 | + <!--<depthAndStencil></depthAndStencil>--> |
| 106 | + |
| 107 | + <!-- Whether or not to pan when a soft keyboard is raised or lowered (either "pan" or "none"). Optional. Defaults "pan." --> |
| 108 | + <!--<softKeyboardBehavior></softKeyboardBehavior>--> |
| 109 | + </initialWindow> |
| 110 | + |
| 111 | + <!-- We recommend omitting the supportedProfiles element, which in turn permits your application to be deployed to all devices supported by AIR. |
| 112 | + If you wish to restrict deployment (i.e., to only mobile devices) then add this element and list only the profiles which your application does support. --> |
| 113 | + <!--<supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles>--> |
| 114 | + |
| 115 | + <!-- Languages supported by application. Only these languages can be specified --> |
| 116 | + <!--<supportedLanguages>en de cs es fr it ja ko nl pl pt ru sv tr zh</supportedLanguages>--> |
| 117 | + |
| 118 | + <!-- The subpath of the standard default installation location to use. Optional. --> |
| 119 | + <!--<installFolder></installFolder>--> |
| 120 | + |
| 121 | + <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. --> |
| 122 | + <!--<programMenuFolder></programMenuFolder>--> |
| 123 | + |
| 124 | + <!-- The icon the system uses for the application. For at least one resolution, specify the path to a PNG file included in the AIR package. Optional. --> |
| 125 | + <!--<icon> |
| 126 | + <image16x16></image16x16> |
| 127 | + <image29x29></image29x29> |
| 128 | + <image32x32></image32x32> |
| 129 | + <image36x36></image36x36> |
| 130 | + <image48x48></image48x48> |
| 131 | + <image50x50></image50x50> |
| 132 | + <image57x57></image57x57> |
| 133 | + <image58x58></image58x58> |
| 134 | + <image72x72></image72x72> |
| 135 | + <image100x100></image100x100> |
| 136 | + <image114x114></image114x114> |
| 137 | + <image128x128></image128x128> |
| 138 | + <image144x144></image144x144> |
| 139 | + <image512x512></image512x512> |
| 140 | + <image1024x1024></image1024x1024> |
| 141 | + </icon>--> |
| 142 | + <icon> |
| 143 | + <image16x16>icon/app/icon_16x16.png</image16x16> |
| 144 | + <image32x32>icon/app/icon_32x32.png</image32x32> |
| 145 | + <image48x48>icon/app/icon_48x48.png</image48x48> |
| 146 | + <image128x128>icon/app/icon_128x128.png</image128x128> |
| 147 | + <image512x512>icon/app/icon_512x512.png</image512x512> |
| 148 | + </icon> |
| 149 | + |
| 150 | + |
| 151 | + <!-- Whether the application handles the update when a user double-clicks an update version of the AIR file (true), |
| 152 | + or the default AIR application installer handles the update (false). Optional. Default false. --> |
| 153 | + <!--<customUpdateUI></customUpdateUI>--> |
| 154 | + |
| 155 | + <!-- Whether the application can be launched when the user clicks a link in a web browser. Optional. Default false. --> |
| 156 | + <!--<allowBrowserInvocation></allowBrowserInvocation>--> |
| 157 | + |
| 158 | + <!-- Listing of file types for which the application can register. Optional. --> |
| 159 | + <!--<fileTypes>--> |
| 160 | + <!-- Defines one file type. Optional. --> |
| 161 | + <!--<fileType>--> |
| 162 | + <!-- The name that the system displays for the registered file type. Required. --> |
| 163 | + <!--<name></name>--> |
| 164 | + <!-- The extension to register. Required. --> |
| 165 | + <!--<extension></extension>--> |
| 166 | + <!-- The description of the file type. Optional. --> |
| 167 | + <!--<description></description>--> |
| 168 | + <!-- The MIME content type. --> |
| 169 | + <!--<contentType></contentType>--> |
| 170 | + <!-- The icon to display for the file type. Optional. --> |
| 171 | + <!--<icon> |
| 172 | + <image16x16></image16x16> |
| 173 | + <image32x32></image32x32> |
| 174 | + <image48x48></image48x48> |
| 175 | + <image128x128></image128x128> |
| 176 | + </icon>--> |
| 177 | + <!--</fileType>--> |
| 178 | + <!--</fileTypes>--> |
| 179 | + |
| 180 | + <!-- iOS specific capabilities --> |
| 181 | + <!--<iPhone>--> |
| 182 | + <!-- A list of plist key/value pairs to be added to the application Info.plist --> |
| 183 | + <!--<InfoAdditions>--> |
| 184 | + <!--<![CDATA[--> |
| 185 | + <!--<key>UIDeviceFamily</key>--> |
| 186 | + <!--<array>--> |
| 187 | + <!-- iPhone and iPod touch devices --> |
| 188 | + <!--<string>1</string>--> |
| 189 | + <!-- iPad devices --> |
| 190 | + <!--<string>2</string>--> |
| 191 | + <!--</array>--> |
| 192 | + <!--<key>UIStatusBarStyle</key>--> |
| 193 | + <!--<string>UIStatusBarStyleBlackOpaque</string>--> |
| 194 | + <!--<key>UIRequiresPersistentWiFi</key>--> |
| 195 | + <!--<string>YES</string>--> |
| 196 | + <!--]]>--> |
| 197 | + <!--</InfoAdditions>--> |
| 198 | + |
| 199 | + <!-- A list of plist key/value pairs to be added to the application Entitlements.plist --> |
| 200 | + <!--<Entitlements> |
| 201 | + <![CDATA[ |
| 202 | + <key>keychain-access-groups</key> |
| 203 | + <array> |
| 204 | + <string></string> |
| 205 | + <string></string> |
| 206 | + </array> |
| 207 | + ]]> |
| 208 | + </Entitlements>--> |
| 209 | + |
| 210 | + <!-- Display Resolution for the app (either "standard" or "high"). Optional. Default "standard" --> |
| 211 | + <!--<requestedDisplayResolution>high</requestedDisplayResolution>--> |
| 212 | + <!--</iPhone>--> |
| 213 | + |
| 214 | + <!-- Android specific tags that get passed to AndroidManifest.xml file. --> |
| 215 | + <!--<android>--> |
| 216 | + <!--<manifestAdditions>--> |
| 217 | + <!--<![CDATA[--> |
| 218 | + <!--<manifest android:installLocation="auto">--> |
| 219 | + <!--<uses-permission android:name="android.permission.INTERNET"/>--> |
| 220 | + <!--<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>--> |
| 221 | + <!--<uses-permission android:name="android.permission.READ_PHONE_STATE"/>--> |
| 222 | + <!--<uses-permission android:name="android.permission.VIBRATE"/>--> |
| 223 | + <!--<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>--> |
| 224 | + <!--<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>--> |
| 225 | + <!--<uses-permission android:name="android.permission.WAKE_LOCK"/>--> |
| 226 | + <!--<uses-permission android:name="android.permission.CAMERA"/>--> |
| 227 | + <!--<uses-permission android:name="android.permission.RECORD_AUDIO"/>--> |
| 228 | + <!--<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>--> |
| 229 | + <!--<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>--> |
| 230 | + |
| 231 | + <!--<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>--> |
| 232 | + <!--<application android:enabled="true"> |
| 233 | + <activity android:excludeFromRecents="false"> |
| 234 | + <intent-filter> |
| 235 | + <action android:name="android.intent.action.MAIN"/> |
| 236 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 237 | + </intent-filter> |
| 238 | + </activity> |
| 239 | + </application>--> |
| 240 | + <!--</manifest>--> |
| 241 | + <!--]]>--> |
| 242 | + <!--</manifestAdditions>--> |
| 243 | + |
| 244 | + <!-- Color depth for the app (either "32bit" or "16bit"). Optional. Default 16bit before namespace 3.0, 32bit after --> |
| 245 | + <!--<colorDepth></colorDepth>--> |
| 246 | + <!--</android>--> |
| 247 | + |
| 248 | +</application> |
0 commit comments