-
Notifications
You must be signed in to change notification settings - Fork 2
/
tiapp.xml
76 lines (76 loc) · 3.2 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
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>org.cmhouston.excl</id>
<name>ExCL</name>
<version>1.1.1</version>
<publisher>Children's Museum of Houston and the Regents of the University of California</publisher>
<url>http://</url>
<description>ExCL is a platform that enables museums to engage visitors at museum activities through the use of a mobile application.</description>
<copyright>2014 by Children's Museum of Houston and the Regents of the University of California</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>b7ecc89e-dcbc-41dc-9f5a-801689b537fe</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="201" android:versionName="1.1.1">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="19"/>
<supports-screens android:anyDensity="false"
android:largeScreens="true" android:normalScreens="true"
android:resizeable="true" android:smallScreens="false" android:xlargeScreens="false"/>
<application>
<activity android:configChanges="keyboardHidden"
android:name="org.appcelerator.titanium.TiActivity" android:screenOrientation="portrait"/>
</application>
</manifest>
</android>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules>
<module platform="iphone">dk.napp.social</module>
<module platform="android">analytics.google</module>
<module platform="iphone">analytics.google</module>
</modules>
<deployment-targets>
<target device="iphone">true</target>
<target device="ipad">true</target>
<target device="android">true</target>
<target device="blackberry">false</target>
<target device="mobileweb">false</target>
<target device="tizen">false</target>
</deployment-targets>
<sdk-version>3.4.0.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>