home *** CD-ROM | disk | FTP | other *** search
/ Video Vibe PRO / VideoVibePRO.iso / META-INF / AIR / application.xml next >
Extensible Markup Language  |  2015-09-12  |  10KB  |  227 lines

  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <application xmlns="http://ns.adobe.com/air/application/3.1">
  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/3.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.     <!-- 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>VideoVibePRO</id>
  19.  
  20.     <!-- Used as the filename for the application. Required. -->
  21.     <filename>VideoVibePRO</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>VideoVibePRO</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>VideoVibeProffesional.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>none</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, gpu, or direct). Optional. 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>true</autoOrients>
  109.         <fullScreen>true</fullScreen>
  110.         <visible>true</visible>
  111.         <softKeyboardBehavior>none</softKeyboardBehavior>
  112.     </initialWindow>
  113.  
  114.     <!-- We recommend omitting the supportedProfiles element, -->
  115.     <!-- which in turn permits your application to be deployed to all -->
  116.     <!-- devices supported by AIR. If you wish to restrict deployment -->
  117.     <!-- (i.e., to only mobile devices) then add this element and list -->
  118.     <!-- only the profiles which your application does support. -->
  119.     <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
  120.  
  121.     <!-- The subpath of the standard default installation location to use. Optional. -->
  122.     <!-- <installFolder></installFolder> -->
  123.  
  124.     <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
  125.     <!-- <programMenuFolder></programMenuFolder> -->
  126.  
  127.     <!-- The icon the system uses for the application. For at least one resolution,
  128.     specify the path to a PNG file included in the AIR package. Optional. -->
  129.       <icon>
  130.         <image128x128>assets/128X128.png</image128x128>
  131.         
  132.     </icon> 
  133.     <!-- Whether the application handles the update when a user double-clicks an update version
  134.     of the AIR file (true), or the default AIR application installer handles the update (false).
  135.     Optional. Default false. -->
  136.     <!-- <customUpdateUI></customUpdateUI> -->
  137.     
  138.     <!-- Whether the application can be launched when the user clicks a link in a web browser.
  139.     Optional. Default false. -->
  140.     <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
  141.  
  142.     <!-- Listing of file types for which the application can register. Optional. -->
  143.     <!-- <fileTypes> -->
  144.  
  145.         <!-- Defines one file type. Optional. -->
  146.         <!-- <fileType> -->
  147.  
  148.             <!-- The name that the system displays for the registered file type. Required. -->
  149.             <!-- <name></name> -->
  150.  
  151.             <!-- The extension to register. Required. -->
  152.             <!-- <extension></extension> -->
  153.             
  154.             <!-- The description of the file type. Optional. -->
  155.             <!-- <description></description> -->
  156.             
  157.             <!-- The MIME content type. -->
  158.             <!-- <contentType></contentType> -->
  159.             
  160.             <!-- The icon to display for the file type. Optional. -->
  161.             <!-- <icon>
  162.                 <image16x16></image16x16>
  163.                 <image32x32></image32x32>
  164.                 <image48x48></image48x48>
  165.                 <image128x128></image128x128>
  166.             </icon> -->
  167.             
  168.         <!-- </fileType> -->
  169.     <!-- </fileTypes> -->
  170.  
  171.     <!-- iOS specific capabilities -->
  172.     <!-- <iPhone> -->
  173.         <!-- A list of plist key/value pairs to be added to the application Info.plist -->
  174.         <!-- <InfoAdditions>
  175.             <![CDATA[
  176.                 <key>UIDeviceFamily</key>
  177.                 <array>
  178.                     <string>1</string>
  179.                     <string>2</string>
  180.                 </array>
  181.                 <key>UIStatusBarStyle</key>
  182.                 <string>UIStatusBarStyleBlackOpaque</string>
  183.                 <key>UIRequiresPersistentWiFi</key>
  184.                 <string>YES</string>
  185.             ]]>
  186.         </InfoAdditions> -->
  187.         <!-- A list of plist key/value pairs to be added to the application Entitlements.plist -->
  188.         <!-- <Entitlements>
  189.             <![CDATA[
  190.                 <key>keychain-access-groups</key>
  191.                 <array>
  192.                     <string></string>
  193.                     <string></string>
  194.                 </array>
  195.             ]]>
  196.         </Entitlements> -->
  197.     <!-- Display Resolution for the app (either "standard" or "high"). Optional. Default "standard" -->
  198.     <!-- <requestedDisplayResolution></requestedDisplayResolution> -->
  199.     <!-- </iPhone> -->
  200.  
  201.     <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
  202.     <!--<android> -->
  203.     <!--    <manifestAdditions>
  204.         <![CDATA[
  205.             <manifest android:installLocation="auto">
  206.                 <uses-permission android:name="android.permission.INTERNET"/>
  207.                 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  208.                 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  209.                 <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
  210.                 <application android:enabled="true">
  211.                     <activity android:excludeFromRecents="false">
  212.                         <intent-filter>
  213.                             <action android:name="android.intent.action.MAIN"/>
  214.                             <category android:name="android.intent.category.LAUNCHER"/>
  215.                         </intent-filter>
  216.                     </activity>
  217.                 </application>
  218.             </manifest>
  219.         ]]>
  220.         </manifestAdditions> -->
  221.         <!-- Color depth for the app (either "32bit" or "16bit"). Optional. Default 16bit before namespace 3.0, 32bit after -->
  222.         <!-- <colorDepth></colorDepth> -->
  223.     <!-- </android> -->
  224.     <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
  225.     <supportedProfiles>extendedDesktop desktop</supportedProfiles>
  226. </application>
  227.