-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtiapp.xml
45 lines (45 loc) · 1.95 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
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<deployment-targets>
<target device="mobileweb">false</target>
<target device="iphone">true</target>
<target device="ipad">false</target>
<target device="android">true</target>
<target device="blackberry">false</target>
</deployment-targets>
<id>com.kovalo.coffeeskeleton</id>
<name>CoffeeSkeleton</name>
<version>1.0</version>
<publisher>Kovalo Inc.</publisher>
<url>http://kovalo.com</url>
<description>Skeleton for best practices coffeescript app</description>
<copyright>2011 by Kovalo Inc</copyright>
<icon>appicon.png</icon>
<persistent-wifi>false</persistent-wifi>
<prerendered-icon>false</prerendered-icon>
<statusbar-style>default</statusbar-style>
<statusbar-hidden>false</statusbar-hidden>
<fullscreen>false</fullscreen>
<navbar-hidden>true</navbar-hidden>
<analytics>true</analytics>
<guid>bfe3e52f-4423-4553-b682-1e2ed88bc76c</guid>
<property name="ti.android.threadstacksize" type="int">32768</property>
<!-- See http://jira.appcelerator.org/browse/TIMOB-4941 -->
<property name="ti.android.bug2373.disableDetection" type="bool">false</property>
<property name="ti.android.bug2373.restartDelay" type="int">500</property>
<property name="ti.android.bug2373.finishDelay" type="int">0</property>
<property name="ti.android.bug2373.skipAlert" type="bool">false</property>
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.PORTRAIT</orientation>
</orientations>
</iphone>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>8</tool-api-level>
<manifest android:installLocation="preferExternal"
android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="7"/>
</manifest>
</android>
<modules/>
</ti:app>