-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtiapp-default.xml
202 lines (193 loc) · 10.2 KB
/
tiapp-default.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2016 Liferay, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE.txt-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<ti:app
xmlns:ti="http://ti.appcelerator.org">
<id>com.company.app</id>
<name>My App Name</name>
<version>1.0.0</version>
<publisher>My Company, Inc.</publisher>
<url>http://mycompanywebsite.com</url>
<description>A Description of My App</description>
<copyright>2016 by My Company, Inc.</copyright>
<icon>appicon.png</icon>
<persistent-wifi>false</persistent-wifi>
<prerendered-icon>true</prerendered-icon>
<statusbar-style>default</statusbar-style>
<statusbar-hidden>true</statusbar-hidden>
<fullscreen>true</fullscreen>
<navbar-hidden>true</navbar-hidden>
<analytics>false</analytics>
<guid>DD66C9A1-0D70-4F9B-A414-C244F4DFE40F</guid>
<property name="ti.ui.defaultunit">dip</property>
<property name="ti.deploytype">production</property>
<!-- workaround for 2373 -->
<property name="ti.android.bug2373.finishfalseroot" type="bool">true</property>
<!-- The facebook app ID - required for posting to Facebook -->
<property name="ti.facebook.appid">my-company-facebook-app-id</property>
<property name="liferay.gcm.senderid">my-gcm-sender-id</property>
<!-- Twitter OAuth credentials -->
<property name="liferay.twitter.consumerKey">my-twitter-consumerkey</property>
<property name="liferay.twitter.consumerSecret">my-twitter-consumer-secret</property>
<!-- LinkedIn OAuth credentials -->
<property name="liferay.linkedin.consumerKey">my-linkedin-consumerkey</property>
<property name="liferay.linkedin.consumerSecret">my-linkedin-consumer-secret</property>
<!-- XING OAuth credentials -->
<property name="liferay.xing.consumerKey">my-xing-consumerkey</property>
<property name="liferay.xing.consumerSecret">my-xing-consumer-secret</property>
<!-- JSON WS shared secret for signing API calls -->
<property name="liferay.json_shared_secret">my-super-secret-salty-word</property>
<!-- flickr credentials -->
<property name="liferay.flickr.sets_baseurl">http://flickr.com/photos/my-company</property>
<property name="liferay.flickr.api_key">my-flickr-api-key</property>
<property name="liferay.flickr.auth_token">my-flickr-auth-token</property>
<property name="liferay.flickr.mini_token">my-flickr-mini-token</property>
<property name="liferay.flickr.shared_secret">my-flickr-shared-secret</property>
<!-- google API key -->
<property name="liferay.google.apikey">my-google-url-shortener-api-key</property>
<property name="liferay.regular.font">Helvetica</property>
<property name="liferay.light.font">Helvetica</property>
<property name="liferay.default_event_url">http://mycompanywebsite.com</property>
<property name="liferay.default_event_hashtag">#companyhashtag</property>
<property name="liferay.default_event_logo_url">http://mycompany.com/logo.png</property>
<ios>
<min-ios-ver>4.0</min-ios-ver>
<plist>
<dict>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
<string>bluetooth-central</string>
</array>
</dict>
<dict>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>NSLocationUsageDescription</key>
<string>
This app requests your location to determine the closest event to you, and for generating dynamic iBeacon notifications.
</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>
This app requests your location to determine the closest event to you, and for generating dynamic iBeacon notifications.
</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>
This app requests your location to determine the closest event to you, and for generating dynamic iBeacon notifications.
</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<!-- Application ID same as the id value in the tiapp.xml file -->
<string>com.company.app</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- Prefix the Facebook App ID with 'fb' -->
<string>facebook.appid</string>
</array>
</dict>
</array>
<key>FacebookAppID</key>
<!-- Facebook App ID -->
<string>facebook.appid</string>
<key>FacebookDisplayName</key>
<!-- Facebook App Name from developer.facebook.com -->
<string>My Facebook App Name</string>
</dict>
</plist>
</ios>
<android
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:installLocation="auto" android:versionCode="1" android:versionName="1.0.0" package="com.company.app">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
<uses-feature android:name="android.hardware.screen.landscape" android:required="false"/>
<uses-feature android:name="android.hardware.wifi" android:required="false"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<application android:debuggable="false" android:icon="@drawable/appicon" android:label="Liferay Events"
android:theme="@style/Theme.NoActionBar" android:name="LiferayEventsApplication" android:largeHeap="true">
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:screenOrientation="portrait"
android:label="Liferay Events" android:name=".LiferayEventsActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:configChanges="keyboardHidden|orientation" android:name="ti.modules.titanium.media.TiCameraActivity"/>
<activity android:configChanges="keyboardHidden|orientation" android:launchMode="singleTask"
android:name="ti.modules.titanium.map.TiMapActivity"/>
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiActivity"/>
<activity android:configChanges="keyboardHidden|orientation|screenSize"
android:name="org.appcelerator.titanium.TiTranslucentActivity"/>
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiModalActivity"/>
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="ti.modules.titanium.ui.TiTabActivity"/>
<activity android:name="ti.modules.titanium.ui.android.TiPreferencesActivity"/>
<activity android:label="@string/app_name"
android:name="com.facebook.LoginActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
<uses-library android:name="com.google.android.maps"/>
<service android:enabled="true" android:exported="true" android:isolatedProcess="false" android:label="iBeacon"
android:name="com.radiusnetworks.ibeacon.service.IBeaconService"/>
<service android:enabled="true" android:name="com.radiusnetworks.ibeacon.IBeaconIntentProcessor">
<meta-data android:name="background" android:value="true"/>
<intent-filter android:priority="1">
<action android:name="com.liferay.events.global.mobile.DID_RANGING"/>
<action android:name="com.liferay.events.global.mobile.DID_MONITORING"/>
</intent-filter>
</service>
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="my-google-android-maps-v2-apikey"/>
</application>
</manifest>
</android>
<modules>
<module platform="android">nl.vanvianen.android.gcm</module>
<module platform="android">ti.imagefactory</module>
<module platform="iphone">ti.imagefactory</module>
<module platform="android">ti.map</module>
<module platform="iphone">ti.map</module>
<module platform="android">facebook</module>
<module platform="iphone">facebook</module>
<module platform="iphone">org.beuckman.tibeacons</module>
<module platform="android">com.liferay.beacons</module>
<module platform="android">bencoding.android.tools</module>
<module platform="iphone" version="1.8">bencoding.securely</module>
<module platform="android" version="1.7">bencoding.securely</module>
<module platform="iphone" version="0.7">com.mfogg.squarecamera</module>
<module platform="android">de.evopark.tiqr</module>
<module platform="commonjs" version="0.8.1">liferay-connector</module>
<module platform="iphone">ti.mediapicker</module>
<module platform="android">ti.mediapicker</module>
<module platform="android">com.liferay.dragger</module>
</modules>
<deployment-targets>
<target device="blackberry">false</target>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
</deployment-targets>
<sdk-version>4.0.0.RC4</sdk-version>
<property name="liferay.version.string">Version: 1.0.0 Build: Monday, March 09, 2015</property>
</ti:app>