-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.xml
More file actions
170 lines (156 loc) · 7.9 KB
/
app.xml
File metadata and controls
170 lines (156 loc) · 7.9 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/32.0">
<id>com.roipeker.StarlingDraw</id>
<filename>Starling Draw Lib</filename>
<name>Starling Draw Lib</name>
<versionNumber>1.0.0</versionNumber>
<copyright>roipeker 2019</copyright>
<initialWindow>
<content>SWF file name is set automatically at compile time</content>
<title>Draw Demo</title>
<systemChrome>standard</systemChrome>
<visible>true</visible>
<aspectRatio>portrait</aspectRatio>
<autoOrients>true</autoOrients>
<fullScreen>true</fullScreen>
<renderMode>direct</renderMode>
<depthAndStencil>true</depthAndStencil>
<requestedDisplayResolution>high</requestedDisplayResolution>
</initialWindow>
<!-- The icon the system uses for the application. For at least one resolution, specify the path to a PNG file included in the AIR package. Optional. -->
<!--<icon>
<image16x16></image16x16>
<image29x29></image29x29>
<image32x32></image32x32>
<image36x36></image36x36>
<image40x40></image40x40>
<image44x44></image44x44>
<image48x48></image48x48>
<image50x50></image50x50>
<image57x57></image57x57>
<image58x58></image58x58>
<image60x60></image60x60>
<image66x66></image66x66>
<image72x72></image72x72>
<image75x75></image75x75>
<image76x76></image76x76>
<image80x80></image80x80>
<image87x87></image87x87>
<image96x96></image96x96>
<image100x100></image100x100>
<image114x114></image114x114>
<image120x120></image120x120>
<image128x128></image128x128>
<image144x144></image144x144>
<image152x152></image152x152>
<image167x167></image167x167>
<image180x180></image180x180>
<image192x192></image192x192>
<image512x512></image512x512>
<image732x412></image732x412>
<image1024x1024></image1024x1024>
</icon>-->
<!-- Whether the application handles the update when a user double-clicks an update version of the AIR file (true),
or the default AIR application installer handles the update (false). Optional. Default false. -->
<!--<customUpdateUI></customUpdateUI>-->
<!-- Whether the application can be launched when the user clicks a link in a web browser. Optional. Default false. -->
<!--<allowBrowserInvocation></allowBrowserInvocation>-->
<!-- Listing of file types for which the application can register. Optional. -->
<!--<fileTypes>-->
<!-- Defines one file type. Optional. -->
<!--<fileType>-->
<!-- The name that the system displays for the registered file type. Required. -->
<!--<name></name>-->
<!-- The extension to register. Required. -->
<!--<extension></extension>-->
<!-- The description of the file type. Optional. -->
<!--<description></description>-->
<!-- The MIME content type. -->
<!--<contentType></contentType>-->
<!-- The icon to display for the file type. Optional. -->
<!--<icon>
<image16x16></image16x16>
<image32x32></image32x32>
<image48x48></image48x48>
<image128x128></image128x128>
</icon>-->
<!--</fileType>-->
<!--</fileTypes>-->
<!-- iOS specific capabilities -->
<!--<iPhone>-->
<!-- A list of plist key/value pairs to be added to the application Info.plist -->
<!--<InfoAdditions>-->
<!--<![CDATA[-->
<!--<key>UIDeviceFamily</key>-->
<!--<array>-->
<!-- iPhone and iPod touch devices -->
<!--<string>1</string>-->
<!-- iPad devices -->
<!--<string>2</string>-->
<!--</array>-->
<!--<key>UIStatusBarStyle</key>-->
<!--<string>UIStatusBarStyleBlackOpaque</string>-->
<!--<key>UIRequiresPersistentWiFi</key>-->
<!--<string>YES</string>-->
<!--]]>-->
<!--</InfoAdditions>-->
<!-- A list of plist key/value pairs to be added to the application Entitlements.plist -->
<!--<Entitlements>
<![CDATA[
<key>keychain-access-groups</key>
<array>
<string></string>
<string></string>
</array>
]]>
</Entitlements>-->
<!-- Display Resolution for the app (either "standard" or "high"). Optional. Default "standard" -->
<!--<requestedDisplayResolution>high</requestedDisplayResolution>-->
<!-- Forcing Render Mode CPU for the devices mentioned. Optional -->
<!--<forceCPURenderModeForDevices></forceCPURenderModeForDevices> -->
<!-- File containing line separated list of external swf paths. These swfs won't be packaged inside the application
and corresponding stripped swfs will be output in externalStrippedSwfs folder. -->
<!--<externalSwfs></externalSwfs> -->
<!--</iPhone>-->
<!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
<android>
<manifestAdditions>
<![CDATA[
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<!--<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>-->
<!--<uses-permission android:name="android.permission.READ_PHONE_STATE"/>-->
<!--<uses-permission android:name="android.permission.VIBRATE"/>-->
<!--<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>-->
<!--<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>-->
<!--<uses-permission android:name="android.permission.WAKE_LOCK"/>-->
<!--<uses-permission android:name="android.permission.CAMERA"/>-->
<!--<uses-permission android:name="android.permission.RECORD_AUDIO"/>-->
<!--<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>-->
<!--<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>-->
<!--<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>
<!-- Color depth for the app (either "32bit" or "16bit"). Optional. Default 16bit before namespace 3.0, 32bit after -->
<!--<colorDepth></colorDepth>-->
<!-- 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 -->
<!-- <containsVideo></containsVideo> -->
<!-- This app is also for Android TV (either "true" or "false"). Optional. Default is 'false' -->
<!-- <supportsAndroidTV></supportsAndroidTV> -->
<!-- Path to the image used for banner when the app is shown on TV. Optional. The banner should be a .png image of size 320*180.-->
<!-- <banner></banner> -->
<!-- Indicates if webContents (HTML/CSS/JavaScript) can be inspected in browser. Optional . Default value is 'false' -->
<!-- <webContentsDebuggingEnabled></webContentsDebuggingEnabled> -->
<!-- Indicates if disableMediaCodec is enabled or not. Optional . Default value is 'false' -->
<!-- <disableMediaCodec></disableMediaCodec> -->
</android>
</application>