Guest User

Untitled

a guest
Aug 14th, 2020
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 13.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <application xmlns="http://ns.adobe.com/air/application/33.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.5
  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>com.chakygames.AncientMachines</id>
  19.  
  20.     <!-- Used as the filename for the application. Required. -->
  21.     <filename>Ancient Machines</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>Ancient Machines</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.    For iOS Apps, this represents build number. -->
  31.     <versionNumber>1.64.88</versionNumber>
  32.  
  33.     <!-- 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.
  34.     For iOS Apps, this represents application version number and format should be (<0-999>.<0-999>.<0-999>).
  35.     If this tag is not specified or the value is not according to the format, then this tag will be ignored
  36.     and <versionNumber> will be used for application version number. Optional. -->
  37.     <versionLabel>1.0.88</versionLabel>
  38.  
  39.     <!-- Description, displayed in the AIR application installer.
  40.     May have multiple values for each language. See samples or xsd schema file. Optional. -->
  41.     <description>This is CHAKY GAMES Ancient Machines Application.</description>
  42.  
  43.     <!-- Copyright information. Optional -->
  44.     <!-- <copyright></copyright> -->
  45.  
  46.     <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
  47.     <!-- <publisherID></publisherID> -->
  48.    
  49.         <embedFonts>
  50.             <font>
  51.                  <fontName>Life is goofy</fontName>
  52.                  <fontPath>simandroid/assets/fonts/life_is_goofy.ttf</fontPath>
  53.             </font>
  54.         </embedFonts>
  55.  
  56.     <!-- Settings for the application's initial window. Required. -->
  57.     <initialWindow>
  58.         <!-- The main SWF or HTML file of the application. Required. -->
  59.         <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
  60.         <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
  61.        
  62.         <!-- The title of the main window. Optional. -->
  63.         <!-- <title></title> -->
  64.  
  65.         <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
  66.         <!-- <systemChrome></systemChrome> -->
  67.  
  68.         <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
  69.         <!-- <transparent></transparent> -->
  70.  
  71.         <!-- Whether the window is initially visible. Optional. Default false. -->
  72.         <!-- <visible></visible> -->
  73.  
  74.         <!-- Whether the user can minimize the window. Optional. Default true. -->
  75.         <!-- <minimizable></minimizable> -->
  76.  
  77.         <!-- Whether the user can maximize the window. Optional. Default true. -->
  78.         <!-- <maximizable></maximizable> -->
  79.  
  80.         <!-- Whether the user can resize the window. Optional. Default true. -->
  81.         <!-- <resizable></resizable> -->
  82.  
  83.         <!-- The window's initial width in pixels. Optional. -->
  84.         <!-- <width></width> -->
  85.  
  86.         <!-- The window's initial height in pixels. Optional. -->
  87.         <!-- <height></height> -->
  88.  
  89.         <!-- The window's initial x position. Optional. -->
  90.         <!-- <x></x> -->
  91.  
  92.         <!-- The window's initial y position. Optional. -->
  93.         <!-- <y></y> -->
  94.  
  95.         <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
  96.         <!-- <minSize></minSize> -->
  97.  
  98.         <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
  99.         <!-- <maxSize></maxSize> -->
  100.  
  101.         <!-- The aspect ratio of the app ("portrait" or "landscape" or "any"). Optional. Mobile only. Default is the natural orientation of the device -->
  102.  
  103.         <aspectRatio>landscape</aspectRatio>
  104.  
  105.         <!-- Whether the app will begin auto-orienting on launch. Optional. Mobile only. Default false -->
  106.  
  107.         <autoOrients>true</autoOrients>
  108.  
  109.         <!-- Whether the app launches in full screen. Optional. Mobile only. Default false -->
  110.  
  111.         <fullScreen>true</fullScreen>
  112.  
  113.         <!-- The render mode for the app (either auto, cpu, gpu, or direct). Optional. Default auto -->
  114.  
  115.         <renderMode>direct</renderMode>
  116.  
  117.         <!-- Whether the default direct mode rendering context allocates storage for depth and stencil buffers.  Optional.  Default false. -->
  118.         <depthAndStencil>true</depthAndStencil>
  119.  
  120.         <!-- Whether or not to pan when a soft keyboard is raised or lowered (either "pan" or "none").  Optional.  Defaults "pan." -->
  121.         <!-- <softKeyboardBehavior></softKeyboardBehavior> -->
  122.  
  123.         <!-- Display Resolution for the app (either "standard" or "high"). Optional, OSX-only. Default "standard" -->
  124.         <!-- <requestedDisplayResolution>high</requestedDisplayResolution>  -->
  125.  
  126.         <visible>true</visible>
  127.  
  128.     </initialWindow>
  129.  
  130.     <!-- We recommend omitting the supportedProfiles element, -->
  131.     <!-- which in turn permits your application to be deployed to all -->
  132.     <!-- devices supported by AIR. If you wish to restrict deployment -->
  133.     <!-- (i.e., to only mobile devices) then add this element and list -->
  134.     <!-- only the profiles which your application does support. -->
  135.     <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
  136.  
  137.     <!-- Languages supported by application -->
  138.     <!-- Only these languages can be specified -->
  139.     <supportedLanguages>en</supportedLanguages>
  140.  
  141.     <!-- The subpath of the standard default installation location to use. Optional. -->
  142.     <!-- <installFolder></installFolder> -->
  143.  
  144.     <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
  145.     <!-- <programMenuFolder></programMenuFolder> -->
  146.  
  147.     <!-- The icon the system uses for the application. For at least one resolution,
  148.     specify the path to a PNG file included in the AIR package. Optional. -->
  149.     <icon>
  150.  
  151.         <image16x16>install_icons/16x16.png</image16x16>
  152.         <image29x29>install_icons/29x29.png</image29x29>
  153.         <image32x32>install_icons/32x32.png</image32x32>
  154.         <image36x36>install_icons/36x36.png</image36x36>
  155.         <image48x48>install_icons/48x48.png</image48x48>
  156.         <image50x50>install_icons/50x50.png</image50x50>
  157.         <image57x57>install_icons/57x57.png</image57x57>
  158.         <image58x58>install_icons/58x58.png</image58x58>
  159.         <image72x72>install_icons/72x72.png</image72x72>
  160.         <image100x100>install_icons/100x100.png</image100x100>
  161.         <image114x114>install_icons/114x114.png</image114x114>
  162.         <image120x120>install_icons/120x120.png</image120x120>
  163.         <image128x128>install_icons/128x128.png</image128x128>
  164.         <image144x144>install_icons/144x144.png</image144x144>
  165.         <image512x512>install_icons/512x512.png</image512x512>
  166.         <image1024x1024>install_icons/1024x1024.png</image1024x1024>
  167.  
  168.     </icon>
  169.  
  170.     <!-- Whether the application handles the update when a user double-clicks an update version
  171.     of the AIR file (true), or the default AIR application installer handles the update (false).
  172.     Optional. Default false. -->
  173.     <!-- <customUpdateUI></customUpdateUI> -->
  174.    
  175.     <!-- Whether the application can be launched when the user clicks a link in a web browser.
  176.     Optional. Default false. -->
  177.     <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
  178.  
  179.     <!-- Listing of file types for which the application can register. Optional. -->
  180.     <!-- <fileTypes> -->
  181.  
  182.         <!-- Defines one file type. Optional. -->
  183.         <!-- <fileType> -->
  184.  
  185.             <!-- The name that the system displays for the registered file type. Required. -->
  186.             <!-- <name></name> -->
  187.  
  188.             <!-- The extension to register. Required. -->
  189.             <!-- <extension></extension> -->
  190.            
  191.             <!-- The description of the file type. Optional. -->
  192.             <!-- <description></description> -->
  193.            
  194.             <!-- The MIME content type. -->
  195.             <!-- <contentType></contentType> -->
  196.            
  197.             <!-- The icon to display for the file type. Optional. -->
  198.             <!-- <icon>
  199.                 <image16x16></image16x16>
  200.                 <image32x32></image32x32>
  201.                 <image48x48></image48x48>
  202.                 <image128x128></image128x128>
  203.             </icon> -->
  204.            
  205.         <!-- </fileType> -->
  206.     <!-- </fileTypes> -->
  207.  
  208.     <!-- iOS specific capabilities -->
  209.     <!-- <iPhone> -->
  210.         <!-- A list of plist key/value pairs to be added to the application Info.plist -->
  211.         <!-- <InfoAdditions>
  212.            <![CDATA[
  213.                <key>UIDeviceFamily</key>
  214.                <array>
  215.                    <string>1</string>
  216.                    <string>2</string>
  217.                </array>
  218.                <key>UIStatusBarStyle</key>
  219.                <string>UIStatusBarStyleBlackOpaque</string>
  220.                <key>UIRequiresPersistentWiFi</key>
  221.                <string>YES</string>
  222.            ]]>
  223.        </InfoAdditions> -->
  224.         <!-- A list of plist key/value pairs to be added to the application Entitlements.plist -->
  225.         <!-- <Entitlements>
  226.            <![CDATA[
  227.                <key>keychain-access-groups</key>
  228.                <array>
  229.                    <string></string>
  230.                    <string></string>
  231.                </array>
  232.            ]]>
  233.        </Entitlements> -->
  234.     <!-- Display Resolution for the app (either "standard" or "high"). Optional. Default "standard" -->
  235.     <!-- <requestedDisplayResolution></requestedDisplayResolution> -->
  236.     <!-- Forcing Render Mode CPU for the devices mentioned. Optional  -->
  237.     <!-- <forceCPURenderModeForDevices></forceCPURenderModeForDevices> -->
  238.     <!-- File containing line separated list of external swf paths. These swfs won't be
  239.     packaged inside the application and corresponding stripped swfs will be output in
  240.     externalStrippedSwfs folder. -->
  241.     <!-- <externalSwfs></externalSwfs> -->
  242.     <!-- </iPhone> -->
  243.  
  244.     <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
  245.     <!--<android> -->
  246.     <!--    <manifestAdditions>
  247.         <![CDATA[
  248.             <manifest android:installLocation="auto">
  249.                 <uses-permission android:name="android.permission.INTERNET"/>
  250.                 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  251.                 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  252.                 <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
  253.                 <application android:enabled="true">
  254.                     <activity android:excludeFromRecents="false">
  255.                         <intent-filter>
  256.                             <action android:name="android.intent.action.MAIN"/>
  257.                             <category android:name="android.intent.category.LAUNCHER"/>
  258.                         </intent-filter>
  259.                     </activity>
  260.                 </application>
  261.            </manifest>
  262.         ]]>
  263.        </manifestAdditions> -->
  264.         <!-- Color depth for the app (either "32bit" or "16bit"). Optional. Default 16bit before namespace 3.0, 32bit after -->
  265.         <!-- <colorDepth></colorDepth> -->
  266.         <!-- Indicates if the app contains video or not. Necessary for ordering of video planes with graphics plane, especially in Jellybean - if you app does video this must be set to true - valid values are true or false -->
  267.         <!-- <containsVideo></containsVideo> -->
  268.         <!-- Indicates if webContents (HTML/CSS/JavaScript) can be inspected in browser. Optional . Default value is 'false' -->
  269.         <!-- <webContentsDebuggingEnabled></webContentsDebuggingEnabled> -->
  270.     <!-- </android> -->
  271.     <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
  272.  
  273.     <android>
  274.         <manifestAdditions><![CDATA[
  275.            
  276.             <manifest android:installLocation="auto">
  277.  
  278.                 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>               
  279.  
  280.                  <application>
  281.                     <meta-data android:name="android.max_aspect" android:value="2.5" />
  282.                 </application>
  283.  
  284.                 <!--See the Adobe AIR documentation for more information about setting Google Android permissions-->
  285.                 <!--Removing the permission android.permission.INTERNET will have the side effect
  286.         of preventing you from debugging your application on your device-->
  287.                 <uses-permission android:name="android.permission.INTERNET"/>
  288.                 <!--<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>-->
  289.                 <!--<uses-permission android:name="android.permission.READ_PHONE_STATE"/>-->
  290.                 <!--<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>-->
  291.                 <!--The DISABLE_KEYGUARD and WAKE_LOCK permissions should be toggled together
  292.         in order to access AIR's SystemIdleMode APIs-->
  293.                 <!--<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>-->
  294.                 <!--<uses-permission android:name="android.permission.WAKE_LOCK"/>-->
  295.                 <!--<uses-permission android:name="android.permission.CAMERA"/>-->
  296.                 <!--<uses-permission android:name="android.permission.RECORD_AUDIO"/>-->
  297.                 <!--The ACCESS_NETWORK_STATE and ACCESS_WIFI_STATE permissions should be toggled
  298.         together in order to use AIR's NetworkInfo APIs-->
  299.                 <!--<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>-->
  300.                 <!--<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>-->
  301.             </manifest>
  302.            
  303.         ]]></manifestAdditions>
  304.     </android>
  305. </application>
  306.  
Add Comment
Please, Sign In to add comment