1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
| <?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/2.6">
<id>....</id>
<filename>....</filename>
<name>....</name>
<versionNumber>01</versionNumber>
<initialWindow>
<content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
<width>1024</width>
<height>768</height>
<title>.....</title>
<systemChrome>none</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<resizable>true</resizable>
<minimizable>true</minimizable>
<maximizable>true</maximizable>
<minSize>1024 768</minSize>
</initialWindow>
<android>
<manifestAdditions>
<![CDATA[
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-configuration android:reqFiveWayNav="true"/>
<supports-screens android:normalScreens="true"/>
<application android:enabled="true">
<activity android:excludeFromRecents="false">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
]]>
</manifestAdditions>
</android>
<description>
<text xml:lang="fr" >....</text>
</description>
<copyright>....</copyright>
<installFolder>...</installFolder>
<programMenuFolder>...</programMenuFolder>
<supportedProfiles>extendedDesktop desktop mobileDevice</supportedProfiles>
<customUpdateUI>false</customUpdateUI>
<icon>
<image128x128>icons/appIcon_128.png</image128x128>
<image48x48>icons/appIcon_48.png</image48x48>
<image32x32>icons/appIcon_32.png</image32x32>
<image16x16>icons/appIcon_16.png</image16x16>
</icon>
<fileTypes/>
</application> |
Partager