-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.xml
82 lines (77 loc) · 2.95 KB
/
application.xml
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
<?xml version="1.0" encoding="utf-8"?>
<application xmlns="http://ns.adobe.com/air/application/13.0">
<id>com.fenoxo.coc</id>
<versionNumber>0.8.9</versionNumber>
<versionLabel>CoC_0.8.9</versionLabel>
<supportedProfiles>mobileDevice desktop extendedMobileDevice extendedDesktop tv extendedTV</supportedProfiles>
<filename>Corruption of Champions</filename>
<name>Corruption of Champions</name>
<customUpdateUI>false</customUpdateUI>
<initialWindow>
<title>Corruption of Champions</title>
<!-- Please don't change the following line -->
<!-- Some of the automated build tools match against it to insert the proper swf name at compile-time -->
<content>./CoC-AIR.swf</content>
<visible>true</visible>
<fullScreen>true</fullScreen>
<autoOrients>true</autoOrients>
<aspectRatio>any</aspectRatio>
<renderMode>direct</renderMode>
<!--<depthAndStencil>true</depthAndStencil>-->
<!-- required for 3D -->
<systemChrome>standard</systemChrome>
</initialWindow>
<android>
<manifestAdditions>
<![CDATA[<manifest android:installLocation="auto">
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<supports-screens
android:normalScreens="true"
android:smallScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
android:resizeable="true"
/>
<uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch" />
<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>
<iPhone>
<InfoAdditions>
<![CDATA[
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleBlackOpaque</string>
<key>UIRequiresPersistentWiFi</key>
<string>NO</string>
<key>UIPrerenderedIcon</key>
<true />
<key>UIApplicationExitsOnSuspend</key>
<false />
<key>UIDeviceFamily</key>
<array>
<string>1</string>
<string>2</string>
</array>
]]>
</InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
<forceCPURenderModeForDevices>iPad1,1 iPhone1,1 iPhone1,2 iPod1,1</forceCPURenderModeForDevices>
</iPhone>
<icon>
<image29x29>icons/icon_29.png</image29x29>
<image57x57>icons/icon_57.png</image57x57>
<image72x72>icons/icon_72.png</image72x72>
<image144x144>icons/icon_144.png</image144x144>
<image512x512>icons/icon_512.png</image512x512>
</icon>
</application>