forked from mrobinson/KitchenSinkDesktop
-
Notifications
You must be signed in to change notification settings - Fork 18
/
tiapp.xml
35 lines (33 loc) · 1.21 KB
/
tiapp.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
<?xml version='1.0' encoding='UTF-8'?>
<ti:app xmlns:ti='http://ti.appcelerator.org'>
<!-- These values are edited/maintained by Titanium Developer -->
<id>com.appcelerator.kitchensink.desktop</id>
<name>Desktop Kitchen Sink</name>
<version>1.0.0</version>
<publisher>Appcelerator, Inc.</publisher>
<url>www.appcelerator.com</url>
<icon>titanium.png</icon>
<copyright>2010 by Appcelerator, Inc.</copyright>
<description>An API reference for Titanium Desktop</description>
<analytics>false</analytics>
<!-- Global application properties -->
<property name="myString" type="string">I am a String</property>
<property name="myDouble" type="double">1.23</property>
<property name="myBool" type="boolean">true</property>
<property name="myInt" type="int">1</property>
<property name="myList" type="list">1,2,3</property>
<property name="myDefaultString">I am a default string</property>
<window>
<id>initial</id>
<title>Desktop Kitchen Sink</title>
<url>app://index.html</url>
<width>1100</width>
<height>800</height>
<fullscreen>false</fullscreen>
<resizable>true</resizable>
<chrome scrollbars="true">true</chrome>
<maximizable>true</maximizable>
<minimizable>true</minimizable>
<closeable>true</closeable>
</window>
</ti:app>