-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiapp.xml
114 lines (114 loc) · 5.15 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
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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.nielio.titaniumExample</id>
<name>titaniumExample</name>
<version>1.0</version>
<publisher>paulbauer</publisher>
<url/>
<description/>
<copyright>2016 by paulbauer</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>7d565397-706e-4323-9111-61ec169328de</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<plist>
<dict>
<!-- Define static shortcuts here -->
<key>UIApplicationShortcutItems</key>
<array>
<dict>
<!-- System-provided icon -->
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeAdd</string>
<!--
Custom Template Icon
FIXME: You need find the corresponding under in build/iphone/Assets.xcassets
<key>UIApplicationShortcutItemIconFile</key><string>6ce9fb071294c440a20ff73b7c09fef2082c2206</string>
-->
<!--
Title
Can be a name in an i18n/<lang>/app.xml file
-->
<key>UIApplicationShortcutItemTitle</key>
<string>Shortcut 2</string>
<!-- Type used to identify the action in the event listener -->
<key>UIApplicationShortcutItemType</key>
<string>com.orthodoxtoolbox.parentsprayerbook.add</string>
<!-- Custom dictionary (object) to receive in the event -->
<key>UIApplicationShortcutItemUserInfo</key>
<dict>
<key>myCustomKey</key>
<string>myCustomValue</string>
</dict>
</dict>
<dict>
<!-- System-provided icon -->
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeFavorite</string>
<!--
Custom Template Icon
FIXME: You need find the corresponding under in build/iphone/Assets.xcassets
<key>UIApplicationShortcutItemIconFile</key><string>6ce9fb071294c440a20ff73b7c09fef2082c2206</string>
-->
<!--
Title
Can be a name in an i18n/<lang>/app.xml file
-->
<key>UIApplicationShortcutItemTitle</key>
<string>Shortcut 1</string>
<!-- Type used to identify the action in the event listener -->
<key>UIApplicationShortcutItemType</key>
<string>com.orthodoxtoolbox.parentsprayerbook.rule</string>
<!-- Custom dictionary (object) to receive in the event -->
<key>UIApplicationShortcutItemUserInfo</key>
<dict>
<key>myCustomKey</key>
<string>myCustomValue</string>
</dict>
</dict>
</array>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</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"/>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules/>
<deployment-targets>
<target device="android">false</target>
<target device="ipad">false</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
<target device="windows">false</target>
</deployment-targets>
<sdk-version>5.1.1.GA</sdk-version>
<property name="appc-app-id" type="string">5699bce0c2e0ca751300df0e</property>
</ti:app>