blob: 42d2c6253565acadd4f4b4d26e37e4b4c328c644 [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
36 // The view switched to detail mode (most relevant for quick settings tiles)
37 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 TYPE_TRANSITION_HOT_LAUNCH = 9;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wren5e334f62016-11-14 10:16:21 -050073 }
74
Chris Wren65f07fe2017-03-14 14:10:37 -040075 // Types of alerts, as bit field values
76 enum Alert {
77 // Vibrate the device.
78 ALERT_BUZZ = 1;
79
80 // Make sound through the speaker.
81 ALERT_BEEP = 2;
82
83 // Flash a notificaiton light.
84 ALERT_BLINK = 4;
85 }
86
87 // Reasons that a notification might be dismissed.
88 enum DismissReason {
89 // from android.service.notification.NotificationListenerService
90
91 // Notification was canceled by the status bar reporting a notification click
92 REASON_CLICK = 1;
93
94 // Notification was canceled by the status bar reporting a user dismissal.
95 REASON_CANCEL = 2;
96
97 // Notification was canceled by the status bar reporting a user dismiss all.
98 REASON_CANCEL_ALL = 3;
99
100 // Notification was canceled by the status bar reporting an inflation error.
101 REASON_ERROR = 4;
102
103 // Notification was canceled by the package manager modifying the package.
104 REASON_PACKAGE_CHANGED = 5;
105
106 // Notification was canceled by the owning user context being stopped.
107 REASON_USER_STOPPED = 6;
108
109 // Notification was canceled by the user banning the package.
110 REASON_PACKAGE_BANNED = 7;
111
112 // Notification was canceled by the app canceling this specific notification.
113 REASON_APP_CANCEL = 8;
114
115 //Notification was canceled by the app cancelling all its notifications.
116 REASON_APP_CANCEL_ALL = 9;
117
118 // Notification was canceled by a listener reporting a user dismissal.
119 REASON_LISTENER_CANCEL = 10;
120
121 //Notification was canceled by a listener reporting a user dismiss all.
122 REASON_LISTENER_CANCEL_ALL = 11;
123
124 // Notification was canceled because it was a member of a canceled group.
125 REASON_GROUP_SUMMARY_CANCELED = 12;
126
127 // Notification was canceled because it was an invisible member of a group.
128 REASON_GROUP_OPTIMIZATION = 13;
129
130 // Notification was canceled by the device administrator suspending the package.
131 REASON_PACKAGE_SUSPENDED = 14;
132
133 // Notification was canceled by the owning managed profile being turned off.
134 REASON_PROFILE_TURNED_OFF = 15;
135
136 // Autobundled summary notification was canceled because its group was unbundled.
137 REASON_UNAUTOBUNDLED = 16;
138
139 // Notification was canceled by the user banning the channel.
140 REASON_CHANNEL_BANNED = 17;
141
142 // Notification was snoozed.
143 REASON_SNOOZED = 18;
144
145 // Notification was canceled due to timeout.
146 REASON_TIMEOUT = 19;
147 }
148
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700149 // Subtypes of camera events for ACTION_CAMERA_EVENT
150 enum CameraEvent {
151 // A back-facing camera was used
152 CAMERA_BACK_USED = 0;
153
154 // A front-facing camera was used
155 CAMERA_FRONT_USED = 1;
156
157 // An external camera was used
158 CAMERA_EXTERNAL_USED = 2;
159 }
160
Jan Althaus786a39d2017-09-15 10:41:16 +0200161 // TextClassifier entity types.
162 enum TextClassifierEntityType {
163 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
164 TEXT_CLASSIFIER_TYPE_OTHER = 2;
165 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
166 TEXT_CLASSIFIER_TYPE_PHONE = 4;
167 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
168 TEXT_CLASSIFIER_TYPE_URL = 6;
169 }
170
Chris Wren77781d32016-01-11 14:49:26 -0500171 // Known visual elements: views or controls.
172 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500173 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500174 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500175
176 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500177 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500178
179 // OPEN: Settings > Accessibility
180 // CATEGORY: SETTINGS
181 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500182 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500183
184 // OPEN: Settings > Accessibility > Captions
185 // CATEGORY: SETTINGS
186 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500187 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500188
189 // OPEN: Settings > Accessibility > [Service]
190 // CATEGORY: SETTINGS
191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500192 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500193
194 // OPEN: Settings > Accessibility > Color correction
195 // CATEGORY: SETTINGS
196 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500197 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500198
199 // OPEN: Settings > Accessibility > Accessibility shortcut
200 // CATEGORY: SETTINGS
201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500202 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500203
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700204 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
205 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
206 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500207 // CATEGORY: SETTINGS
208 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500209 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500210
211 // OPEN: Settings > Accounts
212 // CATEGORY: SETTINGS
213 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500214 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500215
216 // OPEN: Settings > Accounts > [Single Account Sync Settings]
217 // CATEGORY: SETTINGS
218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500219 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OPEN: Settings > Accounts > Add an account
222 // CATEGORY: SETTINGS
223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500224 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500225
226 // OPEN: Settings > Accounts > [List of accounts when more than one]
227 // CATEGORY: SETTINGS
228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500229 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500230
231 // OPEN: Settings > Cellular network settings > APNs
232 // CATEGORY: SETTINGS
233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500234 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500235
236 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
237 // CATEGORY: SETTINGS
238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500239 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500240
241 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500242 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500243
244 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500245 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500246
247 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500248 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500249
250 // OPEN: Settings > Apps > Configure apps > App links > [App]
251 // CATEGORY: SETTINGS
252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500253 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500254
255 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500256 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > Internal storage > Apps storage > [App]
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OPEN: Settings > Apps > [App info]
264 // CATEGORY: SETTINGS
265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500266 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Settings > Memory > App usage > [App Memory usage]
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500274 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Memory > App usage
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > Bluetooth
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OPEN: Choose Bluetooth device (ex: when sharing)
287 // CATEGORY: SETTINGS
288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500289 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500292 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Security > Choose screen lock
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OPEN: Settings > Security > Choose screen lock > Choose your password
300 // CATEGORY: SETTINGS
301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500302 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Security > Choose screen lock > Confirm your password
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Security > Encrypt phone
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Security > Encrypt phone > Confirm
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Search results
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OPEN: Settings (Root page)
335 // CATEGORY: SETTINGS
336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500337 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500340 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Data usage
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OPEN: Settings > Date & time
348 // CATEGORY: SETTINGS
349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500350 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OPEN: Settings > Developer options
353 // CATEGORY: SETTINGS
354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500355 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > About phone
358 // CATEGORY: SETTINGS
359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500360 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > About phone > Status > IMEI information
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > Internal storage
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > About phone > Status > SIM status
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > About phone > Status
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500383 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500384
385 // OPEN: Settings > Display
386 // CATEGORY: SETTINGS
387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500388 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500389
390 // OPEN: Settings > Display > Daydream
391 // CATEGORY: SETTINGS
392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500393 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500394
395 // OPEN: Settings > Security > Screen lock > Secure start-up
396 // CATEGORY: SETTINGS
397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500398 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500399
400 // OPEN: Settings > Security > Nexus Imprint
401 // CATEGORY: SETTINGS
402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500403 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500406 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500407
408 // OPEN: Settings > Battery > History details
409 // CATEGORY: SETTINGS
410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500411 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500412
413 // OPEN: Settings > Battery > Battery saver
414 // CATEGORY: SETTINGS
415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500416 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings > Battery > [App Use details]
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Battery
424 // CATEGORY: SETTINGS
425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500426 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: Settings > Home
429 // CATEGORY: SETTINGS
430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500431 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 // OPEN: Settings > Security > SIM card lock settings
434 // CATEGORY: SETTINGS
435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500436 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Language & input
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OPEN: Settings > Language & input > Physical keyboard
444 // CATEGORY: SETTINGS
445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500446 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Language & input > Spell checker
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500454 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > Language & input > Personal dictionary
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OPEN: Settings > Language & input > Add word
462 // CATEGORY: SETTINGS
463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500464 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OPEN: Settings > Location
467 // CATEGORY: SETTINGS
468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500469 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Location > Location mode
472 // CATEGORY: SETTINGS
473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500474 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Apps
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > Backup & reset > Factory data reset
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OPEN: Settings > Data usage > Network restrictions
492 // CATEGORY: SETTINGS
493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500494 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500495
496 // OPEN: Settings > More > Android Beam
497 // CATEGORY: SETTINGS
498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500499 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Tap & pay
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Sound & notification
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Sound & notification > App notifications > [App]
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Sound & notification > Other sounds
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500522 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500523
524 // OPEN: Settings Widget > Notification log
525 // CATEGORY: SETTINGS
526 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500527 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500528
529 // OPEN: Settings > Sound & notification > Do not disturb
530 // CATEGORY: SETTINGS
531 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500532 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500535 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: Print job notification > Print job settings
538 // CATEGORY: SETTINGS
539 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500540 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500541
542 // OPEN: Settings > Printing > [Print Service]
543 // CATEGORY: SETTINGS
544 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500545 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 // OPEN: Settings > Printing
548 // CATEGORY: SETTINGS
549 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500550 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500551
552 // OPEN: Settings > Backup & reset
553 // CATEGORY: SETTINGS
554 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500555 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500556
557 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500558 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 // OPEN: Settings > Backup & reset > Network settings reset
561 // CATEGORY: SETTINGS
562 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500563 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500564
565 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
566 // CATEGORY: SETTINGS
567 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500568 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OPEN: Settings > Developer Options > Running Services
571 // CATEGORY: SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > Security > Screen pinning
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Settings > Security
581 // CATEGORY: SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: Settings > SIM cards
586 // CATEGORY: SETTINGS
587 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500588 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500589
590 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500591 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: Settings > More > Tethering & portable hotspot
594 // CATEGORY: SETTINGS
595 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500596 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500597
598 // OPEN: Settings > Security > Trust agents
599 // CATEGORY: SETTINGS
600 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500601 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings > Security > Trusted credentials
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
609 // CATEGORY: SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: Settings > Language & input > Text-to-speech output
614 // CATEGORY: SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: Settings > Security > Apps with usage access
619 // CATEGORY: SETTINGS
620 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500621 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: Settings > Users
624 // CATEGORY: SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OPEN: Settings > Users > [Restricted profile app & content access]
629 // CATEGORY: SETTINGS
630 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500631 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500632
633 // OPEN: Settings > Users > [User settings]
634 // CATEGORY: SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500639 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500640
641 // OPEN: Settings > More > VPN
642 // CATEGORY: SETTINGS
643 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500644 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500645
646 // OPEN: Settings > Display > Choose wallpaper from
647 // CATEGORY: SETTINGS
648 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500649 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500650
651 // OPEN: Settings > Display > Cast
652 // CATEGORY: SETTINGS
653 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500654 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500655
656 // OPEN: Settings > Wi-Fi
657 // CATEGORY: SETTINGS
658 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500659 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
662 // CATEGORY: SETTINGS
663 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500664 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500665
666 // OPEN: Settings > More > Wi-Fi Calling
667 // CATEGORY: SETTINGS
668 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500669 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500670
671 // OPEN: Settings > Wi-Fi > Saved networks
672 // CATEGORY: SETTINGS
673 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500674 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500675
676 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500677 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500678
679 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500680 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500681
682 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
683 // CATEGORY: SETTINGS
684 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500685 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500686
687 // OPEN: Settings > More
688 // CATEGORY: SETTINGS
689 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500690 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500691
692 // OPEN: Quick Settings Panel
693 // CATEGORY: QUICK_SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // OPEN: QS Airplane mode tile shown
698 // ACTION: QS Airplane mode tile tapped
699 // SUBTYPE: 0 is off, 1 is on
700 // CATEGORY: QUICK_SETTINGS
701 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500702 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500703
704 // OPEN: QS Bluetooth tile shown
705 // ACTION: QS Bluetooth tile tapped
706 // SUBTYPE: 0 is off, 1 is on
707 // CATEGORY: QUICK_SETTINGS
708 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500709 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500710
711 // OPEN: QS Cast tile shown
712 // ACTION: QS Cast tile tapped
713 // CATEGORY: QUICK_SETTINGS
714 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500715 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: QS Cellular tile shown
718 // ACTION: QS Cellular tile tapped
719 // CATEGORY: QUICK_SETTINGS
720 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500721 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500722
723 // OPEN: QS Color inversion tile shown
724 // ACTION: QS Color inversion tile tapped
725 // SUBTYPE: 0 is off, 1 is on
726 // CATEGORY: QUICK_SETTINGS
727 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500728 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500729
730 // OPEN: QS Cellular tile > Cellular detail panel
731 // CATEGORY: QUICK_SETTINGS
732 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500733 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500734
735 // OPEN: QS Do not disturb tile shown
736 // ACTION: QS Do not disturb tile tapped
737 // SUBTYPE: 0 is off, 1 is on
738 // CATEGORY: QUICK_SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS Flashlight tile shown
743 // ACTION: QS Flashlight tile tapped
744 // SUBTYPE: 0 is off, 1 is on
745 // CATEGORY: QUICK_SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS Hotspot tile shown
750 // ACTION: QS Hotspot tile tapped
751 // SUBTYPE: 0 is off, 1 is on
752 // CATEGORY: QUICK_SETTINGS
753 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500754 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: QS 3P tile shown
757 // ACTION: QS 3P tile tapped
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Location tile shown
763 // ACTION: QS Location tile tapped
764 // SUBTYPE: 0 is off, 1 is on
765 // CATEGORY: QUICK_SETTINGS
766 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500767 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500768
769 // OPEN: QS Rotation tile shown
770 // ACTION: QS Rotation tile tapped
771 // SUBTYPE: 0 is off, 1 is on
772 // CATEGORY: QUICK_SETTINGS
773 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500774 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500775
776 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500777 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // OPEN: QS User list panel
780 // CATEGORY: QUICK_SETTINGS
781 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500782 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500783
784 // OPEN: QS WiFi tile shown
785 // ACTION: QS WiFi tile tapped
786 // SUBTYPE: 0 is off, 1 is on
787 // CATEGORY: QUICK_SETTINGS
788 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500789 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500790
791 // OPEN: Notification Panel (including lockscreen)
792 // CATEGORY: NOTIFICATION
793 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500794 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OPEN: Notification in panel became visible.
797 // PACKAGE: App that posted the notification.
798 // ACTION: Notification is tapped.
799 // PACKAGE: App that posted the notification
800 // DETAIL: Notification is expanded by user.
801 // PACKAGE: App that posted the notification
802 // DISMISS: Notification is dismissed.
803 // PACKAGE: App that posted the notification
804 // SUBTYPE: Dismiss reason from NotificationManagerService.java
805 // CATEGORY: NOTIFICATION
806 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500807 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // ACTION: User tapped notification action
810 // PACKAGE: App that posted the notification
811 // SUBTYPE: Index of action on notification
812 // CATEGORY: NOTIFICATION
813 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500814 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500815
816 // OPEN: Settings > Apps > Configure apps > App permissions
817 // CATEGORY: SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OPEN: Settings > Location > Scanning
822 // CATEGORY: SETTINGS
823 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500824 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500825
826 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500827 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // OPEN: Settings > Sound & notification > App notifications
830 // CATEGORY: SETTINGS
831 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500832 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500833
834 // ACTION: Settings > Wi-Fi > Overflow > Add Network
835 // CATEGORY: SETTINGS
836 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500837 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500838
839 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700840 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500841 // CATEGORY: SETTINGS
842 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500843 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500844
845 // ACTION: Settings > Wi-Fi > Overflow > Refresh
846 // CATEGORY: SETTINGS
847 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500848 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500849
850 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
851 // CATEGORY: SETTINGS
852 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500853 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500854
855 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700856 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500857 // CATEGORY: SETTINGS
858 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // ACTION: Settings > Wi-Fi > Toggle on
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500867 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // OPEN: Settings > Sound & notification > DND > Priority only allows
870 // CATEGORY: SETTINGS
871 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500872 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // OPEN: Settings > Sound & notification > DND > Automatic rules
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // OPEN: Settings > Apps > Configure apps > App links
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // OPEN: Settings > Sound & notification > DND > [Time based rule]
885 // CATEGORY: SETTINGS
886 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500887 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500888
889 // OPEN: Settings > Sound & notification > DND > [External rule]
890 // CATEGORY: SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // OPEN: Settings > Sound & notification > DND > [Event rule]
895 // CATEGORY: SETTINGS
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // ACTION: App notification settings > Block Notifications
900 // CATEGORY: SETTINGS
901 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500902 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500903
904 // ACTION: Notification shade > Dismiss all button
905 // CATEGORY: NOTIFICATION
906 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500907 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500908
909 // OPEN: QS Do Not Disturb detail panel
910 // CATEGORY: QUICK_SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: QS Bluetooth detail panel
915 // CATEGORY: QUICK_SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // OPEN: QS Cast detail panel
920 // CATEGORY: QUICK_SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: QS Wi-Fi detail panel
925 // CATEGORY: QUICK_SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
930 // SUBTYPE: 0 is off, 1 is on
931 // CATEGORY: QUICK_SETTINGS
932 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500933 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500934
935 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
936 // SUBTYPE: 0 is off, 1 is on
937 // CATEGORY: QUICK_SETTINGS
938 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500939 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500940
941 // ACTION: QS Cellular detail panel > Cellular toggle
942 // SUBTYPE: 0 is off, 1 is on
943 // CATEGORY: QUICK_SETTINGS
944 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500945 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500946
947 // ACTION: QS User list panel > Select different user
948 // CATEGORY: QUICK_SETTINGS
949 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500950 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500951
952 // ACTION: QS Cast detail panel > Select cast device
953 // CATEGORY: QUICK_SETTINGS
954 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500955 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500956
957 // ACTION: QS Cast detail panel > Disconnect cast device
958 // CATEGORY: QUICK_SETTINGS
959 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500960 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: Settings > Bluetooth > Toggle
963 // SUBTYPE: 0 is off, 1 is on
964 // CATEGORY: SETTINGS
965 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500966 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500967
968 // ACTION: Settings > Bluetooth > Overflow > Refresh
969 // CATEGORY: SETTINGS
970 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500971 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500972
973 // ACTION: Settings > Bluetooth > Overflow > Rename this device
974 // CATEGORY: SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // ACTION: Settings > Bluetooth > Overflow > Show received files
979 // CATEGORY: SETTINGS
980 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500981 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // ACTION: QS DND details panel > Increase / Decrease exit time
984 // SUBTYPE: true is increase, false is decrease
985 // CATEGORY: QUICK_SETTINGS
986 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500987 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500988
989 // ACTION: QS DND details panel > [Exit condition]
990 // CATEGORY: QUICK_SETTINGS
991 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500992 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: QS DND details panel > [DND mode]
995 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
996 // CATEGORY: QUICK_SETTINGS
997 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500998 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500999
1000 // ACTION: QS DND detail panel > DND toggle
1001 // SUBTYPE: 0 is off, 1 is on
1002 // CATEGORY: QUICK_SETTINGS
1003 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001004 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // ACTION: DND Settings > Priority only allows > Reminder toggle
1007 // SUBTYPE: 0 is off, 1 is on
1008 // CATEGORY: SETTINGS
1009 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001010 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001011
1012 // ACTION: DND Settings > Priority only allows > Event toggle
1013 // SUBTYPE: 0 is off, 1 is on
1014 // CATEGORY: SETTINGS
1015 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: DND Settings > Priority only allows > Messages
1019 // SUBTYPE: 0 is off, 1 is on
1020 // CATEGORY: SETTINGS
1021 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001022 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001023
1024 // ACTION: DND Settings > Priority only allows > Calls
1025 // SUBTYPE: 0 is off, 1 is on
1026 // CATEGORY: SETTINGS
1027 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001028 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001029
1030 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1031 // SUBTYPE: 0 is off, 1 is on
1032 // CATEGORY: SETTINGS
1033 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001034 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001035
1036 // ACTION: DND Settings > Automatic rules > Add rule
1037 // CATEGORY: SETTINGS
1038 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001039 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001040
1041 // ACTION: DND Settings > Automatic rules > Add rule > OK
1042 // CATEGORY: SETTINGS
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1047 // CATEGORY: SETTINGS
1048 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001049 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1052 // CATEGORY: SETTINGS
1053 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001054 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1057 // SUBTYPE: 0 is off, 1 is on
1058 // CATEGORY: SETTINGS
1059 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001060 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001061
1062 // ACTION: Settings > More > Airplane mode toggle
1063 // SUBTYPE: 0 is off, 1 is on
1064 // CATEGORY: SETTINGS
1065 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001066 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001067
1068 // ACTION: Settings > Data usage > Cellular data toggle
1069 // SUBTYPE: 0 is off, 1 is on
1070 // CATEGORY: SETTINGS
1071 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001072 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001073
1074 // OPEN: Settings > Sound & notification > Notification access
1075 // CATEGORY: SETTINGS
1076 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001077 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001078
1079 // OPEN: Settings > Sound & notification > Do Not Disturb access
1080 // CATEGORY: SETTINGS
1081 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001082 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001083
1084 // OPEN: Settings > Apps > Configure apps > Default Apps
1085 // CATEGORY: SETTINGS
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // OPEN: Settings > Internal storage > Apps storage
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // OPEN: Settings > Security > Usage access
1095 // CATEGORY: SETTINGS
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // OPEN: Settings > Battery > Battery optimization
1100 // CATEGORY: SETTINGS
1101 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001102 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001103
1104 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001105 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Lockscreen > Unlock gesture
1108 // CATEGORY: GLOBAL_SYSTEM_UI
1109 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: Lockscreen > Pull shade open
1113 // CATEGORY: GLOBAL_SYSTEM_UI
1114 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001115 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001116
1117 // ACTION: Lockscreen > Tap on lock, shows hint
1118 // CATEGORY: GLOBAL_SYSTEM_UI
1119 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001120 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001121
1122 // ACTION: Lockscreen > Camera
1123 // CATEGORY: GLOBAL_SYSTEM_UI
1124 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001125 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // ACTION: Lockscreen > Dialer
1128 // CATEGORY: GLOBAL_SYSTEM_UI
1129 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001130 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001131
1132 // ACTION: Lockscreen > Tap on lock, locks phone
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Lockscreen > Tap on notification, false touch rejection
1138 // CATEGORY: GLOBAL_SYSTEM_UI
1139 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: Lockscreen > Swipe down to open quick settings
1143 // CATEGORY: GLOBAL_SYSTEM_UI
1144 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001145 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001146
1147 // ACTION: Swipe down to open quick settings when unlocked
1148 // CATEGORY: GLOBAL_SYSTEM_UI
1149 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001150 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // ACTION: Notification shade > Tap to open quick settings
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // OPEN: Lockscreen
1158 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1159 // CATEGORY: GLOBAL_SYSTEM_UI
1160 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001161 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001162
1163 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1164 // CATEGORY: GLOBAL_SYSTEM_UI
1165 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001166 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001167
1168 // OPEN: Screen turned on
1169 // SUBTYPE: 2 is user action
1170 // CATEGORY: GLOBAL_SYSTEM_UI
1171 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001172 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // OPEN: Notification caused sound, vibration, and/or LED blink
1175 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1176 // CATEGORY: NOTIFICATION
1177 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001178 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // ACTION: Lockscreen > Emergency Call button
1181 // CATEGORY: GLOBAL_SYSTEM_UI
1182 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001183 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001184
1185 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1186 // CATEGORY: SETTINGS
1187 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001188 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001189
1190 // OPEN: Settings > Memory
1191 // CATEGORY: SETTINGS
1192 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001193 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001194
1195 // ACTION: Settings > Display > When device is rotated
1196 // CATEGORY: SETTINGS
1197 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001198 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // ACTION: Long press on notification to view controls
1201 // CATEGORY: NOTIFICATION
1202 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001203 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // ACTION: Notificatoin controls > Info button
1206 // CATEGORY: NOTIFICATION
1207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001208 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // ACTION: Notification controls > Settings button
1211 // CATEGORY: NOTIFICATION
1212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001213 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001214
1215 // OPEN: Volume Dialog (with hardware buttons)
1216 // CATEGORY: GLOBAL_SYSTEM_UI
1217 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001218 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1221 // CATEGORY: GLOBAL_SYSTEM_UI
1222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001223 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Volume dialog > Adjust volume slider
1226 // SUBTYPE: volume level (0-7)
1227 // CATEGORY: GLOBAL_SYSTEM_UI
1228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001229 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // ACTION: Volume dialog > Select non-active stream
1232 // SUBTYPE: stream (defined in AudioSystem.java)
1233 // CATEGORY: GLOBAL_SYSTEM_UI
1234 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001235 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001236
1237 // ACTION: Adjust volume with hardware key
1238 // SUBTYPE: volume level (0-7)
1239 // CATEGORY: GLOBAL_SYSTEM_UI
1240 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001241 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001242
1243 // ACTION: Volume dialog > Mute a stream by tapping icon
1244 // SUBTYPE: mute is 1, audible is 2
1245 // CATEGORY: GLOBAL_SYSTEM_UI
1246 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001247 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001248
1249 // ACTION: Volume dialog > Change ringer mode by tapping icon
1250 // SUBTYPE: 2 is audible, 3 is vibrate
1251 // CATEGORY: GLOBAL_SYSTEM_UI
1252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001253 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // ACTION: Chooser shown (share target, file open, etc.)
1256 // CATEGORY: GLOBAL_SYSTEM_UI
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // ACTION: Chooser > User taps an app target
1261 // SUBTYPE: Index of target
1262 // CATEGORY: GLOBAL_SYSTEM_UI
1263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001264 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001265
1266 // ACTION: Chooser > User taps a service target
1267 // SUBTYPE: Index of target
1268 // CATEGORY: GLOBAL_SYSTEM_UI
1269 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001270 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001271
1272 // ACTION: Chooser > User taps a standard target
1273 // SUBTYPE: Index of target
1274 // CATEGORY: GLOBAL_SYSTEM_UI
1275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001276 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001277
1278 // ACTION: QS Brightness Slider (with auto brightness disabled)
1279 // SUBTYPE: slider value
1280 // CATEGORY: QUICK_SETTINGS
1281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001282 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001283
1284 // ACTION: QS Brightness Slider (with auto brightness enabled)
1285 // SUBTYPE: slider value
1286 // CATEGORY: QUICK_SETTINGS
1287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001288 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001289
1290 // OPEN: Settings > Display > Brightness Slider
1291 // CATEGORY: SETTINGS
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001294
Christine Franks47175c32017-03-14 10:21:25 -07001295 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001296 // CATEGORY: SETTINGS
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // OPEN: Display has entered dream mode
1301 // CATEGORY: GLOBAL_SYSTEM_UI
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // OPEN: Display has entered ambient notification mode
1306 // CATEGORY: GLOBAL_SYSTEM_UI
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // OPEN: Overview
1311 // CATEGORY: GLOBAL_SYSTEM_UI
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // OPEN: Settings > About phone > Legal information
1316 // CATEGORY: SETTINGS
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // OPEN: Settings > Search > Perform search
1321 // CATEGORY: SETTINGS
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // OPEN: Settings > System UI Tuner
1326 // CATEGORY: SETTINGS
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // OPEN: Settings > System UI Tuner > Quick Settings
1331 // CATEGORY: SETTINGS
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: Settings > System UI Tuner > Demo mode
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1341 // PACKAGE: Tile
1342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1347 // PACKAGE: Tile
1348 // CATEGORY: SETTINGS
1349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001350 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1353 // PACKAGE: Tile
1354 // CATEGORY: SETTINGS
1355 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001356 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001357
1358 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1359 // PACKAGE: Icon
1360 // CATEGORY: SETTINGS
1361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001362 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001363
1364 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1365 // PACKAGE: Icon
1366 // CATEGORY: SETTINGS
1367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001368 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001369
1370 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1371 // SUBTYPE: false is disabled, true is enabled
1372 // CATEGORY: SETTINGS
1373 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001374 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001375
1376 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1377 // SUBTYPE: false is disabled, true is enabled
1378 // CATEGORY: SETTINGS
1379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001380 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001381
1382 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1383 // SUBTYPE: 0 is disabled, 1 is enabled
1384 // CATEGORY: SETTINGS
1385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001386 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001387
1388 // OPEN: Settings > Developer options > Inactive apps
1389 // CATEGORY: SETTINGS
1390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001391 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001392
1393 // ACTION: Long press home to bring up assistant
1394 // CATEGORY: GLOBAL_SYSTEM_UI
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // OPEN: Fingerprint Enroll > Find Sensor
1404 // CATEGORY: SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // OPEN: Fingerprint Enroll introduction
1414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Fingerprint Enroll onboarding
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Fingerprint Enroll > Let's Start!
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: Fingerprint Enroll SUW > Let's Start!
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Fingerprint Enroll SUW > Find Sensor
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Fingerprint Enroll SUW introduction
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Fingerprint Enroll SUW onboarding
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // ACTION: Add fingerprint > Enroll fingerprint
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // ACTION: Authenticate using fingerprint
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1464 // CATEGORY: SETTINGS
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1469 // CATEGORY: SETTINGS
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // ACTION: Double tap camera shortcut
1474 // CATEGORY: GLOBAL_SYSTEM_UI
1475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001476 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001477
1478 // ACTION: Double twist camera shortcut
1479 // CATEGORY: GLOBAL_SYSTEM_UI
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: QS Work Mode tile shown
1484 // ACTION: QS Work Mode tile tapped
1485 // SUBTYPE: 0 is off, 1 is on
1486 // CATEGORY: QUICK_SETTINGS
1487 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001488 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001489
1490 // OPEN: Settings > Developer Options > Background Check
1491 // CATEGORY: SETTINGS
1492 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001493 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001494
1495 // OPEN: QS Lock tile shown
1496 // ACTION: QS Lock tile tapped
1497 // SUBTYPE: 0 is off, 1 is on
1498 // CATEGORY: QUICK_SETTINGS
1499 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001500 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001501
1502 // OPEN: QS User Tile shown
1503 // CATEGORY: QUICK_SETTINGS
1504 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001505 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001506
1507 // OPEN: QS Battery tile shown
1508 // CATEGORY: QUICK_SETTINGS
1509 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001510 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001511
1512 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1513 // CATEGORY: SETTINGS
1514 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001515 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001516
1517 // ACTION: Visual interruptions > No screen interuptions toggle
1518 // SUBTYPE: 0 is off, 1 is on
1519 // CATEGORY: SETTINGS
1520 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001521 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001522
1523 // ACTION: Visual interruptions > No notification light toggle
1524 // SUBTYPE: 0 is off, 1 is on
1525 // CATEGORY: SETTINGS
1526 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001527 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001528
Julia Reynolds005c8b92017-08-24 10:35:53 -04001529 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001530 // CATEGORY: SETTINGS
1531 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001532 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001533
1534 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1535 // PACKAGE: Selected SMS app
1536 // CATEGORY: SETTINGS
1537 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001538 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001539
1540 // OPEN: QS Color modification tile shown
1541 // ACTION: QS Color modification tile tapped
1542 // SUBTYPE: 0 is off, 1 is on
1543 // CATEGORY: QUICK_SETTINGS
1544 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001545 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001546
1547 // OPEN: QS Custom tile shown
1548 // ACTION: QS Work Mode tile tapped
1549 // CATEGORY: QUICK_SETTINGS
1550 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001551 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001552
1553 // ACTION: Visual interruptions > Never turn off the screen toggle
1554 // SUBTYPE: 0 is off, 1 is on
1555 // CATEGORY: SETTINGS
1556 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001557 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001558
Chris Wren7c516842016-03-01 16:44:32 -05001559 // ACTION: Overview > Long-press task, drag to enter split-screen
1560 // CATEGORY: GLOBAL_SYSTEM_UI
1561 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001562 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: In App > Long-press Overview button to enter split-screen
1565 // CATEGORY: GLOBAL_SYSTEM_UI
1566 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001567 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1568
Chris Wren7c516842016-03-01 16:44:32 -05001569 // ACTION: In App > Swipe Overview button to enter split-screen
1570 // CATEGORY: GLOBAL_SYSTEM_UI
1571 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001572 ACTION_WINDOW_DOCK_SWIPE = 272;
1573
Chris Wren7c516842016-03-01 16:44:32 -05001574 // ACTION: Launch profile-specific app > Confirm credentials
1575 // CATEGORY: GLOBAL_SYSTEM_UI
1576 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001577 PROFILE_CHALLENGE = 273;
1578
Chris Wren7c516842016-03-01 16:44:32 -05001579 // OPEN: QS Battery detail panel
1580 // CATEGORY: GLOBAL_SYSTEM_UI
1581 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001582 QS_BATTERY_DETAIL = 274;
1583
Chris Wren7c516842016-03-01 16:44:32 -05001584 // OPEN: Overview > History
1585 // CATEGORY: GLOBAL_SYSTEM_UI
1586 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001587 OVERVIEW_HISTORY = 275;
1588
Chris Wren7c516842016-03-01 16:44:32 -05001589 // ACTION: Overview > Page by tapping Overview button
1590 // CATEGORY: GLOBAL_SYSTEM_UI
1591 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001592 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001593
Chris Wren7c516842016-03-01 16:44:32 -05001594 // ACTION: Overview > Select app
1595 // CATEGORY: GLOBAL_SYSTEM_UI
1596 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001597 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001598
Chris Wren7c516842016-03-01 16:44:32 -05001599 // ACTION: View emergency info
1600 // CATEGORY: GLOBAL_SYSTEM_UI
1601 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001602 ACTION_VIEW_EMERGENCY_INFO = 278;
1603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // ACTION: Edit emergency info activity
1605 // CATEGORY: SETTINGS
1606 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001607 ACTION_EDIT_EMERGENCY_INFO = 279;
1608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: Edit emergency info field
1610 // CATEGORY: SETTINGS
1611 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001612 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: Add emergency contact
1615 // CATEGORY: SETTINGS
1616 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001617 ACTION_ADD_EMERGENCY_CONTACT = 281;
1618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // ACTION: Delete emergency contact
1620 // CATEGORY: SETTINGS
1621 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001622 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1623
Chris Wren7c516842016-03-01 16:44:32 -05001624 // ACTION: Call emergency contact
1625 // CATEGORY: SETTINGS
1626 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001627 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // OPEN: QS Data Saver tile shown
1630 // ACTION: QS Data Saver tile tapped
1631 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001632 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001633
Robin Lee8c1306e2016-02-01 11:37:02 +00001634 // OPEN: Settings > Security > User credentials
1635 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001636 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001637 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001638
Chris Wren7c516842016-03-01 16:44:32 -05001639 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1640 // CATEGORY: GLOBAL_SYSTEM_UI
1641 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001642 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001643
1644 // Logged when the user scrolls through overview manually
1645 OVERVIEW_SCROLL = 287;
1646
1647 // Logged when the overview times out automatically selecting an app
1648 OVERVIEW_SELECT_TIMEOUT = 288;
1649
1650 // Logged when a user dismisses a task in overview
1651 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001652
1653 // Logged when the user modifying the notification importance slider.
1654 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1655
1656 // Logged when the user saves a modification to notification importance. Negative numbers
1657 // indicate the user lowered the importance; positive means they increased it.
1658 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001659
Chris Wren7c516842016-03-01 16:44:32 -05001660 // ACTION: Long-press power button, then tap "Take bug report" option.
1661 // CATEGORY: GLOBAL_SYSTEM_UI
1662 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001663 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1664
Chris Wren7c516842016-03-01 16:44:32 -05001665 // ACTION: Long-press power button, then long-press "Take bug report" option.
1666 // CATEGORY: GLOBAL_SYSTEM_UI
1667 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001668 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1669
Chris Wren7c516842016-03-01 16:44:32 -05001670 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1671 // CATEGORY: SETTINGS
1672 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001673 // Interactive bug report initiated from Settings.
1674 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1675
Chris Wren7c516842016-03-01 16:44:32 -05001676 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1677 // CATEGORY: SETTINGS
1678 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001679 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001680 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1681
Chris Wren7c516842016-03-01 16:44:32 -05001682 // ACTION: User tapped notification action to cancel a bug report
1683 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001684 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001685 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1686
Chris Wren7c516842016-03-01 16:44:32 -05001687 // ACTION: User tapped notification action to launch bug report details screen
1688 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001689 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001690 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: User tapped notification action to take adition screenshot on bug report
1693 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001694 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001695 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // ACTION: User tapped notification to share bug report
1698 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001699 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001700 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: User changed bug report name using the details screen
1703 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001704 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001705 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: User changed bug report title using the details screen
1708 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001709 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001710 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: User changed bug report description using the details screen
1713 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001714 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001715 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1716
Chris Wren7c516842016-03-01 16:44:32 -05001717 // ACTION: User tapped Save in the bug report details screen.
1718 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001719 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001720 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: User tapped Cancel in the bug report details screen.
1723 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001724 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001725 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001726
1727 // Tuner: Open/close calibrate dialog.
1728 TUNER_CALIBRATE_DISPLAY = 305;
1729
1730 // Tuner: Open/close color and appearance.
1731 TUNER_COLOR_AND_APPEARANCE = 306;
1732
1733 // Tuner: Apply calibrate dialog.
1734 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1735
1736 // Tuner: Open/close night mode.
1737 TUNER_NIGHT_MODE = 308;
1738
1739 // Tuner: Change night mode.
1740 ACTION_TUNER_NIGHT_MODE = 309;
1741
1742 // Tuner: Change night mode auto.
1743 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1744
1745 // Tuner: Change night mode adjust dark theme.
1746 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1747
1748 // Tuner: Change night mode adjust tint.
1749 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1750
1751 // Tuner: Change night mode adjust brightness.
1752 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1753
1754 // Tuner: Change do not disturb in volume panel.
1755 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1756
1757 // Tuner: Change do not disturb volume buttons shortcut.
1758 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001759
1760 // Logs the action the user takes when an app crashed.
1761 ACTION_APP_CRASH = 316;
1762
1763 // Logs the action the user takes when an app ANR'd.
1764 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001765
1766 // Logged when a user double taps the overview button to launch the previous task
1767 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001768
1769 // Logged when we execute an app transition. This indicates the total delay from startActivity
1770 // until the app transition is starting to animate, in milliseconds.
1771 APP_TRANSITION_DELAY_MS = 319;
1772
1773 // Logged when we execute an app transition. This indicates the reason why the transition
1774 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1775 APP_TRANSITION_REASON = 320;
1776
1777 // Logged when we execute an app transition and we drew a starting window. This indicates the
1778 // delay from startActivity until the starting window was drawn.
1779 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1780
1781 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1782 // the delay from startActivity until all windows have been drawn.
1783 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1784
1785 // Logged when we execute an app transition. This indicates the component name of the current
1786 // transition.
1787 APP_TRANSITION_COMPONENT_NAME = 323;
1788
1789 // Logged when we execute an app transition. This indicates whether the process was already
1790 // running.
1791 APP_TRANSITION_PROCESS_RUNNING = 324;
1792
1793 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1794 // the transition was executed.
1795 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001796
Chris Wren38f98812016-07-13 14:28:40 -04001797 // ACTION: app requested access to a scoped directory, user granted it.
1798 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1799 // CATEGORY: GLOBAL_SYSTEM_UI
1800 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001801 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1802
Chris Wren38f98812016-07-13 14:28:40 -04001803 // ACTION: app requested access to a scoped directory, user denied it.
1804 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1805 // CATEGORY: GLOBAL_SYSTEM_UI
1806 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001807 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1808
Chris Wren38f98812016-07-13 14:28:40 -04001809 // ACTION: app requested access to a scoped directory, user granted it.
1810 // PACKAGE: app that requested access
1811 // CATEGORY: GLOBAL_SYSTEM_UI
1812 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001813 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1814
Chris Wren38f98812016-07-13 14:28:40 -04001815 // ACTION: app requested access to a scoped directory, user denied it.
1816 // PACKAGE: app that requested access.
1817 // CATEGORY: GLOBAL_SYSTEM_UI
1818 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001819 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1820
Chris Wren38f98812016-07-13 14:28:40 -04001821 // ACTION: app requested access to a directory user has already been granted
1822 // access before.
1823 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1824 // CATEGORY: GLOBAL_SYSTEM_UI
1825 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001826 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1827
Chris Wren38f98812016-07-13 14:28:40 -04001828 // ACTION: app requested access to a directory user has already been granted
1829 // access before.
1830 // PACKAGE: app that requested access.
1831 // CATEGORY: GLOBAL_SYSTEM_UI
1832 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001833 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001834
Chris Wren38f98812016-07-13 14:28:40 -04001835 // ACTION: Logged when the user slides a notification and reveals the gear
1836 // beneath it.
1837 // CATEGORY: NOTIFICATION
1838 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001839 ACTION_REVEAL_GEAR = 332;
1840
Chris Wren38f98812016-07-13 14:28:40 -04001841 // ACTION: Logged when the user taps on the gear beneath a notification.
1842 // CATEGORY: NOTIFICATION
1843 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001844 ACTION_TOUCH_GEAR = 333;
1845
Ruben Brunke24b9a62016-02-16 21:38:24 -08001846 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001847 // CATEGORY: SETTINGS
1848 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001849 VR_MANAGE_LISTENERS = 334;
1850
Jason Monk6f5354d2016-03-08 14:18:08 -05001851 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001852 // CATEGORY: SETTINGS
1853 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001854 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001855
Jason Monk6f5354d2016-03-08 14:18:08 -05001856 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001857 // CATEGORY: SETTINGS
1858 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001859 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001860
Jason Monk6f5354d2016-03-08 14:18:08 -05001861 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001862 // CATEGORY: SETTINGS
1863 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001864 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001865
Jason Monk6f5354d2016-03-08 14:18:08 -05001866 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001867 // CATEGORY: SETTINGS
1868 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001869 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001870
Jason Monk6f5354d2016-03-08 14:18:08 -05001871 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001872 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001873 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001874
Jason Monk6f5354d2016-03-08 14:18:08 -05001875 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001876 // CATEGORY: SETTINGS
1877 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001878 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001879
Jason Monk6f5354d2016-03-08 14:18:08 -05001880 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001881 // CATEGORY: SETTINGS
1882 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001884
Jason Monk6f5354d2016-03-08 14:18:08 -05001885 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001886 // CATEGORY: SETTINGS
1887 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001889
Jason Monk6f5354d2016-03-08 14:18:08 -05001890 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001891 // CATEGORY: SETTINGS
1892 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001894
Jason Monk6f5354d2016-03-08 14:18:08 -05001895 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001896 // CATEGORY: SETTINGS
1897 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001899
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001901 // CATEGORY: SETTINGS
1902 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001904
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001906 // CATEGORY: SETTINGS
1907 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001909
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001911 // CATEGORY: SETTINGS
1912 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001914
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001916 // CATEGORY: SETTINGS
1917 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001919
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001921 // CATEGORY: SETTINGS
1922 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1924
1925 // Used for generic logging of Settings Preference Persistence, should not be used
1926 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001927 // CATEGORY: SETTINGS
1928 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001929 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001930
Jason Monk6f5354d2016-03-08 14:18:08 -05001931 // Settings -> Apps -> Gear -> Special access
1932 SPECIAL_ACCESS = 351;
1933
Muyuan Lia2129992016-03-03 18:30:39 -08001934 // Logs that the user docks window via shortcut key.
1935 WINDOW_DOCK_SHORTCUTS = 352;
1936
Felipe Lemeadccb992016-03-09 17:40:49 -08001937 // User already denied access to the request folder; action takes an integer
1938 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001939 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001940 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1941
1942 // User already denied access to the request folder; action pass package name
1943 // of calling package.
1944 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1945
1946 // User denied access to the request folder and checked 'Do not ask again';
1947 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001948 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001949 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1950
1951 // User denied access to the request folder and checked 'Do not ask again';
1952 // action pass package name of calling package.
1953 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1954
Winson3b6ba1a2016-03-22 15:37:54 -07001955 // Logged when a user dismisses all task in overview
1956 OVERVIEW_DISMISS_ALL = 357;
1957
Jason Monk96defbe2016-03-29 16:51:03 -04001958 // Quick Settings -> Edit
1959 QS_EDIT = 358;
1960
1961 // Quick Settings -> Edit -> Overflow -> Reset
1962 ACTION_QS_EDIT_RESET = 359;
1963
1964 // QS -> Edit - Drag a tile out of the active tiles.
1965 // The _SPEC contains either the spec of the tile or
1966 // the package of the 3rd party app in the PKG field.
1967 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1968 ACTION_QS_EDIT_REMOVE = 361;
1969
1970 // QS -> Edit - Drag a tile into the active tiles.
1971 // The _SPEC contains either the spec of the tile or
1972 // the package of the 3rd party app in the PKG field.
1973 ACTION_QS_EDIT_ADD_SPEC = 362;
1974 ACTION_QS_EDIT_ADD = 363;
1975
1976 // QS -> Edit - Drag a tile within the active tiles.
1977 // The _SPEC contains either the spec of the tile or
1978 // the package of the 3rd party app in the PKG field.
1979 ACTION_QS_EDIT_MOVE_SPEC = 364;
1980 ACTION_QS_EDIT_MOVE = 365;
1981
1982 // Long-press on a QS tile. Tile spec in package field.
1983 ACTION_QS_LONG_PRESS = 366;
1984
Anna Galuszadad131f2016-03-22 13:49:02 -07001985 // OPEN: SUW Welcome Screen -> Vision Settings
1986 // CATEGORY: SETTINGS
1987 // OS: N
1988 SUW_ACCESSIBILITY = 367;
1989
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001990 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1991 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1992 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001993 // ACTION: New magnification gesture configuration is chosen
1994 // SUBTYPE: 0 is off, 1 is on
1995 // CATEGORY: SETTINGS
1996 // OS: N
1997 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1998
1999 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2000 // ACTION: New font size is chosen
2001 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2002 // CATEGORY: SETTINGS
2003 // OS: N
2004 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2005
2006 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2007 // ACTION: New display size is chosen
2008 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2009 // CATEGORY: SETTINGS
2010 // OS: N
2011 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2012
2013 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2014 // ACTION: New screen reader configuration is chosen
2015 // SUBTYPE: 0 is off, 1 is on
2016 // CATEGORY: SETTINGS
2017 // OS: N
2018 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2019
Jason Monkc3620392016-03-30 15:46:03 -04002020 // ------- Begin N Settings conditionals -----
2021 // Conditionals are the green bars at the top of the settings dashboard
2022 // All conditionals will have visible/hide events onResume/onPause
2023 // but they will also be used as extra ints in the
2024 // dismiss/expand/collapse/click/button events
2025
2026 // swipe away conditional
2027 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2028
2029 // click on collapsed conditional or clicks expand button
2030 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2031
2032 // click collapse button on expanded conditional
2033 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2034
2035 // click main area of expanded conditional
2036 ACTION_SETTINGS_CONDITION_CLICK = 375;
2037
2038 // click a direct button on expanded conditional
2039 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2040
2041 // Airplane mode on
2042 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2043 // AKA Data saver on
2044 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2045 // Battery saver on
2046 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2047 // Cellular data off
2048 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2049 // Do not disturb on
2050 SETTINGS_CONDITION_DND = 381;
2051 // Hotspot on
2052 SETTINGS_CONDITION_HOTSPOT = 382;
2053 // Work profile off
2054 SETTINGS_CONDITION_WORK_MODE = 383;
2055
Jason Monk1b5d87b2016-03-30 16:03:15 -04002056 // ------- Begin N Settings suggestions -----
2057 // Since suggestions come from system apps, suggestions will
2058 // have generic constants and the package providing the suggestion
2059 // will be put in the package field. For suggestions in the Settings
2060 // package, the class name will be filled in instead (since settings
2061 // provides several suggetions).
2062
2063 // Settings shown/hidden on main settings dashboard.
2064 // These are actually visibility events, but visible/hidden doesn't
2065 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002066 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2067 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002068
2069 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002070 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002071
2072 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002073 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002074
Jason Monk397df682016-03-28 15:48:34 -04002075 // Settings > Apps > Gear > Special Access > Premium SMS access
2076 PREMIUM_SMS_ACCESS = 388;
2077
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002078 // Logged when the user resizes the docked stack. Arguments:
2079 // 0: Split 50:50
2080 // 1: Docked smaller
2081 // 2: Docked larger
2082 ACTION_WINDOW_DOCK_RESIZE = 389;
2083
2084 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2085 // 0: Docked gets maximized
2086 // 1: Fullscreen gets maximized
2087 ACTION_WINDOW_UNDOCK_MAX = 390;
2088
2089 // User tried to dock an unresizable app.
2090 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2091
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002092 // System UI Tuner > Other > Power notification controls
2093 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2094
2095 // System UI Tuner > Other > Power notification controls > Toggle on/off
2096 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2097
Chris Wren38f98812016-07-13 14:28:40 -04002098 // Action: user enable / disabled data saver using Settings
2099 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2100 // VALUE: 1 for enabled, 0 for disabled
2101 // CATEGORY: SETTINGS
2102 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002103 ACTION_DATA_SAVER_MODE = 394;
2104
Chris Wren38f98812016-07-13 14:28:40 -04002105 // User whitelisted an app for Data Saver mode; action pass package name of app
2106 // Action: user enable / disabled data saver using Settings
2107 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2108 // or
2109 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2110 // VALUE: package name of APP
2111 // CATEGORY: SETTINGS
2112 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002113 ACTION_DATA_SAVER_WHITELIST = 395;
2114
Chris Wren38f98812016-07-13 14:28:40 -04002115 // User blacklisted an app for Data Saver mode; action pass package name of app
2116 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2117 // VALUE: package name of APP
2118 // CATEGORY: SETTINGS
2119 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002120 ACTION_DATA_SAVER_BLACKLIST = 396;
2121
Adrian Roosceeb04c2016-04-25 14:00:54 -07002122 // User opened a remote input view associated with a notification. Passes package name of app
2123 // that posted the notification. Note that this can also happen transiently during notification
2124 // reinflation.
2125 ACTION_REMOTE_INPUT_OPEN = 397;
2126
2127 // User attempt to send data through a remote input view associated with a notification.
2128 // Passes package name of app that posted the notification. May succeed or fail.
2129 ACTION_REMOTE_INPUT_SEND = 398;
2130
2131 // Failed attempt to send data through a remote input view associated with a
2132 // notification. Passes package name of app that posted the notification.
2133 ACTION_REMOTE_INPUT_FAIL = 399;
2134
2135 // User closed a remote input view associated with a notification. Passes package name of app
2136 // that posted the notification. Note that this can also happen transiently during notification
2137 // reinflation.
2138 ACTION_REMOTE_INPUT_CLOSE = 400;
2139
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002140 // OPEN: Settings > Accounts > Work profile settings
2141 // CATEGORY: SETTINGS
2142 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2143
Jason Monk25118d12016-05-10 13:25:50 -04002144 // Settings -> Dev options -> Convert to file encryption
2145 CONVERT_FBE = 402;
2146
2147 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2148 CONVERT_FBE_CONFIRM = 403;
2149
2150 // Settings -> Dev options -> Running services
2151 RUNNING_SERVICES = 404;
2152
Jason Monka1f697f2016-05-06 15:09:44 -04002153 // The dialog shown by 3P intent to change current webview implementation.
2154 WEBVIEW_IMPLEMENTATION = 405;
2155
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002156 // Settings launched from expanded quick settings.
2157 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2158
Chris Wren698b1702016-05-23 11:16:32 -04002159 // Notification expansion state toggled by the expand affordance.
2160 ACTION_NOTIFICATION_EXPANDER = 407;
2161
2162 // Notification group expansion state toggled by the expand affordance.
2163 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2164
Chris Wren7ee84182016-05-27 13:34:02 -04002165
Chris Wren6abeeb92016-05-26 14:44:38 -04002166 // Notification expansion state toggled by the expand gesture.
2167 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2168
2169 // Notification group expansion state toggled by the expand gesture.
2170 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2171
Bhavik Singh3451da42016-06-01 18:25:59 -07002172 // User performs gesture that activates the ambient display
2173 // 1: Gesture performed is Nudge
2174 // 2: Gesture performed is Pickup
2175 // 4: Gesture performed is Double Tap
2176 ACTION_AMBIENT_GESTURE = 411;
2177
Jason Monk9fa5f822016-05-11 10:26:31 -04002178 // ---- End N Constants, all N constants go above this line ----
2179
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002180 // ------- Begin N App Disambig Shade -----
2181 // Application disambig shade opened or closed with a featured app.
2182 // These are actually visibility events, but visible/hidden doesn't
2183 // take a package, so these are being logged as actions.
2184 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002185 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2186 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002187
2188 // Application disambig shade opened or closed without a featured app.
2189 // These are actually visibility events, but visible/hidden doesn't
2190 // take a package, so these are being logged as actions.
2191 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002192 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2193 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002194
2195 // User opens in an app by pressing “Always” in the application disambig shade.
2196 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002197 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002198
2199 // User opens in an app by pressing “Just Once” in the application disambig shade.
2200 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002201 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002202
2203 // User opens in an app by tapping on its name in the application disambig shade.
2204 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002205 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002206
Daniel Nishi010aa492016-05-11 09:42:24 -07002207 // OPEN: Settings > Internal storage > Storage manager
2208 // CATEGORY: SETTINGS
2209 STORAGE_MANAGER_SETTINGS = 458;
2210
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002211 // OPEN: Settings -> Gestures
2212 // CATEGORY: SETTINGS
2213 SETTINGS_GESTURES = 459;
2214
Daniel Nishi597e67f2016-05-18 13:56:13 -07002215 // ------ Begin Deletion Helper ------
2216 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2217 // SUBTYPE: false is off, true is on
2218 // CATEGORY: SETTINGS
2219 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002220
Daniel Nishi597e67f2016-05-18 13:56:13 -07002221 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2222 // SUBTYPE: false is off, true is on
2223 // CATEGORY: SETTINGS
2224 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2225
2226 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2227 // CATEGORY: SETTINGS
2228 // PACKAGE: Unchecked app
2229 ACTION_DELETION_SELECTION_APP_ON = 462;
2230
2231 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2232 // CATEGORY: SETTINGS
2233 // PACKAGE: Checked app
2234 ACTION_DELETION_SELECTION_APP_OFF = 463;
2235
2236 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2237 // SUBTYPE: false is expanded, true is collapsed
2238 // CATEGORY: SETTINGS
2239 ACTION_DELETION_APPS_COLLAPSED = 464;
2240
2241 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2242 // SUBTYPE: false is off, true is on
2243 // CATEGORY: SETTINGS
2244 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2245
2246 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2247 // SUBTYPE: false is expanded, true is collapsed
2248 // CATEGORY: SETTINGS
2249 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2250
2251 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2252 // CATEGORY: SETTINGS
2253 ACTION_DELETION_HELPER_CLEAR = 467;
2254
2255 // ACTION: Settings > Storage > Free Up Space > Cancel
2256 // CATEGORY: SETTINGS
2257 ACTION_DELETION_HELPER_CANCEL = 468;
2258
2259 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2260 // CATEGORY: SETTINGS
2261 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2262
2263 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2264 // CATEGORY: SETTINGS
2265 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2266
2267 // Deletion helper encountered an error during package deletion.
2268 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2269
2270 // Deletion helper encountered an error during downloads folder deletion.
2271 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2272
2273 // Deletion helper encountered an error during photo and video deletion.
2274 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2275
Fan Zhang5e956e82016-05-06 10:51:47 -07002276 // OPEN: Settings (root page if there are multiple tabs)
2277 // CATEGORY: SETTINGS
2278 DASHBOARD_CONTAINER = 474;
2279
2280 // OPEN: Settings -> SUPPORT TAB
2281 // CATEGORY: SETTINGS
2282 SUPPORT_FRAGMENT = 475;
2283
2284 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002285 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002286 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002287
2288 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002289 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002290 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2291
Fan Zhanga1985502016-06-16 16:48:38 -07002292 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002293 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002294 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2295
2296 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002297 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002298 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2299
2300 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002301 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002302 ACTION_SUPPORT_SIGN_IN = 480;
2303
2304 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002305 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002306 ACTION_SUPPORT_PHONE = 481;
2307
2308 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002309 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002310 ACTION_SUPPORT_CHAT = 482;
2311
2312 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002313 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002314 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2315
2316 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002317 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002318 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2319
Fan Zhang80807212016-06-30 12:26:55 -07002320 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002321 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002322 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2323
2324 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002325 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002326 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2327
2328 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002329 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002330 ACTION_SUPPORT_DIAL_TOLLED = 487;
2331
Justin Klaassen19494272016-07-18 21:38:24 -07002332 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002333 // CATEGORY: SETTINGS
2334 NIGHT_DISPLAY_SETTINGS = 488;
2335
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002336 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002337 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002338 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2339
Jason Monk484fd362016-07-13 15:24:32 -04002340 // Settings launched from collapsed quick settings.
2341 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2342
Justin Klaassen19494272016-07-18 21:38:24 -07002343 // OPEN: QS Night Light tile shown
2344 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002345 // SUBTYPE: 0 is off, 1 is on
2346 // CATEGORY: QUICK_SETTINGS
2347 QS_NIGHT_DISPLAY = 491;
2348
Justin Klaassen19494272016-07-18 21:38:24 -07002349 // Night Light on
2350 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2351
Doris Ling3c00afb2016-07-19 17:04:21 -07002352 // System navigation key up.
2353 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2354
2355 // System navigation key down.
2356 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2357
Doris Ling6dd3e462016-08-04 13:17:27 -07002358 // OPEN: Settings > Display -> Ambient Display
2359 // CATEGORY: SETTINGS
2360 ACTION_AMBIENT_DISPLAY = 495;
2361
Adrian Roos159ef7b2016-02-25 11:58:32 -08002362 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2363
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002364 // ACTION: The lockscreen gets shown because the SIM card was removed
2365 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2366 // CATEGORY: GLOBAL_SYSTEM_UI
2367 // OS: N-MR2
2368 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2369
2370 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2371
Clara Bayarric17a5982016-04-15 12:26:47 +01002372 // ------- Begin N Keyboard Shortcuts Helper -----
2373 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002374 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002375
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002376 // OPEN: Print Preview screen
2377 // Package: Package of app where print job is from
2378 PRINT_PREVIEW = 501;
2379
2380 // OPEN: User expands full print job options shade in print preview.
2381 PRINT_JOB_OPTIONS = 502;
2382
2383 // OPEN: “All Printers” screen for selecting printer
2384 // Subtype: # of printers listed
2385 PRINT_ALL_PRINTERS = 503;
2386
2387 // OPEN: “Add Printers” screen for adding printers
2388 // Subtype: # of enabled print service listed
2389 PRINT_ADD_PRINTERS = 504;
2390
2391 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2392 // Package: Package of print service.
2393 ACTION_PRINT = 505;
2394
2395 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2396 // Count all ACTION_PRINTER_SELECT_ALL actions.
2397 // Package: Package of print service tied to printer
2398 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2399
2400 // ACTION: User selects a printer from the “All printers” screen.
2401 // Package: Package of print service tied to printer
2402 ACTION_PRINTER_SELECT_ALL = 507;
2403
2404 // ACTION: User changes an option for the print job from print preview.
2405 // Subtype: 1: Copies
2406 // 2: Color mode
2407 // 3: Duplex mode
2408 // 4: Media (==Paper) size
2409 // 5: Orientation
2410 // 6: Page range
2411 // Package: Package of print service tied to printer
2412 ACTION_PRINT_JOB_OPTIONS = 508;
2413
2414 // ACTION: User searches for printer from All Printers
2415 ACTION_PRINTER_SEARCH = 509;
2416
2417 // ACTION: User selects “Add print service” button from All Printers
2418 ACTION_PRINT_SERVICE_ADD = 510;
2419
2420 // ACTION: User Enables/Disables Print Service via any means.
2421 // Subtype: 0: Enabled
2422 // 1: Disabled
2423 ACTION_PRINT_SERVICE_TOGGLE = 511;
2424
2425 // ACTION: User installs print recommended print service
2426 // Package: Package of print service
2427 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2428
Doris Ling88a6b162016-08-08 16:17:43 -07002429 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2430 // SUBTYPE: sub settings classname
2431 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2432
Fan Zhang92c60382016-08-08 14:03:53 -07002433 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2434 USER_DICTIONARY_SETTINGS = 514;
2435
2436 // OPEN: Settings > Date & time > Select time zone
2437 ZONE_PICKER = 515;
2438
2439 // OPEN: Settings > Security > Device administrators
2440 DEVICE_ADMIN_SETTINGS = 516;
2441
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002442 // ACTION: Managed provisioning was launched to set this package as DPC app.
2443 // PACKAGE: DPC's package name.
2444 PROVISIONING_DPC_PACKAGE_NAME = 517;
2445
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002446 // ACTION: Managed provisioning triggered DPC installation.
2447 // PACKAGE: Package name of package which installed DPC.
2448 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2449
2450 // ACTION: Logged when provisioning activity finishes.
2451 // TIME: Indicates time taken by provisioning activity to finish in MS.
2452 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2453
2454 // ACTION: Logged when preprovisioning activity finishes.
2455 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2456 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2457
2458 // ACTION: Logged when encrypt device activity finishes.
2459 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2460 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2461
2462 // ACTION: Logged when web activity finishes.
2463 // TIME: Indicates total time taken by web activity to finish in MS.
2464 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2465
2466 // ACTION: Logged when trampoline activity finishes.
2467 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2468 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2469
2470 // ACTION: Logged when encryption activity finishes.
2471 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2472 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2473
2474 // ACTION: Logged when finalization activity finishes.
2475 // TIME: Indicates time taken by finalization activity to finish in MS.
2476 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002477
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002478 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002479 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002480
Fan Zhang95094182016-08-24 18:14:16 -07002481 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002482 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002483
2484 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002485 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002486
2487 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002488 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002489
2490 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002491 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002492
2493 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002494 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002495
Fan Zhangc1352ae2016-09-16 12:46:11 -07002496 // OPEN: Settings > Security > Use one lock dialog
2497 DIALOG_UNIFICATION_CONFIRMATION = 532;
2498
2499 // OPEN: Settings > Security > User Credential
2500 DIALOG_USER_CREDENTIAL = 533;
2501
2502 // OPEN: Settings > Accounts > Remove account
2503 DIALOG_REMOVE_USER = 534;
2504
2505 // OPEN: Settings > Accounts > Confirm auto sync dialog
2506 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2507
2508 // OPEN: Settings > Apps > Dialog for running service details
2509 DIALOG_RUNNIGN_SERVICE = 536;
2510
2511 // OPEN: Settings > Dialog for hiding home settings
2512 DIALOG_NO_HOME = 537;
2513
2514 // OPEN: Settings > Bluetooth > Rename this device
2515 DIALOG_BLUETOOTH_RENAME = 538;
2516
2517 // OPEN: Settings > Bluetooth > Paired device profile
2518 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2519
2520 // OPEN: Settings > Battery optimization > details for app
2521 DIALOG_HIGH_POWER_DETAILS = 540;
2522
2523 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2524 DIALOG_KEYBOARD_LAYOUT = 541;
2525
2526 // OPEN: Settings > Wifi > WPS Setup dialog
2527 DIALOG_WPS_SETUP = 542;
2528
2529 // OPEN: Settings > WIFI Scan permission dialog
2530 DIALOG_WIFI_SCAN_MODE = 543;
2531
2532 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2533 DIALOG_WIFI_SKIP = 544;
2534
2535 // OPEN: Settings > Wireless > VPN > Config dialog
2536 DIALOG_LEGACY_VPN_CONFIG = 545;
2537
2538 // OPEN: Settings > Wireless > VPN > Config dialog for app
2539 DIALOG_VPN_APP_CONFIG = 546;
2540
2541 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2542 DIALOG_VPN_CANNOT_CONNECT = 547;
2543
2544 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2545 DIALOG_VPN_REPLACE_EXISTING = 548;
2546
2547 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2548 DIALOG_BILLING_CYCLE = 549;
2549
2550 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2551 DIALOG_BILLING_BYTE_LIMIT = 550;
2552
2553 // OPEN: Settings > Billing cycle > turn on data limit dialog
2554 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2555
2556 // OPEN: Settings > Service > Turn off notification access dialog
2557 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2558
2559 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2560 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2561
2562 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2563 DIALOG_ZEN_ACCESS_GRANT = 554;
2564
2565 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2566 DIALOG_ZEN_ACCESS_REVOKE = 555;
2567
2568 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2569 DIALOG_ZEN_TIMEPICKER = 556;
2570
2571 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2572 DIALOG_SERVICE_ACCESS_WARNING = 557;
2573
2574 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2575 DIALOG_APP_INFO_ACTION = 558;
2576
2577 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2578 DIALOG_VOLUME_FORGET = 559;
2579
2580 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2581 DIALOG_VOLUME_SLOW_WARNING = 560;
2582
2583 // OPEN: Settings > Storage > Dialog for initializing a volume
2584 DIALOG_VOLUME_INIT = 561;
2585
2586 // OPEN: Settings > Storage > Dialog for unmounting a volume
2587 DIALOG_VOLUME_UNMOUNT = 562;
2588
2589 // OPEN: Settings > Storage > Dialog for renaming a volume
2590 DIALOG_VOLUME_RENAME = 563;
2591
2592 // OPEN: Settings > Storage > Dialog for clear cache
2593 DIALOG_STORAGE_CLEAR_CACHE = 564;
2594
2595 // OPEN: Settings > Storage > Dialog for system info
2596 DIALOG_STORAGE_SYSTEM_INFO = 565;
2597
2598 // OPEN: Settings > Storage > Dialog for other info
2599 DIALOG_STORAGE_OTHER_INFO = 566;
2600
2601 // OPEN: Settings > Storage > Dialog for user info
2602 DIALOG_STORAGE_USER_INFO = 567;
2603
2604 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2605 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2606
2607 // OPEN: Settings > Add fingerprint > Error dialog
2608 DIALOG_FINGERPINT_ERROR = 569;
2609
2610 // OPEN: Settings > Fingerprint > Rename or delete dialog
2611 DIALOG_FINGERPINT_EDIT = 570;
2612
2613 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2614 DIALOG_FINGERPINT_DELETE_LAST = 571;
2615
2616 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2617 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2618
2619 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2620 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2621
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002622 // OPEN: Settings > Proxy Selector error dialog
2623 DIALOG_PROXY_SELECTOR_ERROR = 574;
2624
2625 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2626 DIALOG_WIFI_P2P_DISCONNECT = 575;
2627
2628 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2629 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2630
2631 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2632 DIALOG_WIFI_P2P_RENAME = 577;
2633
2634 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2635 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2636
2637 // OPEN: Settings > APN > Restore default dialog
2638 DIALOG_APN_RESTORE_DEFAULT = 579;
2639
2640 // OPEN: Settings > Dream > When to dream dialog
2641 DIALOG_DREAM_START_DELAY = 580;
2642
2643 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2644 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2645
2646 // OPEN: Settings > Tether > AP setting dialog
2647 DIALOG_AP_SETTINGS = 582;
2648
2649 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2650 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2651
2652 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2653 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2654
2655 // OPEN: Settings > Account > Remove account dialog
2656 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2657
2658 // OPEN: Settings > Account > Remove account failed dialog
2659 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2660
2661 // OPEN: Settings > Account > Cannot do onetime sync dialog
2662 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2663
2664 // OPEN: Settings > Display > Night light > Set start time dialog
2665 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2666
2667 // OPEN: Settings > Display > Night light > Set end time dialog
2668 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2669
2670 // OPEN: Settings > User > Edit info dialog
2671 DIALOG_USER_EDIT = 590;
2672
2673 // OPEN: Settings > User > Confirm remove dialog
2674 DIALOG_USER_REMOVE = 591;
2675
2676 // OPEN: Settings > User > Enable calling dialog
2677 DIALOG_USER_ENABLE_CALLING = 592;
2678
2679 // OPEN: Settings > User > Enable calling and sms dialog
2680 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2681
2682 // OPEN: Settings > User > Cannot manage device message dialog
2683 DIALOG_USER_CANNOT_MANAGE = 594;
2684
2685 // OPEN: Settings > User > Add user dialog
2686 DIALOG_USER_ADD = 595;
2687
2688 // OPEN: Settings > User > Setup user dialog
2689 DIALOG_USER_SETUP = 596;
2690
2691 // OPEN: Settings > User > Setup profile dialog
2692 DIALOG_USER_SETUP_PROFILE = 597;
2693
2694 // OPEN: Settings > User > Choose user type dialog
2695 DIALOG_USER_CHOOSE_TYPE = 598;
2696
2697 // OPEN: Settings > User > Need lockscreen dialog
2698 DIALOG_USER_NEED_LOCKSCREEN = 599;
2699
2700 // OPEN: Settings > User > Confirm exit guest mode dialog
2701 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2702
2703 // OPEN: Settings > User > Edit user profile dialog
2704 DIALOG_USER_EDIT_PROFILE = 601;
2705
2706 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2707 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2708
2709 // OPEN: Settings > Wifi > Edit AP dialog
2710 DIALOG_WIFI_AP_EDIT = 603;
2711
2712 // OPEN: Settings > Wifi > PBC Config dialog
2713 DIALOG_WIFI_PBC = 604;
2714
2715 // OPEN: Settings > Wifi > Display pin dialog
2716 DIALOG_WIFI_PIN = 605;
2717
2718 // OPEN: Settings > Wifi > Write config to NFC dialog
2719 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002720 // OPEN: Settings > Date > Date picker dialog
2721 DIALOG_DATE_PICKER = 607;
2722
2723 // OPEN: Settings > Date > Time picker dialog
2724 DIALOG_TIME_PICKER = 608;
2725
2726 // OPEN: Settings > Wireless > Manage wireless plan dialog
2727 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002728
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002729 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002730 PROVISIONING_NETWORK_TYPE = 610;
2731
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002732 // ACTION: Logs action which triggered provisioning.
2733 PROVISIONING_ACTION = 611;
2734
Mahaver Chopraab282072016-10-06 19:19:23 +01002735 // ACTION: Logs extra passed by the dpc while provisioning.
2736 PROVISIONING_EXTRA = 612;
2737
Salvador Martinez64867c12016-10-14 15:25:09 -07002738 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2739 BLUETOOTH_DIALOG_FRAGMENT = 613;
2740
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002741 // ACTION: Logs provisioning started by zero touch.
2742 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2743
2744 // ACTION: Logs provisioning started by NFC bump.
2745 PROVISIONING_ENTRY_POINT_NFC = 615;
2746
2747 // ACTION: Logs provisioning started using QR code.
2748 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2749
2750 // ACTION: Logs provisioning started using adb.
2751 PROVISIONING_ENTRY_POINT_ADB = 617;
2752
2753 // ACTION: Logs provisioning started by trusted source.
2754 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2755
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002756 // ACTION: Logged when copy account task finishes.
2757 // TIME: Indicates time taken by copy account task to finish in MS.
2758 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2759
2760 // ACTION: Logged when create profile task finishes.
2761 // TIME: Indicates time taken by create profile task to finish in MS.
2762 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2763
2764 // ACTION: Logged when start profile task finishes.
2765 // TIME: Indicates time taken by start profile task to finish in MS.
2766 PROVISIONING_START_PROFILE_TASK_MS = 621;
2767
2768 // ACTION: Logged when download package task finishes.
2769 // TIME: Indicates time taken by download package task to finish in MS.
2770 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2771
2772 // ACTION: Logged when install package task finishes.
2773 // TIME: Indicates time taken by install package task to finish in MS.
2774 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2775
2776 // ACTION: User cancelled provisioning.
2777 PROVISIONING_CANCELLED = 624;
2778
2779 // ACTION: Logged when provisioning throws an error.
2780 PROVISIONING_ERROR = 625;
2781
2782 // ACTION: Logs the status of copying user account during provisioning.
2783 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2784
2785 // ACTION: Logs the end to end time taken by all provisioning tasks.
2786 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2787
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002788 // OPEN: Settings > Privacy
2789 // CATEGORY: SETTINGS
2790 // OS: O
2791 ENTERPRISE_PRIVACY_SETTINGS = 628;
2792
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002793 // ACTION: Longpress on a TextView.
2794 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2795 // CATEGORY: TEXT_CONTROLS
2796 // OS: O
2797 TEXT_LONGPRESS = 629;
2798
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002799 // ACTION: An app requested an unknown permission
2800 // PACKAGE: The package name of the app requesting the permission
2801 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2802
2803 // ACTION: An app was granted an unknown permission
2804 // PACKAGE: The package name of the app that was granted the permission
2805 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2806
2807 // ACTION: An app requested an unknown permission and the request was denied
2808 // PACKAGE: The package name of the app requesting the permission
2809 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2810
2811 // ACTION: An unknown permission was revoked for an app
2812 // PACKAGE: The package name of the app the permission was revoked for
2813 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2814
2815 // ACTION: An app requested the permission READ_CALENDAR
2816 // PACKAGE: The package name of the app requesting the permission
2817 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2818
2819 // ACTION: An app was granted the permission READ_CALENDAR
2820 // PACKAGE: The package name of the app that was granted the permission
2821 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2822
2823 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2824 // PACKAGE: The package name of the app requesting the permission
2825 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2826
2827 // ACTION: The permission READ_CALENDAR was revoked for an app
2828 // PACKAGE: The package name of the app the permission was revoked for
2829 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2830
2831 // ACTION: An app requested the permission WRITE_CALENDAR
2832 // PACKAGE: The package name of the app requesting the permission
2833 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2834
2835 // ACTION: An app was granted the permission WRITE_CALENDAR
2836 // PACKAGE: The package name of the app that was granted the permission
2837 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2838
2839 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2840 // PACKAGE: The package name of the app requesting the permission
2841 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2842
2843 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2844 // PACKAGE: The package name of the app the permission was revoked for
2845 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2846
2847 // ACTION: An app requested the permission CAMERA
2848 // PACKAGE: The package name of the app requesting the permission
2849 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2850
2851 // ACTION: An app was granted the permission CAMERA
2852 // PACKAGE: The package name of the app that was granted the permission
2853 ACTION_PERMISSION_GRANT_CAMERA = 643;
2854
2855 // ACTION: An app requested the permission CAMERA and the request was denied
2856 // PACKAGE: The package name of the app requesting the permission
2857 ACTION_PERMISSION_DENIED_CAMERA = 644;
2858
2859 // ACTION: The permission CAMERA was revoked for an app
2860 // PACKAGE: The package name of the app the permission was revoked for
2861 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2862
2863 // ACTION: An app requested the permission READ_CONTACTS
2864 // PACKAGE: The package name of the app requesting the permission
2865 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2866
2867 // ACTION: An app was granted the permission READ_CONTACTS
2868 // PACKAGE: The package name of the app that was granted the permission
2869 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2870
2871 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2872 // PACKAGE: The package name of the app requesting the permission
2873 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2874
2875 // ACTION: The permission READ_CONTACTS was revoked for an app
2876 // PACKAGE: The package name of the app the permission was revoked for
2877 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2878
2879 // ACTION: An app requested the permission WRITE_CONTACTS
2880 // PACKAGE: The package name of the app requesting the permission
2881 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2882
2883 // ACTION: An app was granted the permission WRITE_CONTACTS
2884 // PACKAGE: The package name of the app that was granted the permission
2885 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2886
2887 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2888 // PACKAGE: The package name of the app requesting the permission
2889 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2890
2891 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2892 // PACKAGE: The package name of the app the permission was revoked for
2893 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2894
2895 // ACTION: An app requested the permission GET_ACCOUNTS
2896 // PACKAGE: The package name of the app requesting the permission
2897 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2898
2899 // ACTION: An app was granted the permission GET_ACCOUNTS
2900 // PACKAGE: The package name of the app that was granted the permission
2901 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2902
2903 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2904 // PACKAGE: The package name of the app requesting the permission
2905 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2906
2907 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2908 // PACKAGE: The package name of the app the permission was revoked for
2909 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2910
2911 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2912 // PACKAGE: The package name of the app requesting the permission
2913 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2914
2915 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2916 // PACKAGE: The package name of the app that was granted the permission
2917 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2918
2919 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2920 // PACKAGE: The package name of the app requesting the permission
2921 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2922
2923 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2924 // PACKAGE: The package name of the app the permission was revoked for
2925 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2926
2927 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2928 // PACKAGE: The package name of the app requesting the permission
2929 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2930
2931 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2932 // PACKAGE: The package name of the app that was granted the permission
2933 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2934
2935 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2936 // PACKAGE: The package name of the app requesting the permission
2937 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2938
2939 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2940 // PACKAGE: The package name of the app the permission was revoked for
2941 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2942
2943 // ACTION: An app requested the permission RECORD_AUDIO
2944 // PACKAGE: The package name of the app requesting the permission
2945 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2946
2947 // ACTION: An app was granted the permission RECORD_AUDIO
2948 // PACKAGE: The package name of the app that was granted the permission
2949 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2950
2951 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2952 // PACKAGE: The package name of the app requesting the permission
2953 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2954
2955 // ACTION: The permission RECORD_AUDIO was revoked for an app
2956 // PACKAGE: The package name of the app the permission was revoked for
2957 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2958
2959 // ACTION: An app requested the permission READ_PHONE_STATE
2960 // PACKAGE: The package name of the app requesting the permission
2961 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2962
2963 // ACTION: An app was granted the permission READ_PHONE_STATE
2964 // PACKAGE: The package name of the app that was granted the permission
2965 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2966
2967 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2968 // PACKAGE: The package name of the app requesting the permission
2969 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2970
2971 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2972 // PACKAGE: The package name of the app the permission was revoked for
2973 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2974
2975 // ACTION: An app requested the permission CALL_PHONE
2976 // PACKAGE: The package name of the app requesting the permission
2977 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2978
2979 // ACTION: An app was granted the permission CALL_PHONE
2980 // PACKAGE: The package name of the app that was granted the permission
2981 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2982
2983 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2984 // PACKAGE: The package name of the app requesting the permission
2985 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2986
2987 // ACTION: The permission CALL_PHONE was revoked for an app
2988 // PACKAGE: The package name of the app the permission was revoked for
2989 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2990
2991 // ACTION: An app requested the permission READ_CALL_LOG
2992 // PACKAGE: The package name of the app requesting the permission
2993 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2994
2995 // ACTION: An app was granted the permission READ_CALL_LOG
2996 // PACKAGE: The package name of the app that was granted the permission
2997 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2998
2999 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3000 // PACKAGE: The package name of the app requesting the permission
3001 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3002
3003 // ACTION: The permission READ_CALL_LOG was revoked for an app
3004 // PACKAGE: The package name of the app the permission was revoked for
3005 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3006
3007 // ACTION: An app requested the permission WRITE_CALL_LOG
3008 // PACKAGE: The package name of the app requesting the permission
3009 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3010
3011 // ACTION: An app was granted the permission WRITE_CALL_LOG
3012 // PACKAGE: The package name of the app that was granted the permission
3013 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3014
3015 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3016 // PACKAGE: The package name of the app requesting the permission
3017 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3018
3019 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3020 // PACKAGE: The package name of the app the permission was revoked for
3021 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3022
3023 // ACTION: An app requested the permission ADD_VOICEMAIL
3024 // PACKAGE: The package name of the app requesting the permission
3025 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3026
3027 // ACTION: An app was granted the permission ADD_VOICEMAIL
3028 // PACKAGE: The package name of the app that was granted the permission
3029 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3030
3031 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3032 // PACKAGE: The package name of the app requesting the permission
3033 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3034
3035 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3036 // PACKAGE: The package name of the app the permission was revoked for
3037 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3038
3039 // ACTION: An app requested the permission USE_SIP
3040 // PACKAGE: The package name of the app requesting the permission
3041 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3042
3043 // ACTION: An app was granted the permission USE_SIP
3044 // PACKAGE: The package name of the app that was granted the permission
3045 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3046
3047 // ACTION: An app requested the permission USE_SIP and the request was denied
3048 // PACKAGE: The package name of the app requesting the permission
3049 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3050
3051 // ACTION: The permission USE_SIP was revoked for an app
3052 // PACKAGE: The package name of the app the permission was revoked for
3053 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3054
3055 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3056 // PACKAGE: The package name of the app requesting the permission
3057 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3058
3059 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3060 // PACKAGE: The package name of the app that was granted the permission
3061 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3062
3063 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3064 // PACKAGE: The package name of the app requesting the permission
3065 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3066
3067 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3068 // PACKAGE: The package name of the app the permission was revoked for
3069 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3070
3071 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3072 // PACKAGE: The package name of the app requesting the permission
3073 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3074
3075 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3076 // PACKAGE: The package name of the app that was granted the permission
3077 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3078
3079 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3080 // PACKAGE: The package name of the app requesting the permission
3081 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3082
3083 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3084 // PACKAGE: The package name of the app the permission was revoked for
3085 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3086
3087 // ACTION: An app requested the permission BODY_SENSORS
3088 // PACKAGE: The package name of the app requesting the permission
3089 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3090
3091 // ACTION: An app was granted the permission BODY_SENSORS
3092 // PACKAGE: The package name of the app that was granted the permission
3093 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3094
3095 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3096 // PACKAGE: The package name of the app requesting the permission
3097 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3098
3099 // ACTION: The permission BODY_SENSORS was revoked for an app
3100 // PACKAGE: The package name of the app the permission was revoked for
3101 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3102
3103 // ACTION: An app requested the permission SEND_SMS
3104 // PACKAGE: The package name of the app requesting the permission
3105 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3106
3107 // ACTION: An app was granted the permission SEND_SMS
3108 // PACKAGE: The package name of the app that was granted the permission
3109 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3110
3111 // ACTION: An app requested the permission SEND_SMS and the request was denied
3112 // PACKAGE: The package name of the app requesting the permission
3113 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3114
3115 // ACTION: The permission SEND_SMS was revoked for an app
3116 // PACKAGE: The package name of the app the permission was revoked for
3117 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3118
3119 // ACTION: An app requested the permission RECEIVE_SMS
3120 // PACKAGE: The package name of the app requesting the permission
3121 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3122
3123 // ACTION: An app was granted the permission RECEIVE_SMS
3124 // PACKAGE: The package name of the app that was granted the permission
3125 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3126
3127 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3128 // PACKAGE: The package name of the app requesting the permission
3129 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3130
3131 // ACTION: The permission RECEIVE_SMS was revoked for an app
3132 // PACKAGE: The package name of the app the permission was revoked for
3133 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3134
3135 // ACTION: An app requested the permission READ_SMS
3136 // PACKAGE: The package name of the app requesting the permission
3137 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3138
3139 // ACTION: An app was granted the permission READ_SMS
3140 // PACKAGE: The package name of the app that was granted the permission
3141 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3142
3143 // ACTION: An app requested the permission READ_SMS and the request was denied
3144 // PACKAGE: The package name of the app requesting the permission
3145 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3146
3147 // ACTION: The permission READ_SMS was revoked for an app
3148 // PACKAGE: The package name of the app the permission was revoked for
3149 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3150
3151 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3152 // PACKAGE: The package name of the app requesting the permission
3153 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3154
3155 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3156 // PACKAGE: The package name of the app that was granted the permission
3157 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3158
3159 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3160 // PACKAGE: The package name of the app requesting the permission
3161 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3162
3163 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3164 // PACKAGE: The package name of the app the permission was revoked for
3165 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3166
3167 // ACTION: An app requested the permission RECEIVE_MMS
3168 // PACKAGE: The package name of the app requesting the permission
3169 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3170
3171 // ACTION: An app was granted the permission RECEIVE_MMS
3172 // PACKAGE: The package name of the app that was granted the permission
3173 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3174
3175 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3176 // PACKAGE: The package name of the app requesting the permission
3177 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3178
3179 // ACTION: The permission RECEIVE_MMS was revoked for an app
3180 // PACKAGE: The package name of the app the permission was revoked for
3181 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3182
3183 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3184 // PACKAGE: The package name of the app requesting the permission
3185 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3186
3187 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3188 // PACKAGE: The package name of the app that was granted the permission
3189 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3190
3191 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3192 // PACKAGE: The package name of the app requesting the permission
3193 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3194
3195 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3196 // PACKAGE: The package name of the app the permission was revoked for
3197 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3198
3199 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3200 // PACKAGE: The package name of the app requesting the permission
3201 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3202
3203 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3204 // PACKAGE: The package name of the app that was granted the permission
3205 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3206
3207 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3208 // PACKAGE: The package name of the app requesting the permission
3209 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3210
3211 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3212 // PACKAGE: The package name of the app the permission was revoked for
3213 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3214
Mahaverfa6566e2016-11-29 21:08:14 +00003215 // ACTION: Logged when a provisioning session has started
3216 PROVISIONING_SESSION_STARTED = 734;
3217
3218 // ACTION: Logged when a provisioning session has completed
3219 PROVISIONING_SESSION_COMPLETED = 735;
3220
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003221 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003222 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003223 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003224
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003225 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003226 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003227 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003228
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003229 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003230 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003231 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003232
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003233 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003234 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003235 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003236
Santos Cordon3107d292016-09-20 15:50:35 -07003237 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3238 // SUBTYPE: slider value
3239 // CATEGORY: QUICK_SETTINGS
3240 // OS: 6.0
3241 ACTION_BRIGHTNESS_FOR_VR = 498;
3242
Hugo Benichie1cbf152016-12-08 09:36:52 +09003243 // ACTION: A captive portal was detected during network validation
3244 // CATEGORY: NOTIFICATION
3245 // OS: N-MR2
3246 NOTIFICATION_NETWORK_SIGN_IN = 740;
3247
3248 // ACTION: An unvalidated network without Internet was selected by the user
3249 // CATEGORY: NOTIFICATION
3250 // OS: N-MR2
3251 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3252
3253 // ACTION: A validated network failed revalidation and lost Internet access
3254 // CATEGORY: NOTIFICATION
3255 // OS: N-MR2
3256 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3257
3258 // ACTION: The system default network switched to a different network
3259 // CATEGORY: NOTIFICATION
3260 // OS: N-MR2
3261 NOTIFICATION_NETWORK_SWITCH = 743;
3262
Fan Zhang074c4cb2016-12-21 12:10:33 -08003263 // OPEN: Settings > System
3264 SETTINGS_SYSTEM_CATEGORY = 744;
3265
3266 // OPEN: Settings > Storage
3267 SETTINGS_STORAGE_CATEGORY = 745;
3268
3269 // OPEN: Settings > Network & Internet
3270 SETTINGS_NETWORK_CATEGORY = 746;
3271
3272 // OPEN: Settings > Connected Device
3273 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3274
3275 // OPEN: Settings > App & Notification
3276 SETTINGS_APP_NOTIF_CATEGORY = 748;
3277
3278 // OPEN: Settings > System > Input & Gesture
3279 SETTINGS_INPUT_CATEGORY = 749;
3280
3281 // OPEN: Settings > System > Language & Region
3282 SETTINGS_LANGUAGE_CATEGORY = 750;
3283
3284 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3285 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3286
3287 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3288 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3289
3290 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3291 SETTINGS_GESTURE_PICKUP = 753;
3292
3293 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3294 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3295
3296 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3297 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3298
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003299 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3300 // CATEGORY: Settings
3301 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3302
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003303 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003304 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003305 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3306 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3307 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003308
Salvador Martinezc43ab062016-12-21 11:09:11 -08003309 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3310 // user accepted
3311 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003312
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003313 // Enclosing category for group of APP_TRANSITION_FOO events,
3314 // logged when we execute an app transition.
3315 APP_TRANSITION = 761;
3316
Fan Zhang945deea2017-01-11 16:37:49 -08003317 // ACTION: User leaves Settings search UI without entering any query.
3318 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3319
3320 // ACTION: Clicking on any search result in Settings.
3321 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003322
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003323 // ACTION: Allow Battery optimization for an app
3324 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3325
3326 // ACTION: Deny Battery optimization for an app
3327 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3328
3329 // ACTION: Enable Device Admin app
3330 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3331
3332 // ACTION: Disable Device Admin app
3333 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3334
3335 // ACTION: Allow "Do Not Disturb access" for an app
3336 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3337
3338 // ACTION: Deny "Do Not Disturb access" for an app
3339 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3340
3341 // ACTION: Allow "Draw over other apps" for an app
3342 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3343
Christine Franks47175c32017-03-14 10:21:25 -07003344 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003345 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3346
3347 // ACTION: Allow "VR helper services" for an app
3348 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3349
3350 // ACTION: Deny "VR helper services" for an app
3351 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3352
3353 // ACTION: Allow "Modify system settings" for an app
3354 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3355
3356 // ACTION: Deny "Modify system settings" for an app
3357 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3358
3359 // ACTION: Allow "Notification access" for an app
3360 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3361
3362 // ACTION: Deny "Notification access" for an app
3363 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3364
3365 // ACTION: "Premium SMS access" for an app - "ask user" option
3366 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3367
3368 // ACTION: "Premium SMS access" for an app - "never allow" option
3369 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3370
3371 // ACTION: "Premium SMS access" for an app - "always allow" option
3372 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3373
3374 // ACTION: Allow "Unrestricted data access" for an app
3375 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3376
3377 // ACTION: Deny "Unrestricted data access" for an app
3378 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3379
3380 // ACTION: Allow "Usage access" for an app
3381 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3382
3383 // ACTION: Deny "Usage access" for an app
3384 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3385
Fan Zhangad5dacc2017-01-18 14:18:54 -08003386 // OPEN: Settings > Apps > Default Apps > Default browser
3387 DEFAULT_BROWSER_PICKER = 785;
3388
3389 // OPEN: Settings > Apps > Default Apps > Default emergency app
3390 DEFAULT_EMERGENCY_APP_PICKER = 786;
3391
3392 // OPEN: Settings > Apps > Default Apps > Default home
3393 DEFAULT_HOME_PICKER = 787;
3394
3395 // OPEN: Settings > Apps > Default Apps > Default phone
3396 DEFAULT_PHONE_PICKER = 788;
3397
3398 // OPEN: Settings > Apps > Default Apps > Default sms
3399 DEFAULT_SMS_PICKER = 789;
3400
3401 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3402 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3403
3404 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3405 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3406
Jason Long1b51da62017-01-24 11:35:31 -08003407 // OPEN: Settings > Apps > Default Apps > Default autofill app
3408 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003409
Chris Wren26ca65d2016-11-29 10:43:28 -05003410 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003411 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003412 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3413 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3414 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3415 NOTIFICATION_ID = 796;
3416 NOTIFICATION_TAG = 797;
3417 NOTIFICATION_SHADE_INDEX = 798;
3418 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003419
Anas Karbilaf7648f42016-12-11 00:55:02 +01003420 // OPEN: QS NFC tile shown
3421 // ACTION: QS NFC tile tapped
3422 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003423 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003424
Chris Wren26ca65d2016-11-29 10:43:28 -05003425 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003426 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003427 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3428 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3429 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3430 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3431 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3432 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3433
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003434 // ACTION: "Force stop" action on an app
3435 ACTION_APP_FORCE_STOP = 807;
3436
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003437 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3438 // CATEGORY: SETTINGS
3439 // OS: 8.0
3440 MANAGE_EXTERNAL_SOURCES = 808;
3441
Mahaver6cd47162017-01-23 09:59:33 +00003442 // ACTION: Logged when terms activity finishes.
3443 // TIME: Indicates time taken by terms activity to finish in MS.
3444 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3445
3446 // Indicates number of terms displayed on the terms screen.
3447 PROVISIONING_TERMS_COUNT = 810;
3448
3449 // Indicates number of terms read on the terms screen.
3450 PROVISIONING_TERMS_READ = 811;
3451
Winson Chung59fda9e2017-01-20 16:14:51 -08003452 // Logs that the user has edited the picture-in-picture settings.
3453 // CATEGORY: SETTINGS
3454 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3455
Winson Chungf4ac0632017-03-17 12:34:12 -07003456 // ACTION: Allow "Enable picture-in-picture" for an app
3457 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003458
Winson Chungf4ac0632017-03-17 12:34:12 -07003459 // ACTION: Deny "Enable picture-in-picture" for an app
3460 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003461
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003462 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3463 // CATEGORY: SETTINGS
3464 // OS: 8.0
3465 TTS_SLIDERS = 815;
3466
Jason Monk524fb402017-01-25 10:33:31 -05003467 // ACTION: Settings -> Display -> Theme
3468 ACTION_THEME = 816;
3469
chchaob8e253a2017-01-25 12:12:09 -08003470 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3471 // ACTION: Select to Speak configuration is chosen
3472 // SUBTYPE: 0 is off, 1 is on
3473 // CATEGORY: SETTINGS
3474 // OS: N
3475 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3476
Anton Philippov95a553e2017-01-27 00:08:24 +00003477 // OPEN: Settings > System > Backup
3478 // CATEGORY: SETTINGS
3479 // OS: O
3480 BACKUP_SETTINGS = 818;
3481
Winson Chung14fbe142016-12-19 16:18:24 -08003482 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003483 // VALUE: true if it was entered while hiding as a result of moving to
3484 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003485 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3486
3487 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3488 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3489 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3490
3491 // ACTION: The activity currently in picture-in-picture was minimized
3492 // VALUE: True if the PiP was minimized, false otherwise
3493 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3494
3495 // ACTION: Picture-in-picture was dismissed via the dismiss button
3496 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3497 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3498
3499 // ACTION: The visibility of the picture-in-picture meny
3500 // VALUE: Whether or not the menu is visible
3501 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3502
3503 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3504 // logged when the aspect ratio changes
3505 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3506
3507 // The current aspect ratio of the PiP, logged when it changes.
3508 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3509
Chris Wren27a52fa2017-02-01 14:21:43 -05003510 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3511 // CATEGORY: GLOBAL_SYSTEM_UI
3512 // OS: O
3513 FIELD_GESTURE_LENGTH = 826;
3514
3515 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3516 // CATEGORY: GLOBAL_SYSTEM_UI
3517 // OS: O
3518 FIELD_GESTURE_VELOCITY = 827;
3519
Christine Franks27fde392017-02-07 10:21:55 -08003520 // OPEN: Carrier demo mode password dialog
3521 CARRIER_DEMO_MODE_PASSWORD = 828;
3522
Fan Zhang70967f32017-02-13 16:02:24 -08003523 // ACTION: Create a Settings shortcut item.
3524 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3525
3526 // ACTION: A tile in Settings information architecture is clicked
3527 ACTION_SETTINGS_TILE_CLICK = 830;
3528
Julia Reynolds520df6e2017-02-13 09:05:10 -05003529 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3530 // updated
3531 // CATEGORY: NOTIFICATION
3532 // OS: O
3533 NOTIFICATION_SNOOZED = 831;
3534
3535 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3536 // OS: O
3537 NOTIFICATION_SNOOZED_CRITERIA = 832;
3538
Fan Zhang65899432017-02-14 13:36:53 -08003539 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003540 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003541 FIELD_CONTEXT = 833;
3542
Fan Zhangd95dcb42017-02-14 13:48:09 -08003543 // ACTION: Settings advanced button is expanded
3544 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3545
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003546 // ACTION: Logs the number of times the saved network evaluator was used to
3547 // recommend a wifi network
3548 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3549
3550 // ACTION: Logs the number of times the recommended network evaluator was
3551 // used to recommend a wifi network
3552 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3553
3554 // ACTION: Logs the number of times a recommended network was resulted in a
3555 // successful connection
3556 // VALUE: true if the connection was successful, false if the connection failed
3557 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3558
Daniel Nishic581bfc2017-02-08 10:18:19 -08003559 // OPEN: Settings > Storage > Games
3560 // CATEGORY: SETTINGS
3561 // OS: O
3562 APPLICATIONS_STORAGE_GAMES = 838;
3563
3564 // OPEN: Settings > Storage > Audio and Music
3565 // CATEGORY: SETTINGS
3566 // OS: O
3567 APPLICATIONS_STORAGE_MUSIC = 839;
3568
3569 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3570 // CATEGORY: SETTINGS
3571 // OS: O
3572 STORAGE_FREE_UP_SPACE_NOW = 840;
3573
3574 // ACTION: Settings > Storage > Files to open the File Manager
3575 // CATEGORY: SETTINGS
3576 // OS: O
3577 STORAGE_FILES = 841;
3578
Fan Zhangb1d49222017-02-15 17:12:58 -08003579 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003580 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003581
Fan Zhang7f2cace2017-02-17 12:05:48 -08003582 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3583 DEFAULT_ASSIST_PICKER = 843;
3584
3585 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3586 DEFAULT_VOICE_INPUT_PICKER = 844;
3587
Daniel Nishi4058a842017-02-21 17:11:35 -08003588 // OPEN: Settings > Storage > [Profile]
3589 SETTINGS_STORAGE_PROFILE = 845;
3590
Doris Lingedb84c32017-02-23 10:56:01 -08003591 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3592 // CATEGORY: SETTINGS
3593 // OS: O
3594 ENCRYPTION_AND_CREDENTIAL = 846;
3595
Fan Zhangb66e5422017-02-24 14:37:45 -08003596 // ACTION: Settings > About device > Build number
3597 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3598
3599 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3600 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3601
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003602 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3603 // CATEGORY: SETTINGS
3604 // OS: O
3605 WIFI_NETWORK_DETAILS = 849;
3606
jackqdyuleia2a14342017-02-28 16:20:48 -08003607 // ACTION: Settings > Battery > Menu > Usage Alerts
3608 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3609
3610 // ACTION: Settings > Battery > Menu > Optimization
3611 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3612
3613 // ACTION: Settings > Battery > Menu > Apps Toggle
3614 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3615
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003616 // ACTION: Settings > Any preference is changed
3617 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3618
3619 // FIELD: The name of preference when it is changed in Settings
3620 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3621
3622 // FIELD: The new value of preference when it is changed in Settings
3623 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3624
Julia Reynoldsd373d782017-03-03 13:32:57 -05003625 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3626 // channel updated
3627 // PACKAGE: the package the channel belongs too
3628 // CATEGORY: NOTIFICATION
3629 // OS: O
3630 ACTION_NOTIFICATION_CHANNEL = 856;
3631
3632 // Tagged data for notification channel. String.
3633 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3634
3635 // Tagged data for notification channel. int.
3636 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3637
3638 // OPEN: Notification channel group created.
3639 // PACKAGE: the package the group belongs to
3640 // CATEGORY: NOTIFICATION
3641 // OS: O
3642 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3643
3644 // Tagged data for notification channel group. String.
3645 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3646
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003647 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3648 // CATEGORY: SETTINGS
3649 // OS: O
3650 SETTINGS_NETWORK_SCORER = 861;
3651
Fan Zhang99861312017-03-07 14:32:38 -08003652 // OPEN: Settings > About device > Model > Hardware info dialog
3653 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3654
mariagpuyol0f5512e2017-03-01 12:09:56 -08003655 // ACTION: Checks whether a contact's phone still exists
3656 // Value 0: It doesn't exist anymore
3657 // Value 1: It still exists
3658 // Value 2: A SecurityException was thrown
3659 // CATEGORY: SETTINGS
3660 // OS: N
3661 ACTION_PHONE_EXISTS = 863;
3662
3663 // ACTION: Retrieves a contact from CP2
3664 // Value 0: Contact retrieved without issues
3665 // Value 1: An IllegalArgumentException was thrown
3666 // CATEGORY: SETTINGS
3667 // OS: N
3668 ACTION_GET_CONTACT = 864;
3669
Chris Wren4d6b54d2017-04-27 16:56:54 -04003670 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003671 // internal platform metrics use.
3672 RESERVED_FOR_LOGBUILDER_PID = 865;
3673
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003674 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3675 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3676
3677 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3678 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3679
3680 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3681 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3682
3683 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3684 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3685
3686 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3687 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3688
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003689 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003690 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003691
Fan Zhang082d21c2017-03-13 15:25:54 -07003692 // ACTION: Settings > App detail > Uninstall
3693 ACTION_SETTINGS_UNINSTALL_APP = 872;
3694
3695 // ACTION: Settings > App detail > Uninstall Device admin app
3696 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3697
3698 // ACTION: Settings > App detail > Disable app
3699 ACTION_SETTINGS_DISABLE_APP = 874;
3700
3701 // ACTION: Settings > App detail > Enable app
3702 ACTION_SETTINGS_ENABLE_APP = 875;
3703
3704 // ACTION: Settings > App detail > Clear data
3705 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3706
3707 // ACTION: Settings > App detail > Clear cache
3708 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3709
3710 // ACTION: Clicking on any search result in Settings.
3711 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3712
3713 // FIELD: Settings inline search result name
3714 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3715
3716 // FIELD: Settings inline search result value
3717 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3718
Fan Zhang53797932017-03-13 17:46:24 -07003719 // ACTION: Settings > Search > Click saved queries
3720 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3721
Doris Lingbf8d9de2017-03-15 11:52:50 -07003722 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3723 // CATEGORY: SETTINGS
3724 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3725
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003726 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3727 // PACKAGE: The package name of the app requesting the permission
3728 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3729
3730 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3731 // PACKAGE: The package name of the app that was granted the permission
3732 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3733
3734 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3735 // PACKAGE: The package name of the app requesting the permission
3736 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3737
3738 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3739 // PACKAGE: The package name of the app the permission was revoked for
3740 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3741
3742 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3743 // PACKAGE: The package name of the app requesting the permission
3744 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3745
3746 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3747 // PACKAGE: The package name of the app that was granted the permission
3748 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3749
3750 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3751 // PACKAGE: The package name of the app requesting the permission
3752 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3753
3754 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3755 // PACKAGE: The package name of the app the permission was revoked for
3756 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3757
3758 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3759 // PACKAGE: The package name of the app requesting the permission
3760 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3761
3762 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3763 // PACKAGE: The package name of the app that was granted the permission
3764 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3765
3766 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3767 // PACKAGE: The package name of the app requesting the permission
3768 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3769
3770 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3771 // PACKAGE: The package name of the app the permission was revoked for
3772 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3773
3774 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3775 // PACKAGE: The package name of the app requesting the permission
3776 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3777
3778 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3779 // PACKAGE: The package name of the app that was granted the permission
3780 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3781
3782 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3783 // PACKAGE: The package name of the app requesting the permission
3784 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3785
3786 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3787 // PACKAGE: The package name of the app the permission was revoked for
3788 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3789
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003790 // ACTION: Phase 1 of instant application resolution occurred
3791 // OS: O
3792 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3793
3794 // ACTION: Phase 2 of instant application resolution occurred
3795 // OS: O
3796 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3797
3798 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3799 // OS: O
3800 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3801
3802 // FIELD: The status of an ephemeral resolution phase
3803 // Value 0: success
3804 // Value 1: no full hash match
3805 // OS: O
3806 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3807
3808 // FIELD - A token to identify all events that are part of the same instant application launch
3809 // OS: O
3810 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3811
3812 // FIELD - The name of the package responsible for launching the activity
3813 // OS: O
3814 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3815
3816 // FIELD - Whether or not the launched activity is part of an instant application
3817 // OS: O
3818 APP_TRANSITION_IS_EPHEMERAL = 905;
3819
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003820 // An autofill session was started
3821 // Package: Package of app that is autofilled
3822 AUTOFILL_SESSION_STARTED = 906;
3823
3824 // An autofill request was processed by a service
3825 // Type TYPE_SUCCESS: The request succeeded
3826 // Type TYPE_FAILURE: The request failed
3827 // Package: Package of app that is autofilled
3828 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3829 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3830 AUTOFILL_REQUEST = 907;
3831
3832 // Tag of a field for a package of an autofill service
3833 FIELD_AUTOFILL_SERVICE = 908;
3834
3835 // Tag of a field for the number of datasets
3836 FIELD_AUTOFILL_NUM_DATASETS = 909;
3837
3838 // An autofill dataset selection UI was shown
3839 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3840 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3841 // Type TYPE_ACTION: dataset was selected
3842 // Type TYPE_DETAIL: authentication was selected
3843 // Package: Package of app that was autofilled
3844 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3845 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3846 AUTOFILL_FILL_UI = 910;
3847
3848 // Tag of a field for the length of the filter text
3849 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3850
3851 // An autofill authentification succeeded
3852 // Package: Package of app that was autofilled
3853 AUTOFILL_AUTHENTICATED = 912;
3854
3855 // An activity was autofilled and all values could be applied
3856 // Package: Package of app that is autofilled
3857 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3858 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3859 AUTOFILL_DATASET_APPLIED = 913;
3860
3861 // Tag of a field for the number values to be filled in
3862 FIELD_AUTOFILL_NUM_VALUES = 914;
3863
3864 // Tag of a field for the number of views that were filled
3865 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3866
3867 // An autofill save UI was shown
3868 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3869 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3870 // Type TYPE_ACTION: data was saved
3871 // Package: Package of app that was autofilled
3872 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3873 AUTOFILL_SAVE_UI = 916;
3874
3875 // Tag of a field for the number of saveable ids
3876 FIELD_AUTOFILL_NUM_IDS = 917;
3877
3878 // ACTION: An autofill service was reqiested to save data
3879 // Type TYPE_SUCCESS: The request succeeded
3880 // Type TYPE_FAILURE: The request failed
3881 // Package: Package of app that was autofilled
3882 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3883 AUTOFILL_DATA_SAVE_REQUEST = 918;
3884
3885 // An auto-fill session was finished
3886 // Package: Package of app that was autofilled
3887 AUTOFILL_SESSION_FINISHED = 919;
3888
Chris Wren148805582017-03-17 17:18:11 -04003889 // meta-event: a reader has checkpointed the log here.
3890 METRICS_CHECKPOINT = 920;
3891
Fan Zhanged1845f2017-03-23 14:46:59 -07003892 // OPEN: Settings -> Display -> When in VR Mode
3893 VR_DISPLAY_PREFERENCE = 921;
3894
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003895 // OPEN: Settings > Accessibility > Magnification
3896 // CATEGORY: SETTINGS
3897 // OS: O
3898 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003899
3900 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3901 // app.
3902 // VALUE: The package name of the app
3903 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3904
Fan Zhang1a34e752017-03-24 13:44:51 -07003905 // OPEN: Settings -> System -> Reset options
3906 RESET_DASHBOARD = 924;
3907
Jason Monk8c09ac72017-03-16 11:53:40 -04003908 // ACTION: QS -> Tile clicked
3909 ACTION_QS_CLICK = 925;
3910
3911 // ACTION: QS -> Secondary click
3912 ACTION_QS_SECONDARY_CLICK = 926;
3913
3914 // FIELD: Position info in QS clicks
3915 FIELD_QS_POSITION = 927;
3916
3917 // FIELD: The value of a QS tile when clicked (if applicable)
3918 FIELD_QS_VALUE = 928;
3919
3920 // ACTION: QS -> Detail panel -> more settings
3921 ACTION_QS_MORE_SETTINGS = 929;
3922
3923 // ACTION: QS -> Click date
3924 ACTION_QS_DATE = 930;
3925
Jason Monk1b775652017-03-31 15:42:27 -04003926 // ACTION: Event on nav button
3927 ACTION_NAV_BUTTON_EVENT = 931;
3928
3929 // FIELD: Flags for a nav button event
3930 FIELD_FLAGS = 932;
3931
3932 // FIELD: Action for a nav button event
3933 FIELD_NAV_ACTION = 933;
3934
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003935 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3936 // CATEGORY: SETTINGS
3937 // OS: O
3938 FINGERPRINT_REMOVE_SIDECAR = 934;
3939
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003940 // OPEN: Settings > Storage > Movies & TV
3941 // CATEGORY: SETTINGS
3942 // OS: O
3943 APPLICATIONS_STORAGE_MOVIES = 935;
3944
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003945 // OPEN: Text selection "assist" menu item shown.
3946 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3947 // CATEGORY: TEXT_CONTROLS
3948 // OS: O
3949 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3950
3951 // ACTION: Text selection "assist" menu item clicked.
3952 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3953 // CATEGORY: TEXT_CONTROLS
3954 // OS: O
3955 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3956
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003957 // OPEN: Settings > Security > Managed Device Info > Apps installed
3958 // CATEGORY: SETTINGS
3959 // OS: O
3960 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3961
3962 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3963 // CATEGORY: SETTINGS
3964 // OS: O
3965 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3966
3967 // OPEN: Settings > Security > Managed Device Info > Default apps
3968 // CATEGORY: SETTINGS
3969 // OS: O
3970 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3971
Julia Reynolds80b18072017-04-23 12:27:07 -04003972 // OPEN: Settings > Notifications > An app > A channel > Importance
3973 // CATEGORY: SETTINGS
3974 // OS: O
3975 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3976
3977 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3978 // CATEGORY: SETTINGS
3979 // OS: O
3980 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3981
Chris Wren4d6b54d2017-04-27 16:56:54 -04003982 // This value should never appear in log outputs - it is reserved for
3983 // internal platform metrics use.
3984 RESERVED_FOR_LOGBUILDER_UID = 943;
3985
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003986 // OPEN: Running background apps notification > List of background apps
3987 // CATEGORY: GLOBAL_SYSTEM_UI
3988 // OS: O
3989 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3990
Jorim Jaggi515dd682017-05-05 15:05:07 +02003991 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3992 // client.
3993 // OS: O
3994 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3995
Chris Wrenb3921792017-06-01 13:34:46 -04003996 // FIELD - The group ID of a notification.
3997 // Type: string
3998 // OS: O
3999 FIELD_NOTIFICATION_GROUP_ID = 946;
4000
4001 // FIELD - If the notification is a group summary: 1.
4002 // Type: int encoded boolean
4003 // OS: O
4004 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4005
Chris Wren26ca65d2016-11-29 10:43:28 -05004006 // ---- End O Constants, all O constants go above this line ----
4007
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004008 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4009 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4010
jackqdyulei92e492e2017-04-28 13:04:42 -07004011 // OPEN: Settings > Battery > High Usage > Abnormal app page
4012 // CATEGORY: SETTINGS
4013 FUELGAUGE_ANOMALY_DETAIL = 987;
4014
4015 // OPEN: Settings > Battery > High Usage
4016 DIALOG_HANDLE_ANOMALY = 988;
4017
Jonathan Solnita4138162017-05-10 21:06:04 -07004018 // ACTION: Camera lift gesture
4019 // CATEGORY: GLOBAL_SYSTEM_UI
4020 // OS: O
4021 ACTION_CAMERA_LIFT_TRIGGER = 989;
4022
Maurice Lam76ae09c2017-05-05 12:03:49 -07004023 // OPEN: Choose screen lock dialog in Settings
4024 // CATEGORY: SETTINGS
4025 // OS: O DR
4026 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4027
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004028 // OPEN: Assist Gesture training intro in Settings
4029 // CATEGORY: SETTINGS
4030 // OS: O DR
4031 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4032
4033 // OPEN: Assist Gesture training enrolling in Settings
4034 // CATEGORY: SETTINGS
4035 // OS: O DR
4036 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4037
4038 // OPEN: Assist Gesture training finished in Settings
4039 // CATEGORY: SETTINGS
4040 // OS: O DR
4041 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4042
Fan Zhangc666a202017-05-18 17:50:20 -07004043 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4044 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4045
4046 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4047 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4048
Philip Quinn0f9566d2017-05-23 10:32:08 -07004049 // OPEN: Settings > System > Languages & input > Assist gesture
4050 // CATEGORY: SETTINGS
4051 // OS: O DR
4052 SETTINGS_ASSIST_GESTURE = 996;
4053
4054 // ACTION: Assist gesture released without triggering
4055 // CATEGORY: GLOBAL_SYSTEM_UI
4056 // OS: O DR
4057 ASSIST_GESTURE_RELEASED = 997;
4058
4059 // ACTION: Assist gesture primed
4060 // CATEGORY: GLOBAL_SYSTEM_UI
4061 // OS: O DR
4062 ASSIST_GESTURE_PRIMED = 998;
4063
4064 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004065 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004066 // CATEGORY: GLOBAL_SYSTEM_UI
4067 // OS: O DR
4068 ASSIST_GESTURE_TRIGGERED = 999;
4069
Fan Zhang238162b2017-05-25 14:01:41 -07004070 // ACTION: Update default app from Settings
4071 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4072
4073 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004074 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004075
4076 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004077 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004078
Adrian Roos1c81d772017-05-25 18:00:21 -07004079 // OPEN: Settings > Display > Ambient Display
4080 // CATEGORY: SETTINGS
4081 // OS: O DR
4082 AMBIENT_DISPLAY_SETTINGS = 1003;
4083
Hugo Benichi11da42b2017-05-31 11:11:37 +09004084 // ACTION: CaptivePortalLoginActivity starts
4085 // CATEGORY: GLOBAL_SYSTEM_UI
4086 // OS: O DR
4087 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4088
4089 // ACTION: CaptivePortalLoginActivity auto-closes
4090 // CATEGORY: GLOBAL_SYSTEM_UI
4091 // OS: O DR
4092 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4093
4094 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4095 // CATEGORY: GLOBAL_SYSTEM_UI
4096 // OS: O DR
4097 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4098
4099 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4100 // CATEGORY: GLOBAL_SYSTEM_UI
4101 // OS: O DR
4102 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4103
4104 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4105 // CATEGORY: SETTINGS
4106 // OS: O DR
4107 ACTION_WIFI_SIGNIN = 1008;
4108
Antony Sargentf3cc3172017-05-04 14:58:06 -07004109 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4110 // CATEGORY: SETTINGS
4111 // OS: O DR
4112 BLUETOOTH_DEVICE_DETAILS = 1009;
4113
fanzhang172255759d2017-06-05 21:43:47 -07004114 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4115 CONFIGURE_KEYGUARD_DIALOG = 1010;
4116
Fan Zhange33c70d2017-06-06 12:37:13 -07004117 // Open: Settings > Search > No Result View
4118 SETTINGS_SEARCH_NO_RESULT = 1011;
4119
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004120 // OPEN: Assist Gesture before training
4121 // CATEGORY: SETTINGS
4122 // OS: O DR
4123 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4124
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004125 // CaptivePortalLoginActivity displays SSL error page
4126 // CATEGORY: GLOBAL_SYSTEM_UI
4127 // OS: O DR
4128 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4129
Fan Zhang1a0fc992017-06-13 13:45:21 -07004130 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4131 WIFI_TETHER_SETTINGS = 1014;
4132
Antony Sargentc3b5da62017-06-16 11:50:13 -07004133 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4134 // -> Edit name button.
4135 // CATEGORY: SETTINGS
4136 // OS: O DR
4137 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4138
Fan Zhang543587d2017-06-19 12:32:14 -07004139 // ACTION: Settings > Notification Settings > Open application notification
4140 // CATEGORY: SETTINGS
4141 // OS: O DR
4142 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4143
4144 // ACTION: Settings > App Info > Open app settings
4145 // CATEGORY: SETTINGS
4146 // OS: O DR
4147 ACTION_OPEN_APP_SETTING = 1017;
4148
jackqdyulei2f1a3592017-06-19 13:11:05 -07004149 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4150 // CATEGORY: SETTINGS
4151 // OS: O DR
4152 BLUETOOTH_PAIRING = 1018;
4153
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004154 // ACTION: Collect PSD Signals
4155 // CATEGORY: SETTINGS
4156 // OS: O DR
4157 ACTION_PSD_LOADER = 1019;
4158
jackqdyulei602bcc92017-06-21 15:17:53 -07004159 // ACTION: Background check action on an app
4160 // CATEGORY: SETTINGS
4161 // OS: O DR
4162 ACTION_APP_BACKGROUND_CHECK = 1020;
4163
4164 // ACTION: Location check action on an app
4165 // CATEGORY: SETTINGS
4166 // OS: O DR
4167 ACTION_APP_LOCATION_CHECK = 1021;
4168
Charlie Wang15a36ed2017-06-14 14:46:39 -07004169 // Device headset status
4170 // CATEGORY: OTHER
4171 // SUBTYPE: 1 is DON, 2 is DOFF
4172 // OS: O DR
4173 ACTION_HEADSET_STATUS = 1022;
4174
4175 // Device Headset Plug status
4176 // CATEGORY: OTHER
4177 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4178 // OS: O DR
4179 ACTION_HEADSET_PLUG = 1023;
4180
4181 // Device Headset battery level on Plug
4182 // CATEGORY: OTHER
4183 // FIELD - The battery percentage when the user decided to plug in
4184 // Type: integer
4185 // OS: O DR
4186 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4187
Charlie Wang566ec702017-06-26 15:30:03 -07004188 // Device Headset battery level on Plug
4189 // CATEGORY: OTHER
4190 // FIELD - The battery percentage when the user decided to plug in
4191 // Type: integer
4192 // OS: O DR
4193 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4194
Charlie Wang15a36ed2017-06-14 14:46:39 -07004195 // Device Headset Pose status
4196 // CATEGORY: OTHER
4197 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4198 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004199 ACTION_HEADSET_POSE_STATUS = 1026;
4200
4201 // Device Headset Usage session time
4202 // CATEGORY: OTHER
4203 // FIELD - The time the headset was used in a session
4204 // OS: O DR
4205 FIELD_SESSION_TIME_MS = 1027;
4206
4207 // Device Headset Idle time
4208 // CATEGORY: OTHER
4209 // FIELD - The time in between each session
4210 // OS: O DR
4211 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4212
4213 // Device Headset charge session time
4214 // CATEGORY: OTHER
4215 // FIELD - The time taken for each charge
4216 // OS: O DR
4217 FIELD_TIME_OF_CHARGE_MS = 1029;
4218
4219 // Device Headset time between charge
4220 // CATEGORY: OTHER
4221 // FIELD - The time in between each charge
4222 // OS: O DR
4223 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004224
Antony Sargentca701a22017-07-05 17:02:00 -07004225 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4226 // -> Forget button.
4227 // CATEGORY: SETTINGS
4228 // OS: O DR
4229 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4230
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004231 // An event from the camera service
4232 // CATEGORY: OTHER
4233 // SUBTYPE: CameraEvent
4234 // OS: O DR
4235 ACTION_CAMERA_EVENT = 1032;
4236
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004237 // OPEN: Settings > Trampoline Intent > Settings page
4238 // CATEGORY: SETTINGS
4239 // OS: O DR
4240 TRAMPOLINE_SETTINGS_EVENT = 1033;
4241
Chris Wren9a4f2662017-06-29 10:10:02 -04004242 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4243
Malcolm Chen21062542017-06-20 11:36:01 -07004244 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4245 // CATEGORY: SETTINGS
4246 // OS: O MR
4247 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4248
4249 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4250 // CATEGORY: SETTINGS
4251 // OS: O MR
4252 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4253
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004254 // FIELD - State of asynchronous ranking when Settings search result is clicked
4255 // CATEGORY: SETTINGS
4256 // OS: O MR
4257 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4258
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004259 // ACTION: Settings > Connected devices > SMS Mirroring
4260 // CATEGORY: SETTINGS
4261 // OS: O MR
4262 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4263
Kang Li2c571892017-07-05 14:47:32 -07004264 // ACTION: Chooser picked a ranked target.
4265 // CATEGORY: GLOBAL_SYSTEM_UI
4266 // OS: O MR
4267 ACTION_TARGET_SELECTED = 1085;
4268
4269 // FIELD - is category used in Chooser: 1.
4270 // Type: int encoded boolean
4271 // CATEGORY: GLOBAL_SYSTEM_UI
4272 // OS: O MR
4273 FIELD_IS_CATEGORY_USED = 1086;
4274
4275 // FIELD - ranked position of selected target for Chooser.
4276 // CATEGORY: GLOBAL_SYSTEM_UI
4277 // OS: O MR
4278 FIELD_RANKED_POSITION = 1087;
4279
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004280 // OPEN: Settings > Data plan usage
4281 // CATEGORY: SETTINGS
4282 // OS: O MR
4283 DATA_PLAN_USAGE_SUMMARY = 1088;
4284
Doris Lingce007eb2017-08-09 13:59:46 -07004285 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4286 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4287
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004288 // ACTION: Logged when the app has notified that it has fully drawn. See
4289 // Activity.reportFullyDrawn().
4290 APP_TRANSITION_REPORTED_DRAWN = 1090;
4291
4292 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4293 // the app transition.
4294 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4295
Daniel Nishia86115f2017-08-23 10:27:08 -07004296 // OPEN: Settings > Storage > Photos & Videos
4297 // CATEGORY: SETTINGS
4298 // OS: O MR
4299 APPLICATIONS_STORAGE_PHOTOS = 1092;
4300
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004301 // ACTION: Logged when the status bar icons change.
4302 // OS: O MR
4303 STATUS_BAR_ICONS_CHANGED = 1093;
4304
4305 // FIELD: Bitfield indicating which icons are shown.
4306 // OS: O MR
4307 FIELD_STATUS_ICONS = 1094;
4308
4309 // FIELD: Number of status icons currently shown.
4310 // OS: O MR
4311 FIELD_NUM_STATUS_ICONS = 1095;
4312
Jack He4b605792017-09-01 11:48:30 -07004313 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4314 // CATEGORY: SETTINGS
4315 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004316 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004317
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004318 // FIELD - Whether smart suggestion ranking was enabled or not
4319 // Type: int encoded boolean
4320 // CATEGORY: SETTINGS
4321 // OS: O MR
4322 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4323
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004324 // ACTION: The device boots
4325 ACTION_BOOT = 1098;
4326
4327 // FIELD: A string value representing some state of the platform, e.g., boot reason
4328 FIELD_PLATFORM_REASON = 1099;
4329
Jan Althaus786a39d2017-09-15 10:41:16 +02004330 // CATEGORY: The category for all actions relating to selection session logging.
4331 // OS: O MR
4332 TEXT_SELECTION_SESSION = 1100;
4333
4334 // ACTION: A selection session started (i.e. the selection handles appeared)
4335 // CATEGORY: TEXT_SELECTION_SESSION
4336 // OS: O MR
4337 ACTION_TEXT_SELECTION_START = 1101;
4338
4339 // ACTION: The user modified the selection (e.g. by dragging the handles)
4340 // CATEGORY: TEXT_SELECTION_SESSION
4341 // OS: O MR
4342 ACTION_TEXT_SELECTION_MODIFY = 1102;
4343
4344 // ACTION: The user modified the selection by pressing the "select all" button.
4345 // CATEGORY: TEXT_SELECTION_SESSION
4346 // OS: O MR
4347 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4348
4349 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4350 // CATEGORY: TEXT_SELECTION_SESSION
4351 // OS: O MR
4352 ACTION_TEXT_SELECTION_RESET = 1104;
4353
4354 // ACTION: Smart selection made a single word prediction
4355 // CATEGORY: TEXT_SELECTION_SESSION
4356 // OS: O MR
4357 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4358
4359 // ACTION: Smart selection made a multi word prediction
4360 // CATEGORY: TEXT_SELECTION_SESSION
4361 // OS: O MR
4362 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4363
4364 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4365 // CATEGORY: TEXT_SELECTION_SESSION
4366 // OS: O MR
4367 ACTION_TEXT_SELECTION_AUTO = 1107;
4368
4369 // ACTION: A selection session ended with the user typing over the text
4370 // CATEGORY: TEXT_SELECTION_SESSION
4371 // OS: O MR
4372 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4373
4374 // ACTION: A selection session ended with the user copying the text
4375 // CATEGORY: TEXT_SELECTION_SESSION
4376 // OS: O MR
4377 ACTION_TEXT_SELECTION_COPY = 1109;
4378
4379 // ACTION: A selection session ended with the user pasting over the text
4380 // CATEGORY: TEXT_SELECTION_SESSION
4381 // OS: O MR
4382 ACTION_TEXT_SELECTION_PASTE = 1110;
4383
4384 // ACTION: A selection session ended with the user cutting the text
4385 // CATEGORY: TEXT_SELECTION_SESSION
4386 // OS: O MR
4387 ACTION_TEXT_SELECTION_CUT = 1111;
4388
4389 // ACTION: A selection session ended with the user pressing the share button
4390 // CATEGORY: TEXT_SELECTION_SESSION
4391 // OS: O MR
4392 ACTION_TEXT_SELECTION_SHARE = 1112;
4393
4394 // ACTION: A selection session ended with the user pressing the smart share button
4395 // CATEGORY: TEXT_SELECTION_SESSION
4396 // OS: O MR
4397 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4398
4399 // ACTION: A selection session ended with the user dragging the text
4400 // CATEGORY: TEXT_SELECTION_SESSION
4401 // OS: O MR
4402 ACTION_TEXT_SELECTION_DRAG = 1114;
4403
4404 // ACTION: A selection session ended with the user abandoning the selection
4405 // CATEGORY: TEXT_SELECTION_SESSION
4406 // OS: O MR
4407 ACTION_TEXT_SELECTION_ABANDON = 1115;
4408
4409 // ACTION: A selection session ended with the user picking an unhandled action bar item
4410 // CATEGORY: TEXT_SELECTION_SESSION
4411 // OS: O MR
4412 ACTION_TEXT_SELECTION_OTHER = 1116;
4413
4414 // FIELD: Time in milliseconds from the start of the session to this event
4415 // CATEGORY: TEXT_SELECTION_SESSION
4416 // OS: O MR
4417 FIELD_SELECTION_SINCE_START = 1117;
4418
4419 // FIELD: time in milliseconds between the last event in the session and this one
4420 // CATEGORY: TEXT_SELECTION_SESSION
4421 // OS: O MR
4422 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4423
4424 // FIELD: a random uid for a selection session (lasting from select start to end)
4425 // CATEGORY: TEXT_SELECTION_SESSION
4426 // OS: O MR
4427 FIELD_SELECTION_SESSION_ID = 1119;
4428
4429 // FIELD: the sequence number of the event in the session
4430 // CATEGORY: TEXT_SELECTION_SESSION
4431 // OS: O MR
4432 FIELD_SELECTION_SESSION_INDEX = 1120;
4433
4434 // FIELD: a concatenation of the widget type and ML model version.
4435 // CATEGORY: TEXT_SELECTION_SESSION
4436 // OS: O MR
4437 FIELD_SELECTION_VERSION_TAG = 1121;
4438
4439 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4440 // packed 16bit integers. (start in MSBs, end in LSBs)
4441 // CATEGORY: TEXT_SELECTION_SESSION
4442 // OS: O MR
4443 FIELD_SELECTION_RANGE = 1122;
4444
4445 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4446 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4447 // CATEGORY: TEXT_SELECTION_SESSION
4448 // OS: O MR
4449 FIELD_SELECTION_SMART_RANGE = 1123;
4450
Doris Lingce007eb2017-08-09 13:59:46 -07004451 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4452
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004453 // OPEN: Settings > Network & Internet > Mobile network
4454 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004455 SETTINGS_MOBILE_NETWORK_CATEGORY = 1139;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004456
4457 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4458 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004459 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1140;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004460
4461 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4462 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004463 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1141;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004464
4465 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4466 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004467 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1142;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004468
4469 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4470 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004471 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1143;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004472
4473 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4474 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004475 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1144;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004476
4477 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4478 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004479 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1145;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004480
4481 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4482 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004483 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1146;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004484
4485 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4486 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004487 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1147;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004488
4489 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4490 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004491 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1148;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004492
4493 // ACTION: Settings > Network & Internet > Mobile network > Network
4494 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004495 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1149;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004496
4497 // FIELD - Manually selected mobile network
Doris Lingce007eb2017-08-09 13:59:46 -07004498 FIELD_MOBILE_NETWORK = 1150;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004499
4500 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4501 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004502 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1151;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004503
4504 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4505 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004506 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1152;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004507
4508 // OPEN: Settings > Network & Internet > Mobile network > System select
4509 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004510 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1153;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004511
4512 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4513 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004514 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1154;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004515
4516 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4517 // CATEGORY: SETTINGS
Doris Lingce007eb2017-08-09 13:59:46 -07004518 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1155;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004519
Fan Zhanga2f2c912017-08-15 17:20:37 -07004520 // OPEN: Settings > Developer Options > Experiment dashboard
4521 // CATEGORY: SETTINGS
4522 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1156;
4523
Julia Reynolds005c8b92017-08-24 10:35:53 -04004524 // OPEN: Settings > Notifications > [App] > Topic Notifications
4525 // CATEGORY: SETTINGS
4526 // OS: P
4527 NOTIFICATION_CHANNEL_GROUP = 1157;
4528
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004529 // OPEN: Settings > Developer options > Enable > Info dialog
4530 // CATEGORY: SETTINGS
4531 // OS: P
Fan Zhang2458f252017-09-12 10:24:27 -07004532 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1158;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004533
Adrian Roos159ef7b2016-02-25 11:58:32 -08004534 // Add new aosp constants above this line.
4535 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004536 }
4537}