-
Notifications
You must be signed in to change notification settings - Fork 26
/
tiapp.xml
68 lines (68 loc) · 2.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.polancomedia.alloyactionjackson</id>
<name>AlloyActionJackson</name>
<version>1.0</version>
<publisher>adam</publisher>
<url>http://polancomedia.com</url>
<description>not specified</description>
<copyright>2013 by adam</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>81f92459-ddb9-47e0-81b9-1db8170d7f67</guid>
<property name="ti.ui.defaultunit" type="string">system</property>
<property name="ti.android.fastdev" type="bool">false</property>
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.PORTRAIT</orientation>
</orientations>
<orientations device="ipad">
<orientation>Ti.UI.PORTRAIT</orientation>
<orientation>Ti.UI.UPSIDE_PORTRAIT</orientation>
<orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
<orientation>Ti.UI.LANDSCAPE_RIGHT</orientation>
</orientations>
</iphone>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<!--Add the following tool and manifest entries.
Also add your theme name: android:theme="@style/Theme.MyThemeName"
-->
<manifest>
<application android:theme="@style/Theme.Actionappcompat">
<!-- define the modal activity here so that it also receives our custom theme>
see: http://docs.appcelerator.com/titanium/latest/#!/guide/Android_Themes
NOTE: in 3.2.0, the activity name changed from TiModalActivity to TiTranslucentActivity
-->
<activity android:name="org.appcelerator.titanium.TiTranslucentActivity"/>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19"/>
</manifest>
</android>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules/>
<deployment-targets>
<target device="blackberry">false</target>
<target device="android">true</target>
<target device="ipad">false</target>
<target device="iphone">false</target>
<target device="mobileweb">false</target>
<target device="tizen">false</target>
</deployment-targets>
<sdk-version>3.3.0.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>