Sha256: bed80be2ef00ba06ad63bc7e6c3d9adbeaa701a5551b969cbfd342f7cb60a325

Contents?: true

Size: 1.77 KB

Versions: 8

Compression:

Stored size: 1.77 KB

Contents

<?xml version="1.0" encoding="utf-8" ?>
<application 
	xmlns="http://ns.adobe.com/air/application/1.0.M6"
	minimumPatchLevel="4">
<!-- AIR Application Descriptor File. See http://www.adobe.com/go/air_1.0_application_descriptor. -->
	<id>com.exampleCompany.<%= app_name %></id>
	<name><%= app_name %></name>
	<version>1.0</version>
	<filename><%= app_name %></filename>
	<description><%= description %></description>
	<copyright>(c) <%= Date.today.year %></copyright>
	<initialWindow>
		<content>bin/<%= app_name %>.swf</content>
		<title><%= title %></title>
		<systemChrome>standard</systemChrome>
		<transparent>false</transparent>
		<visible>true</visible>
		<minimizable>true</minimizable>
		<maximizable>true</maximizable>
		<resizable>true</resizable>
		<width>1024</width>
    <height>768</height>
    <x>100</x>
    <y>50</y>
		<minSize>300 300</minSize>
		<maxSize>800 800</maxSize>
	</initialWindow>
	<installFolder><%= app_name %></installFolder>
	<programMenuFolder><%= app_name %></programMenuFolder>
	<icon>
	  <!--
		<image16x16>icons/AIRApp_16.png</image16x16>
		<image32x32>icons/AIRApp_32.png</image32x32>
		<image48x48>icons/AIRApp_48.png</image48x48>-->
		<image128x128>src/assets/app_icons/icon_128.png</image128x128>
	</icon>
	<customUpdateUI>false</customUpdateUI>
	<allowBrowserInvocation>false</allowBrowserInvocation>
	<fileTypes>
		<fileType>
			<name>com.example</name>
			<extension>xmpl</extension>
			<description>Example file</description>
			<contentType>example/x-data-type</contentType>
			<icon>
			  <!--
				<image16x16>icons/AIRApp_16.png</image16x16>
				<image32x32>icons/AIRApp_32.png</image32x32>
				<image48x48>icons/AIRApp_48.png</image48x48>-->
				<image128x128>src/assets/app_icons/icon_128.png</image128x128>
			</icon>
		</fileType>
	</fileTypes>
</application>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
airake-0.3.2 app_generators/shared/descriptor_M6.xml
airake-0.4.0 app_generators/shared/descriptor_M6.xml
airake-0.3.1 app_generators/shared/descriptor_M6.xml
airake-0.4.4 app_generators/shared/descriptor_M6.xml
airake-0.4.2 app_generators/shared/descriptor_M6.xml
airake-0.4.5 app_generators/shared/descriptor_M6.xml
airake-0.4.1 app_generators/shared/descriptor_M6.xml
airake-0.4.3 app_generators/shared/descriptor_M6.xml