-
Notifications
You must be signed in to change notification settings - Fork 3
/
tiapp.xml
73 lines (71 loc) · 2.71 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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app
xmlns:ti="http://ti.appcelerator.org">
<id>de.ncn.abifestival</id>
<name>Abifestival</name>
<version>6.0.0.0</version>
<publisher>Hans Knoechel</publisher>
<url>http://abifestival.de</url>
<description/>
<copyright>Copyright (c) 2017-present by Hans Knoechel</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>false</analytics>
<guid>00000000-0000-0000-0000-000000000000</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="run-on-main-thread" type="bool">true</property>
<ios>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<use-app-thinning>false</use-app-thinning>
<default-background-color>#E7E7E7</default-background-color>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>
<key>UIApplicationShortcutItems</key>
<array>
<dict>
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeFavorite</string>
<key>UIApplicationShortcutItemTitle</key>
<string>Bands</string>
<key>UIApplicationShortcutItemType</key>
<string>bands</string>
</dict>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:installLocation="preferExternal" android:versionCode="24" android:versionName="6.0.0" package="de.ncn.abifestival">
<application android:screenOrientation="portrait" android:theme="@style/abifestival" />
</manifest>
</android>
<modules>
<module platform="iphone">ti.reviewdialog</module>
<module platform="iphone">com.pushwoosh.module</module>
<module platform="android">com.pushwoosh.module</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
</deployment-targets>
<!-- Custom SDK to support https://github.com/appcelerator/titanium_mobile/pull/8832 before 6.2.0 -->
<sdk-version>6.1.1</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>