forked from google/iosched
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
169 lines (142 loc) · 7.22 KB
/
gradle.properties
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
#
# Properties for the build which can be overridden locally.
#
# This allows build keys to be set where the app is being built in
# a gradle.properties override. See;
#
# http://www.gradle.org/docs/current/userguide/tutorial_this_and_that.html#sec:gradle_properties_and_system_properties
#
# for more information on the overriding system.
#
###############################################################################
# App variables.
###############################################################################
# If versions end in odd numbers they are development builds, even versions are release candidates.
# The AndroidManifest.xml must also be updated currently.
appVersionCode = 430
appVersionName = 4.3.0d
# Using these variables to sync dependency version numbers across sub-projects.
android_support_lib_version = 23.4.0
google_play_services_client_library_version = 8.4.0
# The store file location is relative to the module base, and so needs to go
# up one level of the directory hierarchy to get to the project root.
iosched14_android_debugkey_storefile = ../android/debug.keystore
iosched14_android_debugkey_storePassword = android
iosched14_android_debugkey_keyAlias = androiddebugkey
iosched14_android_debugkey_keyPassword = android
iosched14_android_releasekey_storefile = ../android/debug.keystore
iosched14_android_releasekey_storePassword = android
iosched14_android_releasekey_keyAlias = androiddebugkey
iosched14_android_releasekey_keyPassword = android
###############################################################################
# Prod/Staging/Test/Dev Environment Variables.
###############################################################################
# API manifest URLs. These URLs provide the data files to load to download data for the app.
# When data needs to change the underlying data file is published as a new revision and the manifest
# is updated with the new file name.
staging_api_manifest_endpoint = https://storage.googleapis.com/io2016-bucket-dev/manifest_v1.json
production_api_manifest_endpoint = http://storage.googleapis.com/io2016-festivus/manifest_v1.json
# GCM server endpoints to checkin with.
staging_gcm_server_endpoint = https://io2016-dev.appspot.com/gcm
production_gcm_server_endpoint = https://io2016-prod.appspot.com/gcm
# Website hostname
staging_website_host_name = googleio-staging.appspot.com
production_website_host_name = events.google.com
#API key for GCM
## TODO: Supply GCM API key and sender ID for your project
gcm_api_key = UNDEFINED
gcm_sender_id = UNDEFINED
# Used for generic API method calls to Google services.
## TODO: Supply Google API key and sender ID for your project
oauth2_creds_api_key = UNDEFINED
## TODO: Supply YouTube API key and sender ID for your project
youtube_api_key = UNDEFINED
## TODO: Supply Maps API key for your project, note that the key depends on your signing ceriticate
#Maps API key for the release key store
maps_api_key_releasestore = UNDEFINED
# Maps API key for the debug key store
maps_api_key_debugstore = UNDEFINED
metadata_url = http://url-caster.appspot.com/resolve-scan
# Feedback API
## TODO: Supply Feedback API endpoint and implement FeedbackApiHelper
feedback_api_endpoint = UNDEFINED
###############################################################################
# IO16-specific values.
###############################################################################
conf_version = io2016
# Access Credentials for Wifi at Moscone.
wifi_ssid = IO2016
wifi_passphrase = iofestival
keynote_session_id = UNDEFINED
# Conference hashtag.
conference_hashtag = #io16
# Patterns that, when absent from a hashtag, will trigger the addition of the
# CONFERENCE_HASHTAG on sharing snippets. Ex: "#Android" will be shared as "#io15 #Android",
# but "#iohunt" won't be modified.
conference_hashtag_prefix = #io
# Website details.
web_url_schedule_path = /io2016/schedule
# Hard-coded time for displaying the "#io15 request" panel on the Social activity. We only display
# this panel a few days before the start of the conference.
show_io_request_social_panel_time = 2016-05-14T15:00:00-07:00
# Hard-coded conference dates. This is hardcoded here instead of extracted from the conference
# data to avoid the Schedule UI breaking if some session is incorrectly set to a wrong date.
preconference_day_start = 2016-05-17T07:00:00-07:00
preconference_day_end = 2016-05-17T19:00:00-07:00
conference_day1_start = 2016-05-18T07:00:00-07:00
conference_day1_end = 2016-05-18T22:00:00-07:00
conference_day2_start = 2016-05-19T08:00:00-07:00
conference_day2_end = 2016-05-19T22:00:00-07:00
conference_day3_start = 2016-05-20T08:00:00-07:00
conference_day3_end = 2016-05-20T16:00:00-07:00
inperson_timezone = America/Los_Angeles
bootstrap_data_timestamp = Sun, 10 Apr 2016 00:01:03 GMT
###############################################################################
# Test parameter values.
###############################################################################
test_youtube_live_url= https://www.youtube.com/watch?v=iGTIK_8ydoI
###############################################################################
# Firebase values.
# During development, if the the Firebase db urls are meant to stay hidden, they should be defined
# in a separate gradle.properties file in the gradle directory referenced to by the GRADLE_USER_HOME
# path variable. See https://docs.gradle.org/current/userguide/build_environment.html for details.
# Once this is done, the values from that file will replace variables defined here.
###############################################################################
iosched_firebase_debug_db1 = UNDEFINED
iosched_firebase_debug_db2 = UNDEFINED
iosched_firebase_debug_db3 = UNDEFINED
iosched_firebase_prod_db1 = UNDEFINED
iosched_firebase_prod_db2 = UNDEFINED
iosched_firebase_prod_db3 = UNDEFINED
iosched_firebase_prod_db4 = UNDEFINED
iosched_firebase_prod_db5 = UNDEFINED
iosched_firebase_prod_db6 = UNDEFINED
iosched_firebase_prod_db7 = UNDEFINED
iosched_firebase_prod_db8 = UNDEFINED
iosched_firebase_prod_db9 = UNDEFINED
iosched_firebase_prod_db10 = UNDEFINED
###############################################################################
# Map values.
###############################################################################
# Location of the venue. The large venue marker is displayed at this location.
map_venuemarker = 37.426360f, -122.079552f
# Two points that describe the area of the venue. Determines if the venue is currently visible.
map_area_nw = 37.423205, -122.081757
map_area_se = 37.428479, -122.078109
# Initial camera configuration when the map is displayed.
map_defaultcamera_bearing = 334.04f
map_defaultcamera_target = 37.42574957397063f, -122.0797488838434f
map_defaultcamera_zoom = 17.7f
map_defaultcamera_tilt = 0f
# Tiles and markers are only rendered below this zoom level
map_maxrendered_zoom = 16f
# Zoom level to use when camera is programmatically centered on a marker
map_venuecamera_zoom = 17.7f
# Tile coordinates that map the floor plan SVG file to world coordinates.
# See http://stackoverflow.com/questions/21167584/google-io-2013-app-mystery-values
# North-West point.
map_floorplan_nw = 41.185890133333345f, 99.26028878054545f
# North-East point.
map_floorplan_ne = 41.188904099707f, 99.26028878054545f
# South-East point.
map_floorplan_se = 41.188904099707f, 99.26489700767203f