application descriptors

This commit is contained in:
Melos Han-Tani 2020-04-04 19:17:26 +09:00
parent 3e29957fd8
commit 2ecdc86daf
3 changed files with 153 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Hint: Rename all the anodyne demo things to change the filename (and thus install path) -->
<application xmlns="http://ns.adobe.com/air/application/3.7">
<supportedProfiles>extendedDesktop</supportedProfiles>
<id>Anodyne</id>
<versionNumber>1.53</versionNumber>
<filename>Anodyne</filename>
<name>Anodyne</name>
<initialWindow>
<title>Anodyne</title>
<content>Anodyne.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<width>480</width>
<height>540</height>
<resizable>false</resizable>
<minimizable>false</minimizable>
<maximizable>false</maximizable>
<x>0</x>
<y>0</y>
</initialWindow>
<!--
More options:
http://livedocs.adobe.com/flex/3/html/File_formats_1.html#1043413
-->
<description>The game Anodyne.</description>
<icon>
<image32x32>icons/IntraAIR32.png</image32x32>
</icon>
</application>

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Hint: Rename all the anodyne demo things to change the filename (and thus install path) -->
<application xmlns="http://ns.adobe.com/air/application/3.7">
<supportedProfiles>extendedDesktop</supportedProfiles>
<extensions>
<extensionID>ca.wegetsignal.nativeextensions.MacJoyANE</extensionID>
</extensions>
<id>Anodyne</id>
<versionNumber>1.511</versionNumber>
<filename>Anodyne</filename>
<name>Anodyne</name>
<initialWindow>
<title>Anodyne</title>
<content>Anodyne.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<width>480</width>
<height>540</height>
<resizable>false</resizable>
<minimizable>false</minimizable>
<maximizable>false</maximizable>
<x>0</x>
<y>0</y>
</initialWindow>
<!--
More options:
http://livedocs.adobe.com/flex/3/html/File_formats_1.html#1043413
-->
<description>The game Anodyne.</description>
<icon>
<image32x32>icons/IntraAIR32.png</image32x32>
<image128x128>icons/IntraAIR128.png</image128x128>
</icon>
</application>

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/30.0">
<id>Anodyne.mobile</id>
<versionNumber>1.516</versionNumber>
<supportedProfiles>mobileDevice</supportedProfiles>
<filename>Anodyne</filename>
<supportedLanguages>en</supportedLanguages>
<name>Anodyne</name>
<description>An adventure through Young's dream world.</description>
<copyright>2012-2018, Analgesic Productions LLC.</copyright>
<android>
<manifestAdditions><![CDATA[
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
</manifest>
]]></manifestAdditions>
</android>
<iPhone>
<InfoAdditions><![CDATA[
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleBlackOpaque</string>
<key>UIRequiresPersistentWiFi</key>
<string>NO</string>
<key>UIPrerenderedIcon</key>
<true/>
<key>UIDeviceFamily</key>
<array>
<!-- iPhone support -->
<string>1</string>
<!-- iPad support -->
<!--<string>2</string>-->
</array>
]]></InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>
<initialWindow>
<title>Anodyne</title>
<content>Anodyne.swf</content>
<visible>true</visible>
<fullScreen>true</fullScreen>
<width>480</width>
<height>540</height>
<autoOrients>true</autoOrients>
<aspectRatio>any</aspectRatio>
<renderMode>direct</renderMode>
<x>0</x>
<y>0</y>
</initialWindow>
<icon>
<image29x29>icons/IntraAIR29.png</image29x29>
<image57x57>icons/IntraAIR57.png</image57x57>
<image32x32>icons/IntraAIR32.png</image32x32>
<image48x48>icons/IntraAIR48.png</image48x48>
<image72x72>icons/72.png</image72x72>
<image96x96>icons/96.png</image96x96>
<image144x144>icons/144.png</image144x144>
<image114x114>icons/114.png</image114x114>
<image128x128>icons/IntraAIR128.png</image128x128>
<image512x512>icons/IntraAIR512.png</image512x512>
</icon>
<!--
AIR options:
http://livedocs.adobe.com/flex/3/html/File_formats_1.html#1043413
AIR mobile options:
http://help.adobe.com/en_US/air/build/WSfffb011ac560372f-5d0f4f25128cc9cd0cb-7ffe.html
Android manifest documentation:
http://developer.android.com/guide/topics/manifest/manifest-intro.html
-->
</application>