blob: 4328d94275e9eaf5675709aaab80ec751c89e94f [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
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 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 Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Chris Wren5e334f62016-11-14 10:16:21 -050076 }
77
Chris Wren65f07fe2017-03-14 14:10:37 -040078 // Types of alerts, as bit field values
79 enum Alert {
80 // Vibrate the device.
81 ALERT_BUZZ = 1;
82
83 // Make sound through the speaker.
84 ALERT_BEEP = 2;
85
86 // Flash a notificaiton light.
87 ALERT_BLINK = 4;
88 }
89
90 // Reasons that a notification might be dismissed.
91 enum DismissReason {
92 // from android.service.notification.NotificationListenerService
93
94 // Notification was canceled by the status bar reporting a notification click
95 REASON_CLICK = 1;
96
97 // Notification was canceled by the status bar reporting a user dismissal.
98 REASON_CANCEL = 2;
99
100 // Notification was canceled by the status bar reporting a user dismiss all.
101 REASON_CANCEL_ALL = 3;
102
103 // Notification was canceled by the status bar reporting an inflation error.
104 REASON_ERROR = 4;
105
106 // Notification was canceled by the package manager modifying the package.
107 REASON_PACKAGE_CHANGED = 5;
108
109 // Notification was canceled by the owning user context being stopped.
110 REASON_USER_STOPPED = 6;
111
112 // Notification was canceled by the user banning the package.
113 REASON_PACKAGE_BANNED = 7;
114
115 // Notification was canceled by the app canceling this specific notification.
116 REASON_APP_CANCEL = 8;
117
118 //Notification was canceled by the app cancelling all its notifications.
119 REASON_APP_CANCEL_ALL = 9;
120
121 // Notification was canceled by a listener reporting a user dismissal.
122 REASON_LISTENER_CANCEL = 10;
123
124 //Notification was canceled by a listener reporting a user dismiss all.
125 REASON_LISTENER_CANCEL_ALL = 11;
126
127 // Notification was canceled because it was a member of a canceled group.
128 REASON_GROUP_SUMMARY_CANCELED = 12;
129
130 // Notification was canceled because it was an invisible member of a group.
131 REASON_GROUP_OPTIMIZATION = 13;
132
133 // Notification was canceled by the device administrator suspending the package.
134 REASON_PACKAGE_SUSPENDED = 14;
135
136 // Notification was canceled by the owning managed profile being turned off.
137 REASON_PROFILE_TURNED_OFF = 15;
138
139 // Autobundled summary notification was canceled because its group was unbundled.
140 REASON_UNAUTOBUNDLED = 16;
141
142 // Notification was canceled by the user banning the channel.
143 REASON_CHANNEL_BANNED = 17;
144
145 // Notification was snoozed.
146 REASON_SNOOZED = 18;
147
148 // Notification was canceled due to timeout.
149 REASON_TIMEOUT = 19;
150 }
151
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700152 // Subtypes of camera events for ACTION_CAMERA_EVENT
153 enum CameraEvent {
154 // A back-facing camera was used
155 CAMERA_BACK_USED = 0;
156
157 // A front-facing camera was used
158 CAMERA_FRONT_USED = 1;
159
160 // An external camera was used
161 CAMERA_EXTERNAL_USED = 2;
162 }
163
Jan Althaus786a39d2017-09-15 10:41:16 +0200164 // TextClassifier entity types.
165 enum TextClassifierEntityType {
166 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
167 TEXT_CLASSIFIER_TYPE_OTHER = 2;
168 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
169 TEXT_CLASSIFIER_TYPE_PHONE = 4;
170 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
171 TEXT_CLASSIFIER_TYPE_URL = 6;
172 }
173
Jan Althausae5eb832017-11-06 12:31:59 +0100174 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
175 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500176 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100177 TEXT_SELECTION_INVOCATION_MANUAL = 1;
178 TEXT_SELECTION_INVOCATION_LINK = 2;
179 }
180
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100181 // Access method for hidden API events. Type of data tagged with
182 // FIELD_HIDDEN_API_ACCESS_METHOD.
183 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
184 enum HiddenApiAccessMethod {
185 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
186 ACCESS_METHOD_REFLECTION = 1;
187 ACCESS_METHOD_JNI = 2;
188 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
189 }
190
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700191 enum HardwareType {
192 HARDWARE_UNKNOWN = 0;
193 HARDWARE_MICROPHONE = 1;
194 HARDWARE_CODEC = 2;
195 HARDWARE_SPEAKER = 3;
196 HARDWARE_FINGERPRINT = 4;
197 }
198
199 enum HardwareFailureCode {
200 HARDWARE_FAILURE_UNKNOWN = 0;
201 HARDWARE_FAILURE_COMPLETE = 1;
202 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
203 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
204 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
205 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
206 }
207
Andrew Chantc03bc632018-05-18 10:52:00 -0700208 enum IoOperation {
209 IOOP_UNKNOWN = 0;
210 IOOP_READ = 1;
211 IOOP_WRITE = 2;
212 IOOP_UNMAP = 3;
213 IOOP_SYNC = 4;
214 }
215
Chris Wren77781d32016-01-11 14:49:26 -0500216 // Known visual elements: views or controls.
217 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500218 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500219 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500222 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > Accessibility
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > Accessibility > Captions
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OPEN: Settings > Accessibility > [Service]
235 // CATEGORY: SETTINGS
236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500237 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500238
239 // OPEN: Settings > Accessibility > Color correction
240 // CATEGORY: SETTINGS
241 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500242 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500243
244 // OPEN: Settings > Accessibility > Accessibility shortcut
245 // CATEGORY: SETTINGS
246 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500247 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500248
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700249 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
250 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
251 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > Accounts
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Accounts > [Single Account Sync Settings]
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Accounts > Add an account
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Accounts > [List of accounts when more than one]
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Cellular network settings > APNs
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500287 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500290 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500291
292 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500293 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Apps > Configure apps > App links > [App]
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500301 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500302
303 // OPEN: Settings > Internal storage > Apps storage > [App]
304 // CATEGORY: SETTINGS
305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500306 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500307
308 // OPEN: Settings > Apps > [App info]
309 // CATEGORY: SETTINGS
310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500311 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Memory > App usage > [App Memory usage]
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500319 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OPEN: Settings > Memory > App usage
322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OPEN: Settings > Bluetooth
327 // CATEGORY: SETTINGS
328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500329 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Choose Bluetooth device (ex: when sharing)
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500337 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Security > Choose screen lock
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Security > Choose screen lock > Choose your password
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings > Security > Choose screen lock > Confirm your password
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
360 // CATEGORY: SETTINGS
361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500362 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500363
364 // OPEN: Settings > Security > Encrypt phone
365 // CATEGORY: SETTINGS
366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500367 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500368
369 // OPEN: Settings > Security > Encrypt phone > Confirm
370 // CATEGORY: SETTINGS
371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500372 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500373
374 // OPEN: Settings > Search results
375 // CATEGORY: SETTINGS
376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500377 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings (Root page)
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500385 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Data usage
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > Date & time
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OPEN: Settings > Developer options
398 // CATEGORY: SETTINGS
399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500400 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500401
402 // OPEN: Settings > About phone
403 // CATEGORY: SETTINGS
404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500405 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500406
407 // OPEN: Settings > About phone > Status > IMEI information
408 // CATEGORY: SETTINGS
409 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500410 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings > Internal storage
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > About phone > Status > SIM status
418 // CATEGORY: SETTINGS
419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500420 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: Settings > About phone > Status
423 // CATEGORY: SETTINGS
424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500425 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500428 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: Settings > Display
431 // CATEGORY: SETTINGS
432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500433 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OPEN: Settings > Display > Daydream
436 // CATEGORY: SETTINGS
437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500438 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500439
440 // OPEN: Settings > Security > Screen lock > Secure start-up
441 // CATEGORY: SETTINGS
442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500443 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 // OPEN: Settings > Security > Nexus Imprint
446 // CATEGORY: SETTINGS
447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500448 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500451 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Battery > History details
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Battery > Battery saver
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Battery > [App Use details]
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Battery
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OPEN: Settings > Home
474 // CATEGORY: SETTINGS
475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500476 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500477
478 // OPEN: Settings > Security > SIM card lock settings
479 // CATEGORY: SETTINGS
480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500481 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500482
483 // OPEN: Settings > Language & input
484 // CATEGORY: SETTINGS
485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500486 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500487
488 // OPEN: Settings > Language & input > Physical keyboard
489 // CATEGORY: SETTINGS
490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500491 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Language & input > Spell checker
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500499 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Language & input > Personal dictionary
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Language & input > Add word
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Location
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Location > Location mode
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Apps
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OPEN: Settings > Backup & reset > Factory data reset
527 // CATEGORY: SETTINGS
528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500529 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
532 // CATEGORY: SETTINGS
533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500534 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500535
536 // OPEN: Settings > Data usage > Network restrictions
537 // CATEGORY: SETTINGS
538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500539 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500540
541 // OPEN: Settings > More > Android Beam
542 // CATEGORY: SETTINGS
543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500544 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500545
546 // OPEN: Settings > Tap & pay
547 // CATEGORY: SETTINGS
548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500549 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500550
551 // OPEN: Settings > Sound & notification
552 // CATEGORY: SETTINGS
553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500554 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500555
556 // OPEN: Settings > Sound & notification > App notifications > [App]
557 // CATEGORY: SETTINGS
558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500559 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings > Sound & notification > Other sounds
562 // CATEGORY: SETTINGS
563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500564 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500565
566 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500567 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500568
569 // OPEN: Settings Widget > Notification log
570 // CATEGORY: SETTINGS
571 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500572 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500573
574 // OPEN: Settings > Sound & notification > Do not disturb
575 // CATEGORY: SETTINGS
576 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500577 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500578
579 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500580 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500581
582 // OPEN: Print job notification > Print job settings
583 // CATEGORY: SETTINGS
584 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500585 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500586
587 // OPEN: Settings > Printing > [Print Service]
588 // CATEGORY: SETTINGS
589 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500590 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500591
592 // OPEN: Settings > Printing
593 // CATEGORY: SETTINGS
594 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500595 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500596
597 // OPEN: Settings > Backup & reset
598 // CATEGORY: SETTINGS
599 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500600 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500601
602 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500603 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: Settings > Backup & reset > Network settings reset
606 // CATEGORY: SETTINGS
607 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500608 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500609
610 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
611 // CATEGORY: SETTINGS
612 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500613 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500614
615 // OPEN: Settings > Developer Options > Running Services
616 // CATEGORY: SETTINGS
617 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500618 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500619
620 // OPEN: Settings > Security > Screen pinning
621 // CATEGORY: SETTINGS
622 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500623 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500624
625 // OPEN: Settings > Security
626 // CATEGORY: SETTINGS
627 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500628 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: Settings > SIM cards
631 // CATEGORY: SETTINGS
632 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500633 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500634
635 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500636 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > More > Tethering & portable hotspot
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Security > Trust agents
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Settings > Security > Trusted credentials
649 // CATEGORY: SETTINGS
650 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500651 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500652
653 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
654 // CATEGORY: SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OPEN: Settings > Language & input > Text-to-speech output
659 // CATEGORY: SETTINGS
660 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500661 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500662
663 // OPEN: Settings > Security > Apps with usage access
664 // CATEGORY: SETTINGS
665 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500666 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500667
668 // OPEN: Settings > Users
669 // CATEGORY: SETTINGS
670 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500671 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500672
673 // OPEN: Settings > Users > [Restricted profile app & content access]
674 // CATEGORY: SETTINGS
675 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500676 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: Settings > Users > [User settings]
679 // CATEGORY: SETTINGS
680 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500681 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500682
683 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500684 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: Settings > More > VPN
687 // CATEGORY: SETTINGS
688 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500689 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500690
691 // OPEN: Settings > Display > Choose wallpaper from
692 // CATEGORY: SETTINGS
693 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500694 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500695
696 // OPEN: Settings > Display > Cast
697 // CATEGORY: SETTINGS
698 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500699 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500700
701 // OPEN: Settings > Wi-Fi
702 // CATEGORY: SETTINGS
703 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500704 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500705
706 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
707 // CATEGORY: SETTINGS
708 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500709 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500710
711 // OPEN: Settings > More > Wi-Fi Calling
712 // CATEGORY: SETTINGS
713 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500714 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OPEN: Settings > Wi-Fi > Saved networks
717 // CATEGORY: SETTINGS
718 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500719 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500722 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500725 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500726
727 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
728 // CATEGORY: SETTINGS
729 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500730 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500731
732 // OPEN: Settings > More
733 // CATEGORY: SETTINGS
734 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500735 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500736
737 // OPEN: Quick Settings Panel
738 // CATEGORY: QUICK_SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS Airplane mode tile shown
743 // ACTION: QS Airplane mode 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_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS Bluetooth tile shown
750 // ACTION: QS Bluetooth 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_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: QS Cast tile shown
757 // ACTION: QS Cast tile tapped
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Cellular tile shown
763 // ACTION: QS Cellular tile tapped
764 // CATEGORY: QUICK_SETTINGS
765 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500766 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500767
768 // OPEN: QS Color inversion tile shown
769 // ACTION: QS Color inversion tile tapped
770 // SUBTYPE: 0 is off, 1 is on
771 // CATEGORY: QUICK_SETTINGS
772 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500773 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500774
775 // OPEN: QS Cellular tile > Cellular detail panel
776 // CATEGORY: QUICK_SETTINGS
777 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500778 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500779
780 // OPEN: QS Do not disturb tile shown
781 // ACTION: QS Do not disturb tile tapped
782 // SUBTYPE: 0 is off, 1 is on
783 // CATEGORY: QUICK_SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // OPEN: QS Flashlight tile shown
788 // ACTION: QS Flashlight tile tapped
789 // SUBTYPE: 0 is off, 1 is on
790 // CATEGORY: QUICK_SETTINGS
791 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500792 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OPEN: QS Hotspot tile shown
795 // ACTION: QS Hotspot tile tapped
796 // SUBTYPE: 0 is off, 1 is on
797 // CATEGORY: QUICK_SETTINGS
798 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500799 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500800
801 // OPEN: QS 3P tile shown
802 // ACTION: QS 3P tile tapped
803 // CATEGORY: QUICK_SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // OPEN: QS Location tile shown
808 // ACTION: QS Location tile tapped
809 // SUBTYPE: 0 is off, 1 is on
810 // CATEGORY: QUICK_SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // OPEN: QS Rotation tile shown
815 // ACTION: QS Rotation tile tapped
816 // SUBTYPE: 0 is off, 1 is on
817 // CATEGORY: QUICK_SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500822 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500823
824 // OPEN: QS User list panel
825 // CATEGORY: QUICK_SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // OPEN: QS WiFi tile shown
830 // ACTION: QS WiFi tile tapped
831 // SUBTYPE: 0 is off, 1 is on
832 // CATEGORY: QUICK_SETTINGS
833 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OPEN: Notification Panel (including lockscreen)
837 // CATEGORY: NOTIFICATION
838 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500839 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: Notification in panel became visible.
842 // PACKAGE: App that posted the notification.
843 // ACTION: Notification is tapped.
844 // PACKAGE: App that posted the notification
845 // DETAIL: Notification is expanded by user.
846 // PACKAGE: App that posted the notification
847 // DISMISS: Notification is dismissed.
848 // PACKAGE: App that posted the notification
849 // SUBTYPE: Dismiss reason from NotificationManagerService.java
850 // CATEGORY: NOTIFICATION
851 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500852 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: User tapped notification action
855 // PACKAGE: App that posted the notification
856 // SUBTYPE: Index of action on notification
857 // CATEGORY: NOTIFICATION
858 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OPEN: Settings > Apps > Configure apps > App permissions
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OPEN: Settings > Location > Scanning
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500872 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // OPEN: Settings > Sound & notification > App notifications
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // ACTION: Settings > Wi-Fi > Overflow > Add Network
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700885 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500886 // CATEGORY: SETTINGS
887 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500888 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500889
890 // ACTION: Settings > Wi-Fi > Overflow > Refresh
891 // CATEGORY: SETTINGS
892 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500893 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500894
895 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
896 // CATEGORY: SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700901 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: Settings > Wi-Fi > Toggle on
907 // CATEGORY: SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500912 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: Settings > Sound & notification > DND > Priority only allows
915 // CATEGORY: SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // OPEN: Settings > Sound & notification > DND > Automatic rules
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: Settings > Apps > Configure apps > App links
925 // CATEGORY: SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: Settings > Sound & notification > DND > [Time based rule]
930 // CATEGORY: SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: Settings > Sound & notification > DND > [External rule]
935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // OPEN: Settings > Sound & notification > DND > [Event rule]
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: App notification settings > Block Notifications
945 // CATEGORY: SETTINGS
946 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500947 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // ACTION: Notification shade > Dismiss all button
950 // CATEGORY: NOTIFICATION
951 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500952 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500953
954 // OPEN: QS Do Not Disturb detail panel
955 // CATEGORY: QUICK_SETTINGS
956 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500957 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500958
959 // OPEN: QS Bluetooth detail panel
960 // CATEGORY: QUICK_SETTINGS
961 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500962 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500963
964 // OPEN: QS Cast detail panel
965 // CATEGORY: QUICK_SETTINGS
966 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500967 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500968
969 // OPEN: QS Wi-Fi detail panel
970 // CATEGORY: QUICK_SETTINGS
971 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500972 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500973
974 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
975 // SUBTYPE: 0 is off, 1 is on
976 // CATEGORY: QUICK_SETTINGS
977 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500978 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500979
980 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
981 // SUBTYPE: 0 is off, 1 is on
982 // CATEGORY: QUICK_SETTINGS
983 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500984 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500985
986 // ACTION: QS Cellular detail panel > Cellular toggle
987 // SUBTYPE: 0 is off, 1 is on
988 // CATEGORY: QUICK_SETTINGS
989 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500990 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // ACTION: QS User list panel > Select different user
993 // CATEGORY: QUICK_SETTINGS
994 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500995 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500996
997 // ACTION: QS Cast detail panel > Select cast device
998 // CATEGORY: QUICK_SETTINGS
999 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001000 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001001
1002 // ACTION: QS Cast detail panel > Disconnect cast device
1003 // CATEGORY: QUICK_SETTINGS
1004 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001005 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001006
1007 // ACTION: Settings > Bluetooth > Toggle
1008 // SUBTYPE: 0 is off, 1 is on
1009 // CATEGORY: SETTINGS
1010 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001011 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001012
1013 // ACTION: Settings > Bluetooth > Overflow > Refresh
1014 // CATEGORY: SETTINGS
1015 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1019 // CATEGORY: SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: Settings > Bluetooth > Overflow > Show received files
1024 // CATEGORY: SETTINGS
1025 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: QS DND details panel > Increase / Decrease exit time
1029 // SUBTYPE: true is increase, false is decrease
1030 // CATEGORY: QUICK_SETTINGS
1031 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001032 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001033
1034 // ACTION: QS DND details panel > [Exit condition]
1035 // CATEGORY: QUICK_SETTINGS
1036 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001037 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // ACTION: QS DND details panel > [DND mode]
1040 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1041 // CATEGORY: QUICK_SETTINGS
1042 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001043 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001044
1045 // ACTION: QS DND detail panel > DND toggle
1046 // SUBTYPE: 0 is off, 1 is on
1047 // CATEGORY: QUICK_SETTINGS
1048 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001049 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // ACTION: DND Settings > Priority only allows > Reminder toggle
1052 // SUBTYPE: 0 is off, 1 is on
1053 // CATEGORY: SETTINGS
1054 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001055 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001056
1057 // ACTION: DND Settings > Priority only allows > Event toggle
1058 // SUBTYPE: 0 is off, 1 is on
1059 // CATEGORY: SETTINGS
1060 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001061 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001062
1063 // ACTION: DND Settings > Priority only allows > Messages
1064 // SUBTYPE: 0 is off, 1 is on
1065 // CATEGORY: SETTINGS
1066 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001067 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001068
1069 // ACTION: DND Settings > Priority only allows > Calls
1070 // SUBTYPE: 0 is off, 1 is on
1071 // CATEGORY: SETTINGS
1072 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001073 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001074
1075 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1076 // SUBTYPE: 0 is off, 1 is on
1077 // CATEGORY: SETTINGS
1078 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // ACTION: DND Settings > Automatic rules > Add rule
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // ACTION: DND Settings > Automatic rules > Add rule > OK
1087 // CATEGORY: SETTINGS
1088 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001089 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001090
1091 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1092 // CATEGORY: SETTINGS
1093 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001094 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001095
1096 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1097 // CATEGORY: SETTINGS
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1102 // SUBTYPE: 0 is off, 1 is on
1103 // CATEGORY: SETTINGS
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Settings > More > Airplane mode toggle
1108 // SUBTYPE: 0 is off, 1 is on
1109 // CATEGORY: SETTINGS
1110 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001111 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001112
1113 // ACTION: Settings > Data usage > Cellular data toggle
1114 // SUBTYPE: 0 is off, 1 is on
1115 // CATEGORY: SETTINGS
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // OPEN: Settings > Sound & notification > Notification access
1120 // CATEGORY: SETTINGS
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // OPEN: Settings > Sound & notification > Do Not Disturb access
1125 // CATEGORY: SETTINGS
1126 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001127 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001128
1129 // OPEN: Settings > Apps > Configure apps > Default Apps
1130 // CATEGORY: SETTINGS
1131 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001132 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001133
1134 // OPEN: Settings > Internal storage > Apps storage
1135 // CATEGORY: SETTINGS
1136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001137 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001138
1139 // OPEN: Settings > Security > Usage access
1140 // CATEGORY: SETTINGS
1141 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001142 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // OPEN: Settings > Battery > Battery optimization
1145 // CATEGORY: SETTINGS
1146 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001147 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001148
1149 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001150 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // ACTION: Lockscreen > Unlock gesture
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // ACTION: Lockscreen > Pull shade open
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Lockscreen > Tap on lock, shows hint
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001165 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // ACTION: Lockscreen > Camera
1168 // CATEGORY: GLOBAL_SYSTEM_UI
1169 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001170 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // ACTION: Lockscreen > Dialer
1173 // CATEGORY: GLOBAL_SYSTEM_UI
1174 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001175 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // ACTION: Lockscreen > Tap on lock, locks phone
1178 // CATEGORY: GLOBAL_SYSTEM_UI
1179 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001180 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001181
1182 // ACTION: Lockscreen > Tap on notification, false touch rejection
1183 // CATEGORY: GLOBAL_SYSTEM_UI
1184 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001185 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // ACTION: Lockscreen > Swipe down to open quick settings
1188 // CATEGORY: GLOBAL_SYSTEM_UI
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // ACTION: Swipe down to open quick settings when unlocked
1193 // CATEGORY: GLOBAL_SYSTEM_UI
1194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001195 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001196
1197 // ACTION: Notification shade > Tap to open quick settings
1198 // CATEGORY: GLOBAL_SYSTEM_UI
1199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001200 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // OPEN: Lockscreen
1203 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1204 // CATEGORY: GLOBAL_SYSTEM_UI
1205 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001206 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1209 // CATEGORY: GLOBAL_SYSTEM_UI
1210 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001211 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // OPEN: Screen turned on
1214 // SUBTYPE: 2 is user action
1215 // CATEGORY: GLOBAL_SYSTEM_UI
1216 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001217 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // OPEN: Notification caused sound, vibration, and/or LED blink
1220 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1221 // CATEGORY: NOTIFICATION
1222 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001223 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Lockscreen > Emergency Call button
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1231 // CATEGORY: SETTINGS
1232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001233 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // OPEN: Settings > Memory
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Settings > Display > When device is rotated
1241 // CATEGORY: SETTINGS
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Long press on notification to view controls
1246 // CATEGORY: NOTIFICATION
1247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001248 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // ACTION: Notificatoin controls > Info button
1251 // CATEGORY: NOTIFICATION
1252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001253 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // ACTION: Notification controls > Settings button
1256 // CATEGORY: NOTIFICATION
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // OPEN: Volume Dialog (with hardware buttons)
1261 // CATEGORY: GLOBAL_SYSTEM_UI
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1266 // CATEGORY: GLOBAL_SYSTEM_UI
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Volume dialog > Adjust volume slider
1271 // SUBTYPE: volume level (0-7)
1272 // CATEGORY: GLOBAL_SYSTEM_UI
1273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001274 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001275
1276 // ACTION: Volume dialog > Select non-active stream
1277 // SUBTYPE: stream (defined in AudioSystem.java)
1278 // CATEGORY: GLOBAL_SYSTEM_UI
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // ACTION: Adjust volume with hardware key
1283 // SUBTYPE: volume level (0-7)
1284 // CATEGORY: GLOBAL_SYSTEM_UI
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001287
1288 // ACTION: Volume dialog > Mute a stream by tapping icon
1289 // SUBTYPE: mute is 1, audible is 2
1290 // CATEGORY: GLOBAL_SYSTEM_UI
1291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001292 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001293
1294 // ACTION: Volume dialog > Change ringer mode by tapping icon
1295 // SUBTYPE: 2 is audible, 3 is vibrate
1296 // CATEGORY: GLOBAL_SYSTEM_UI
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // ACTION: Chooser shown (share target, file open, etc.)
1301 // CATEGORY: GLOBAL_SYSTEM_UI
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // ACTION: Chooser > User taps an app target
1306 // SUBTYPE: Index of target
1307 // CATEGORY: GLOBAL_SYSTEM_UI
1308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001309 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001310
1311 // ACTION: Chooser > User taps a service target
1312 // SUBTYPE: Index of target
1313 // CATEGORY: GLOBAL_SYSTEM_UI
1314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001315 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001316
1317 // ACTION: Chooser > User taps a standard target
1318 // SUBTYPE: Index of target
1319 // CATEGORY: GLOBAL_SYSTEM_UI
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // ACTION: QS Brightness Slider (with auto brightness disabled)
1324 // SUBTYPE: slider value
1325 // CATEGORY: QUICK_SETTINGS
1326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001327 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001328
1329 // ACTION: QS Brightness Slider (with auto brightness enabled)
1330 // SUBTYPE: slider value
1331 // CATEGORY: QUICK_SETTINGS
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: Settings > Display > Brightness Slider
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001339
Christine Franks47175c32017-03-14 10:21:25 -07001340 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001341 // CATEGORY: SETTINGS
1342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001343 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // OPEN: Display has entered dream mode
1346 // CATEGORY: GLOBAL_SYSTEM_UI
1347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001348 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001349
1350 // OPEN: Display has entered ambient notification mode
1351 // CATEGORY: GLOBAL_SYSTEM_UI
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // OPEN: Overview
1356 // CATEGORY: GLOBAL_SYSTEM_UI
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // OPEN: Settings > About phone > Legal information
1361 // CATEGORY: SETTINGS
1362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001363 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001364
1365 // OPEN: Settings > Search > Perform search
1366 // CATEGORY: SETTINGS
1367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001368 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001369
1370 // OPEN: Settings > System UI Tuner
1371 // CATEGORY: SETTINGS
1372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001373 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001374
1375 // OPEN: Settings > System UI Tuner > Quick Settings
1376 // CATEGORY: SETTINGS
1377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001378 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001379
1380 // OPEN: Settings > System UI Tuner > Demo mode
1381 // CATEGORY: SETTINGS
1382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001383 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1386 // PACKAGE: Tile
1387 // CATEGORY: SETTINGS
1388 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001389 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1392 // PACKAGE: Tile
1393 // CATEGORY: SETTINGS
1394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001395 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001396
1397 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1398 // PACKAGE: Tile
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1404 // PACKAGE: Icon
1405 // CATEGORY: SETTINGS
1406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001407 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001408
1409 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1410 // PACKAGE: Icon
1411 // CATEGORY: SETTINGS
1412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001413 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001414
1415 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1416 // SUBTYPE: false is disabled, true is enabled
1417 // CATEGORY: SETTINGS
1418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001419 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001420
1421 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1422 // SUBTYPE: false is disabled, true is enabled
1423 // CATEGORY: SETTINGS
1424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001425 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001426
1427 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1428 // SUBTYPE: 0 is disabled, 1 is enabled
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Settings > Developer options > Inactive apps
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // ACTION: Long press home to bring up assistant
1439 // CATEGORY: GLOBAL_SYSTEM_UI
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Fingerprint Enroll > Find Sensor
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // OPEN: Fingerprint Enroll introduction
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // OPEN: Fingerprint Enroll onboarding
1464 // CATEGORY: SETTINGS
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // OPEN: Fingerprint Enroll > Let's Start!
1469 // CATEGORY: SETTINGS
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // OPEN: Fingerprint Enroll SUW > Let's Start!
1474 // CATEGORY: SETTINGS
1475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001476 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001477
1478 // OPEN: Fingerprint Enroll SUW > Find Sensor
1479 // CATEGORY: SETTINGS
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // OPEN: Fingerprint Enroll SUW introduction
1489 // CATEGORY: SETTINGS
1490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001491 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // OPEN: Fingerprint Enroll SUW onboarding
1494 // CATEGORY: SETTINGS
1495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001496 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001497
1498 // ACTION: Add fingerprint > Enroll fingerprint
1499 // CATEGORY: SETTINGS
1500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001501 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001502
1503 // ACTION: Authenticate using fingerprint
1504 // CATEGORY: SETTINGS
1505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001506 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001507
1508 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1509 // CATEGORY: SETTINGS
1510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001511 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001512
1513 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1514 // CATEGORY: SETTINGS
1515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001516 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001517
1518 // ACTION: Double tap camera shortcut
1519 // CATEGORY: GLOBAL_SYSTEM_UI
1520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001521 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001522
1523 // ACTION: Double twist camera shortcut
1524 // CATEGORY: GLOBAL_SYSTEM_UI
1525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001526 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001527
1528 // OPEN: QS Work Mode tile shown
1529 // ACTION: QS Work Mode tile tapped
1530 // SUBTYPE: 0 is off, 1 is on
1531 // CATEGORY: QUICK_SETTINGS
1532 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001533 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001534
1535 // OPEN: Settings > Developer Options > Background Check
1536 // CATEGORY: SETTINGS
1537 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001538 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001539
1540 // OPEN: QS Lock tile shown
1541 // ACTION: QS Lock 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_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001546
1547 // OPEN: QS User Tile shown
1548 // CATEGORY: QUICK_SETTINGS
1549 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001550 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001551
1552 // OPEN: QS Battery tile shown
1553 // CATEGORY: QUICK_SETTINGS
1554 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001555 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001556
1557 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1558 // CATEGORY: SETTINGS
1559 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001560 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001561
1562 // ACTION: Visual interruptions > No screen interuptions toggle
1563 // SUBTYPE: 0 is off, 1 is on
1564 // CATEGORY: SETTINGS
1565 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001566 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001567
1568 // ACTION: Visual interruptions > No notification light toggle
1569 // SUBTYPE: 0 is off, 1 is on
1570 // CATEGORY: SETTINGS
1571 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001572 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001573
Julia Reynolds005c8b92017-08-24 10:35:53 -04001574 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001575 // CATEGORY: SETTINGS
1576 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001577 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001578
1579 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1580 // PACKAGE: Selected SMS app
1581 // CATEGORY: SETTINGS
1582 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001583 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001584
1585 // OPEN: QS Color modification tile shown
1586 // ACTION: QS Color modification tile tapped
1587 // SUBTYPE: 0 is off, 1 is on
1588 // CATEGORY: QUICK_SETTINGS
1589 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001590 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001591
1592 // OPEN: QS Custom tile shown
1593 // ACTION: QS Work Mode tile tapped
1594 // CATEGORY: QUICK_SETTINGS
1595 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001596 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001597
1598 // ACTION: Visual interruptions > Never turn off the screen toggle
1599 // SUBTYPE: 0 is off, 1 is on
1600 // CATEGORY: SETTINGS
1601 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001602 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // ACTION: Overview > Long-press task, drag to enter split-screen
1605 // CATEGORY: GLOBAL_SYSTEM_UI
1606 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001607 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: In App > Long-press Overview button to enter split-screen
1610 // CATEGORY: GLOBAL_SYSTEM_UI
1611 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001612 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: In App > Swipe Overview button to enter split-screen
1615 // CATEGORY: GLOBAL_SYSTEM_UI
1616 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001617 ACTION_WINDOW_DOCK_SWIPE = 272;
1618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // ACTION: Launch profile-specific app > Confirm credentials
1620 // CATEGORY: GLOBAL_SYSTEM_UI
1621 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001622 PROFILE_CHALLENGE = 273;
1623
Chris Wren7c516842016-03-01 16:44:32 -05001624 // OPEN: QS Battery detail panel
1625 // CATEGORY: GLOBAL_SYSTEM_UI
1626 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001627 QS_BATTERY_DETAIL = 274;
1628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // OPEN: Overview > History
1630 // CATEGORY: GLOBAL_SYSTEM_UI
1631 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001632 OVERVIEW_HISTORY = 275;
1633
Chris Wren7c516842016-03-01 16:44:32 -05001634 // ACTION: Overview > Page by tapping Overview button
1635 // CATEGORY: GLOBAL_SYSTEM_UI
1636 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001637 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001638
Chris Wren7c516842016-03-01 16:44:32 -05001639 // ACTION: Overview > Select app
1640 // CATEGORY: GLOBAL_SYSTEM_UI
1641 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001642 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001643
Chris Wren7c516842016-03-01 16:44:32 -05001644 // ACTION: View emergency info
1645 // CATEGORY: GLOBAL_SYSTEM_UI
1646 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001647 ACTION_VIEW_EMERGENCY_INFO = 278;
1648
Chris Wren7c516842016-03-01 16:44:32 -05001649 // ACTION: Edit emergency info activity
1650 // CATEGORY: SETTINGS
1651 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001652 ACTION_EDIT_EMERGENCY_INFO = 279;
1653
Chris Wren7c516842016-03-01 16:44:32 -05001654 // ACTION: Edit emergency info field
1655 // CATEGORY: SETTINGS
1656 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001657 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1658
Chris Wren7c516842016-03-01 16:44:32 -05001659 // ACTION: Add emergency contact
1660 // CATEGORY: SETTINGS
1661 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001662 ACTION_ADD_EMERGENCY_CONTACT = 281;
1663
Chris Wren7c516842016-03-01 16:44:32 -05001664 // ACTION: Delete emergency contact
1665 // CATEGORY: SETTINGS
1666 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001667 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1668
Chris Wren7c516842016-03-01 16:44:32 -05001669 // ACTION: Call emergency contact
1670 // CATEGORY: SETTINGS
1671 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001672 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001673
Chris Wren7c516842016-03-01 16:44:32 -05001674 // OPEN: QS Data Saver tile shown
1675 // ACTION: QS Data Saver tile tapped
1676 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001677 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001678
Robin Lee8c1306e2016-02-01 11:37:02 +00001679 // OPEN: Settings > Security > User credentials
1680 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001681 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001682 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001683
Chris Wren7c516842016-03-01 16:44:32 -05001684 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1685 // CATEGORY: GLOBAL_SYSTEM_UI
1686 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001687 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001688
1689 // Logged when the user scrolls through overview manually
1690 OVERVIEW_SCROLL = 287;
1691
1692 // Logged when the overview times out automatically selecting an app
1693 OVERVIEW_SELECT_TIMEOUT = 288;
1694
1695 // Logged when a user dismisses a task in overview
1696 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001697
1698 // Logged when the user modifying the notification importance slider.
1699 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1700
1701 // Logged when the user saves a modification to notification importance. Negative numbers
1702 // indicate the user lowered the importance; positive means they increased it.
1703 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001704
Chris Wren7c516842016-03-01 16:44:32 -05001705 // ACTION: Long-press power button, then tap "Take bug report" option.
1706 // CATEGORY: GLOBAL_SYSTEM_UI
1707 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001708 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1709
Chris Wren7c516842016-03-01 16:44:32 -05001710 // ACTION: Long-press power button, then long-press "Take bug report" option.
1711 // CATEGORY: GLOBAL_SYSTEM_UI
1712 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001713 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1714
Chris Wren7c516842016-03-01 16:44:32 -05001715 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1716 // CATEGORY: SETTINGS
1717 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001718 // Interactive bug report initiated from Settings.
1719 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1720
Chris Wren7c516842016-03-01 16:44:32 -05001721 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1722 // CATEGORY: SETTINGS
1723 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001724 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001725 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: User tapped notification action to cancel a bug report
1728 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001729 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001730 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1731
Chris Wren7c516842016-03-01 16:44:32 -05001732 // ACTION: User tapped notification action to launch bug report details screen
1733 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001734 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001735 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1736
Chris Wren7c516842016-03-01 16:44:32 -05001737 // ACTION: User tapped notification action to take adition screenshot on bug report
1738 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001739 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001740 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1741
Chris Wren7c516842016-03-01 16:44:32 -05001742 // ACTION: User tapped notification to share bug report
1743 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001744 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001745 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1746
Chris Wren7c516842016-03-01 16:44:32 -05001747 // ACTION: User changed bug report name using the details screen
1748 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001749 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001750 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1751
Chris Wren7c516842016-03-01 16:44:32 -05001752 // ACTION: User changed bug report title using the details screen
1753 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001754 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001755 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1756
Chris Wren7c516842016-03-01 16:44:32 -05001757 // ACTION: User changed bug report description using the details screen
1758 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001759 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001760 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1761
Chris Wren7c516842016-03-01 16:44:32 -05001762 // ACTION: User tapped Save in the bug report details screen.
1763 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001764 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001765 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1766
Chris Wren7c516842016-03-01 16:44:32 -05001767 // ACTION: User tapped Cancel in the bug report details screen.
1768 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001769 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001770 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001771
1772 // Tuner: Open/close calibrate dialog.
1773 TUNER_CALIBRATE_DISPLAY = 305;
1774
1775 // Tuner: Open/close color and appearance.
1776 TUNER_COLOR_AND_APPEARANCE = 306;
1777
1778 // Tuner: Apply calibrate dialog.
1779 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1780
1781 // Tuner: Open/close night mode.
1782 TUNER_NIGHT_MODE = 308;
1783
1784 // Tuner: Change night mode.
1785 ACTION_TUNER_NIGHT_MODE = 309;
1786
1787 // Tuner: Change night mode auto.
1788 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1789
1790 // Tuner: Change night mode adjust dark theme.
1791 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1792
1793 // Tuner: Change night mode adjust tint.
1794 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1795
1796 // Tuner: Change night mode adjust brightness.
1797 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1798
1799 // Tuner: Change do not disturb in volume panel.
1800 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1801
1802 // Tuner: Change do not disturb volume buttons shortcut.
1803 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001804
1805 // Logs the action the user takes when an app crashed.
1806 ACTION_APP_CRASH = 316;
1807
1808 // Logs the action the user takes when an app ANR'd.
1809 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001810
1811 // Logged when a user double taps the overview button to launch the previous task
1812 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001813
1814 // Logged when we execute an app transition. This indicates the total delay from startActivity
1815 // until the app transition is starting to animate, in milliseconds.
1816 APP_TRANSITION_DELAY_MS = 319;
1817
1818 // Logged when we execute an app transition. This indicates the reason why the transition
1819 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1820 APP_TRANSITION_REASON = 320;
1821
1822 // Logged when we execute an app transition and we drew a starting window. This indicates the
1823 // delay from startActivity until the starting window was drawn.
1824 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1825
1826 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1827 // the delay from startActivity until all windows have been drawn.
1828 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1829
1830 // Logged when we execute an app transition. This indicates the component name of the current
1831 // transition.
1832 APP_TRANSITION_COMPONENT_NAME = 323;
1833
1834 // Logged when we execute an app transition. This indicates whether the process was already
1835 // running.
1836 APP_TRANSITION_PROCESS_RUNNING = 324;
1837
1838 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1839 // the transition was executed.
1840 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001841
Chris Wren38f98812016-07-13 14:28:40 -04001842 // ACTION: app requested access to a scoped directory, user granted it.
1843 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1844 // CATEGORY: GLOBAL_SYSTEM_UI
1845 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001846 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1847
Chris Wren38f98812016-07-13 14:28:40 -04001848 // ACTION: app requested access to a scoped directory, user denied it.
1849 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1850 // CATEGORY: GLOBAL_SYSTEM_UI
1851 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001852 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1853
Chris Wren38f98812016-07-13 14:28:40 -04001854 // ACTION: app requested access to a scoped directory, user granted it.
1855 // PACKAGE: app that requested access
1856 // CATEGORY: GLOBAL_SYSTEM_UI
1857 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001858 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1859
Chris Wren38f98812016-07-13 14:28:40 -04001860 // ACTION: app requested access to a scoped directory, user denied it.
1861 // PACKAGE: app that requested access.
1862 // CATEGORY: GLOBAL_SYSTEM_UI
1863 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001864 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1865
Chris Wren38f98812016-07-13 14:28:40 -04001866 // ACTION: app requested access to a directory user has already been granted
1867 // access before.
1868 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1869 // CATEGORY: GLOBAL_SYSTEM_UI
1870 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001871 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1872
Chris Wren38f98812016-07-13 14:28:40 -04001873 // ACTION: app requested access to a directory user has already been granted
1874 // access before.
1875 // PACKAGE: app that requested access.
1876 // CATEGORY: GLOBAL_SYSTEM_UI
1877 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001878 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001879
Chris Wren38f98812016-07-13 14:28:40 -04001880 // ACTION: Logged when the user slides a notification and reveals the gear
1881 // beneath it.
1882 // CATEGORY: NOTIFICATION
1883 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001884 ACTION_REVEAL_GEAR = 332;
1885
Chris Wren38f98812016-07-13 14:28:40 -04001886 // ACTION: Logged when the user taps on the gear beneath a notification.
1887 // CATEGORY: NOTIFICATION
1888 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001889 ACTION_TOUCH_GEAR = 333;
1890
Ruben Brunke24b9a62016-02-16 21:38:24 -08001891 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001892 // CATEGORY: SETTINGS
1893 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001894 VR_MANAGE_LISTENERS = 334;
1895
Jason Monk6f5354d2016-03-08 14:18:08 -05001896 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001897 // CATEGORY: SETTINGS
1898 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001899 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001900
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001902 // CATEGORY: SETTINGS
1903 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001904 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001905
Jason Monk6f5354d2016-03-08 14:18:08 -05001906 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001907 // CATEGORY: SETTINGS
1908 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001909 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001910
Jason Monk6f5354d2016-03-08 14:18:08 -05001911 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001912 // CATEGORY: SETTINGS
1913 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001914 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001915
Jason Monk6f5354d2016-03-08 14:18:08 -05001916 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001917 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001919
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001921 // CATEGORY: SETTINGS
1922 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001924
Jason Monk6f5354d2016-03-08 14:18:08 -05001925 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001926 // CATEGORY: SETTINGS
1927 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001928 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001929
Jason Monk6f5354d2016-03-08 14:18:08 -05001930 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001931 // CATEGORY: SETTINGS
1932 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001933 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001934
Jason Monk6f5354d2016-03-08 14:18:08 -05001935 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001936 // CATEGORY: SETTINGS
1937 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001938 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001939
Jason Monk6f5354d2016-03-08 14:18:08 -05001940 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001941 // CATEGORY: SETTINGS
1942 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001943 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001944
Jason Monk6f5354d2016-03-08 14:18:08 -05001945 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001946 // CATEGORY: SETTINGS
1947 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001948 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001949
Jason Monk6f5354d2016-03-08 14:18:08 -05001950 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001951 // CATEGORY: SETTINGS
1952 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001953 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001954
Jason Monk6f5354d2016-03-08 14:18:08 -05001955 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001956 // CATEGORY: SETTINGS
1957 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001958 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001959
Jason Monk6f5354d2016-03-08 14:18:08 -05001960 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001961 // CATEGORY: SETTINGS
1962 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001963 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001964
Jason Monk6f5354d2016-03-08 14:18:08 -05001965 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001966 // CATEGORY: SETTINGS
1967 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001968 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1969
1970 // Used for generic logging of Settings Preference Persistence, should not be used
1971 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001972 // CATEGORY: SETTINGS
1973 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001974 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001975
Jason Monk6f5354d2016-03-08 14:18:08 -05001976 // Settings -> Apps -> Gear -> Special access
1977 SPECIAL_ACCESS = 351;
1978
Muyuan Lia2129992016-03-03 18:30:39 -08001979 // Logs that the user docks window via shortcut key.
1980 WINDOW_DOCK_SHORTCUTS = 352;
1981
Felipe Lemeadccb992016-03-09 17:40:49 -08001982 // User already denied access to the request folder; action takes an integer
1983 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001984 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001985 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1986
1987 // User already denied access to the request folder; action pass package name
1988 // of calling package.
1989 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1990
1991 // User denied access to the request folder and checked 'Do not ask again';
1992 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001993 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001994 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1995
1996 // User denied access to the request folder and checked 'Do not ask again';
1997 // action pass package name of calling package.
1998 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1999
Winson3b6ba1a2016-03-22 15:37:54 -07002000 // Logged when a user dismisses all task in overview
2001 OVERVIEW_DISMISS_ALL = 357;
2002
Jason Monk96defbe2016-03-29 16:51:03 -04002003 // Quick Settings -> Edit
2004 QS_EDIT = 358;
2005
2006 // Quick Settings -> Edit -> Overflow -> Reset
2007 ACTION_QS_EDIT_RESET = 359;
2008
2009 // QS -> Edit - Drag a tile out of the active tiles.
2010 // The _SPEC contains either the spec of the tile or
2011 // the package of the 3rd party app in the PKG field.
2012 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2013 ACTION_QS_EDIT_REMOVE = 361;
2014
2015 // QS -> Edit - Drag a tile into the active tiles.
2016 // The _SPEC contains either the spec of the tile or
2017 // the package of the 3rd party app in the PKG field.
2018 ACTION_QS_EDIT_ADD_SPEC = 362;
2019 ACTION_QS_EDIT_ADD = 363;
2020
2021 // QS -> Edit - Drag a tile within the active tiles.
2022 // The _SPEC contains either the spec of the tile or
2023 // the package of the 3rd party app in the PKG field.
2024 ACTION_QS_EDIT_MOVE_SPEC = 364;
2025 ACTION_QS_EDIT_MOVE = 365;
2026
2027 // Long-press on a QS tile. Tile spec in package field.
2028 ACTION_QS_LONG_PRESS = 366;
2029
Anna Galuszadad131f2016-03-22 13:49:02 -07002030 // OPEN: SUW Welcome Screen -> Vision Settings
2031 // CATEGORY: SETTINGS
2032 // OS: N
2033 SUW_ACCESSIBILITY = 367;
2034
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002035 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2036 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2037 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002038 // ACTION: New magnification gesture configuration is chosen
2039 // SUBTYPE: 0 is off, 1 is on
2040 // CATEGORY: SETTINGS
2041 // OS: N
2042 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2043
2044 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2045 // ACTION: New font size is chosen
2046 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2047 // CATEGORY: SETTINGS
2048 // OS: N
2049 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2050
2051 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2052 // ACTION: New display size is chosen
2053 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2054 // CATEGORY: SETTINGS
2055 // OS: N
2056 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2057
2058 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2059 // ACTION: New screen reader configuration is chosen
2060 // SUBTYPE: 0 is off, 1 is on
2061 // CATEGORY: SETTINGS
2062 // OS: N
2063 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2064
Jason Monkc3620392016-03-30 15:46:03 -04002065 // ------- Begin N Settings conditionals -----
2066 // Conditionals are the green bars at the top of the settings dashboard
2067 // All conditionals will have visible/hide events onResume/onPause
2068 // but they will also be used as extra ints in the
2069 // dismiss/expand/collapse/click/button events
2070
2071 // swipe away conditional
2072 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2073
2074 // click on collapsed conditional or clicks expand button
2075 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2076
2077 // click collapse button on expanded conditional
2078 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2079
2080 // click main area of expanded conditional
2081 ACTION_SETTINGS_CONDITION_CLICK = 375;
2082
2083 // click a direct button on expanded conditional
2084 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2085
2086 // Airplane mode on
2087 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2088 // AKA Data saver on
2089 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2090 // Battery saver on
2091 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2092 // Cellular data off
2093 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2094 // Do not disturb on
2095 SETTINGS_CONDITION_DND = 381;
2096 // Hotspot on
2097 SETTINGS_CONDITION_HOTSPOT = 382;
2098 // Work profile off
2099 SETTINGS_CONDITION_WORK_MODE = 383;
2100
Jason Monk1b5d87b2016-03-30 16:03:15 -04002101 // ------- Begin N Settings suggestions -----
2102 // Since suggestions come from system apps, suggestions will
2103 // have generic constants and the package providing the suggestion
2104 // will be put in the package field. For suggestions in the Settings
2105 // package, the class name will be filled in instead (since settings
2106 // provides several suggetions).
2107
2108 // Settings shown/hidden on main settings dashboard.
2109 // These are actually visibility events, but visible/hidden doesn't
2110 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002111 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2112 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002113
2114 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002115 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002116
2117 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002118 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002119
Jason Monk397df682016-03-28 15:48:34 -04002120 // Settings > Apps > Gear > Special Access > Premium SMS access
2121 PREMIUM_SMS_ACCESS = 388;
2122
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002123 // Logged when the user resizes the docked stack. Arguments:
2124 // 0: Split 50:50
2125 // 1: Docked smaller
2126 // 2: Docked larger
2127 ACTION_WINDOW_DOCK_RESIZE = 389;
2128
2129 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2130 // 0: Docked gets maximized
2131 // 1: Fullscreen gets maximized
2132 ACTION_WINDOW_UNDOCK_MAX = 390;
2133
2134 // User tried to dock an unresizable app.
2135 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2136
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002137 // System UI Tuner > Other > Power notification controls
2138 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2139
2140 // System UI Tuner > Other > Power notification controls > Toggle on/off
2141 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2142
Chris Wren38f98812016-07-13 14:28:40 -04002143 // Action: user enable / disabled data saver using Settings
2144 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2145 // VALUE: 1 for enabled, 0 for disabled
2146 // CATEGORY: SETTINGS
2147 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002148 ACTION_DATA_SAVER_MODE = 394;
2149
Chris Wren38f98812016-07-13 14:28:40 -04002150 // User whitelisted an app for Data Saver mode; action pass package name of app
2151 // Action: user enable / disabled data saver using Settings
2152 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2153 // or
2154 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2155 // VALUE: package name of APP
2156 // CATEGORY: SETTINGS
2157 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002158 ACTION_DATA_SAVER_WHITELIST = 395;
2159
Chris Wren38f98812016-07-13 14:28:40 -04002160 // User blacklisted an app for Data Saver mode; action pass package name of app
2161 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2162 // VALUE: package name of APP
2163 // CATEGORY: SETTINGS
2164 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002165 ACTION_DATA_SAVER_BLACKLIST = 396;
2166
Adrian Roosceeb04c2016-04-25 14:00:54 -07002167 // User opened a remote input view associated with a notification. Passes package name of app
2168 // that posted the notification. Note that this can also happen transiently during notification
2169 // reinflation.
2170 ACTION_REMOTE_INPUT_OPEN = 397;
2171
2172 // User attempt to send data through a remote input view associated with a notification.
2173 // Passes package name of app that posted the notification. May succeed or fail.
2174 ACTION_REMOTE_INPUT_SEND = 398;
2175
2176 // Failed attempt to send data through a remote input view associated with a
2177 // notification. Passes package name of app that posted the notification.
2178 ACTION_REMOTE_INPUT_FAIL = 399;
2179
2180 // User closed a remote input view associated with a notification. Passes package name of app
2181 // that posted the notification. Note that this can also happen transiently during notification
2182 // reinflation.
2183 ACTION_REMOTE_INPUT_CLOSE = 400;
2184
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002185 // OPEN: Settings > Accounts > Work profile settings
2186 // CATEGORY: SETTINGS
2187 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2188
Jason Monk25118d12016-05-10 13:25:50 -04002189 // Settings -> Dev options -> Convert to file encryption
2190 CONVERT_FBE = 402;
2191
2192 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2193 CONVERT_FBE_CONFIRM = 403;
2194
2195 // Settings -> Dev options -> Running services
2196 RUNNING_SERVICES = 404;
2197
Jason Monka1f697f2016-05-06 15:09:44 -04002198 // The dialog shown by 3P intent to change current webview implementation.
2199 WEBVIEW_IMPLEMENTATION = 405;
2200
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002201 // Settings launched from expanded quick settings.
2202 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2203
Chris Wren698b1702016-05-23 11:16:32 -04002204 // Notification expansion state toggled by the expand affordance.
2205 ACTION_NOTIFICATION_EXPANDER = 407;
2206
2207 // Notification group expansion state toggled by the expand affordance.
2208 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2209
Chris Wren7ee84182016-05-27 13:34:02 -04002210
Chris Wren6abeeb92016-05-26 14:44:38 -04002211 // Notification expansion state toggled by the expand gesture.
2212 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2213
2214 // Notification group expansion state toggled by the expand gesture.
2215 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2216
Bhavik Singh3451da42016-06-01 18:25:59 -07002217 // User performs gesture that activates the ambient display
2218 // 1: Gesture performed is Nudge
2219 // 2: Gesture performed is Pickup
2220 // 4: Gesture performed is Double Tap
2221 ACTION_AMBIENT_GESTURE = 411;
2222
Jason Monk9fa5f822016-05-11 10:26:31 -04002223 // ---- End N Constants, all N constants go above this line ----
2224
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002225 // ------- Begin N App Disambig Shade -----
2226 // Application disambig shade opened or closed with a featured app.
2227 // These are actually visibility events, but visible/hidden doesn't
2228 // take a package, so these are being logged as actions.
2229 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002230 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2231 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002232
2233 // Application disambig shade opened or closed without a featured app.
2234 // These are actually visibility events, but visible/hidden doesn't
2235 // take a package, so these are being logged as actions.
2236 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002237 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2238 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002239
2240 // User opens in an app by pressing “Always” in the application disambig shade.
2241 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002242 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002243
2244 // User opens in an app by pressing “Just Once” in the application disambig shade.
2245 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002246 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002247
2248 // User opens in an app by tapping on its name in the application disambig shade.
2249 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002250 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002251
Daniel Nishi010aa492016-05-11 09:42:24 -07002252 // OPEN: Settings > Internal storage > Storage manager
2253 // CATEGORY: SETTINGS
2254 STORAGE_MANAGER_SETTINGS = 458;
2255
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002256 // OPEN: Settings -> Gestures
2257 // CATEGORY: SETTINGS
2258 SETTINGS_GESTURES = 459;
2259
Daniel Nishi597e67f2016-05-18 13:56:13 -07002260 // ------ Begin Deletion Helper ------
2261 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2262 // SUBTYPE: false is off, true is on
2263 // CATEGORY: SETTINGS
2264 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002265
Daniel Nishi597e67f2016-05-18 13:56:13 -07002266 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2267 // SUBTYPE: false is off, true is on
2268 // CATEGORY: SETTINGS
2269 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2270
2271 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2272 // CATEGORY: SETTINGS
2273 // PACKAGE: Unchecked app
2274 ACTION_DELETION_SELECTION_APP_ON = 462;
2275
2276 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2277 // CATEGORY: SETTINGS
2278 // PACKAGE: Checked app
2279 ACTION_DELETION_SELECTION_APP_OFF = 463;
2280
2281 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2282 // SUBTYPE: false is expanded, true is collapsed
2283 // CATEGORY: SETTINGS
2284 ACTION_DELETION_APPS_COLLAPSED = 464;
2285
2286 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2287 // SUBTYPE: false is off, true is on
2288 // CATEGORY: SETTINGS
2289 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2290
2291 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2292 // SUBTYPE: false is expanded, true is collapsed
2293 // CATEGORY: SETTINGS
2294 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2295
2296 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2297 // CATEGORY: SETTINGS
2298 ACTION_DELETION_HELPER_CLEAR = 467;
2299
2300 // ACTION: Settings > Storage > Free Up Space > Cancel
2301 // CATEGORY: SETTINGS
2302 ACTION_DELETION_HELPER_CANCEL = 468;
2303
2304 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2305 // CATEGORY: SETTINGS
2306 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2307
2308 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2309 // CATEGORY: SETTINGS
2310 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2311
2312 // Deletion helper encountered an error during package deletion.
2313 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2314
2315 // Deletion helper encountered an error during downloads folder deletion.
2316 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2317
2318 // Deletion helper encountered an error during photo and video deletion.
2319 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2320
Fan Zhang5e956e82016-05-06 10:51:47 -07002321 // OPEN: Settings (root page if there are multiple tabs)
2322 // CATEGORY: SETTINGS
2323 DASHBOARD_CONTAINER = 474;
2324
2325 // OPEN: Settings -> SUPPORT TAB
2326 // CATEGORY: SETTINGS
2327 SUPPORT_FRAGMENT = 475;
2328
2329 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002330 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002331 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002332
2333 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002334 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002335 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2336
Fan Zhanga1985502016-06-16 16:48:38 -07002337 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002338 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002339 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2340
2341 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002342 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002343 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2344
2345 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002346 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002347 ACTION_SUPPORT_SIGN_IN = 480;
2348
2349 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002350 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002351 ACTION_SUPPORT_PHONE = 481;
2352
2353 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002354 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002355 ACTION_SUPPORT_CHAT = 482;
2356
2357 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002358 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002359 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2360
2361 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002362 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002363 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2364
Fan Zhang80807212016-06-30 12:26:55 -07002365 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002366 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002367 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2368
2369 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002370 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002371 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2372
2373 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002374 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002375 ACTION_SUPPORT_DIAL_TOLLED = 487;
2376
Justin Klaassen19494272016-07-18 21:38:24 -07002377 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002378 // CATEGORY: SETTINGS
2379 NIGHT_DISPLAY_SETTINGS = 488;
2380
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002381 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002382 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002383 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2384
Jason Monk484fd362016-07-13 15:24:32 -04002385 // Settings launched from collapsed quick settings.
2386 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2387
Justin Klaassen19494272016-07-18 21:38:24 -07002388 // OPEN: QS Night Light tile shown
2389 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002390 // SUBTYPE: 0 is off, 1 is on
2391 // CATEGORY: QUICK_SETTINGS
2392 QS_NIGHT_DISPLAY = 491;
2393
Justin Klaassen19494272016-07-18 21:38:24 -07002394 // Night Light on
2395 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2396
Doris Ling3c00afb2016-07-19 17:04:21 -07002397 // System navigation key up.
2398 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2399
2400 // System navigation key down.
2401 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2402
Doris Ling6dd3e462016-08-04 13:17:27 -07002403 // OPEN: Settings > Display -> Ambient Display
2404 // CATEGORY: SETTINGS
2405 ACTION_AMBIENT_DISPLAY = 495;
2406
Adrian Roos159ef7b2016-02-25 11:58:32 -08002407 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2408
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002409 // ACTION: The lockscreen gets shown because the SIM card was removed
2410 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2411 // CATEGORY: GLOBAL_SYSTEM_UI
2412 // OS: N-MR2
2413 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2414
2415 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2416
Clara Bayarric17a5982016-04-15 12:26:47 +01002417 // ------- Begin N Keyboard Shortcuts Helper -----
2418 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002419 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002420
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002421 // OPEN: Print Preview screen
2422 // Package: Package of app where print job is from
2423 PRINT_PREVIEW = 501;
2424
2425 // OPEN: User expands full print job options shade in print preview.
2426 PRINT_JOB_OPTIONS = 502;
2427
2428 // OPEN: “All Printers” screen for selecting printer
2429 // Subtype: # of printers listed
2430 PRINT_ALL_PRINTERS = 503;
2431
2432 // OPEN: “Add Printers” screen for adding printers
2433 // Subtype: # of enabled print service listed
2434 PRINT_ADD_PRINTERS = 504;
2435
2436 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2437 // Package: Package of print service.
2438 ACTION_PRINT = 505;
2439
2440 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2441 // Count all ACTION_PRINTER_SELECT_ALL actions.
2442 // Package: Package of print service tied to printer
2443 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2444
2445 // ACTION: User selects a printer from the “All printers” screen.
2446 // Package: Package of print service tied to printer
2447 ACTION_PRINTER_SELECT_ALL = 507;
2448
2449 // ACTION: User changes an option for the print job from print preview.
2450 // Subtype: 1: Copies
2451 // 2: Color mode
2452 // 3: Duplex mode
2453 // 4: Media (==Paper) size
2454 // 5: Orientation
2455 // 6: Page range
2456 // Package: Package of print service tied to printer
2457 ACTION_PRINT_JOB_OPTIONS = 508;
2458
2459 // ACTION: User searches for printer from All Printers
2460 ACTION_PRINTER_SEARCH = 509;
2461
2462 // ACTION: User selects “Add print service” button from All Printers
2463 ACTION_PRINT_SERVICE_ADD = 510;
2464
2465 // ACTION: User Enables/Disables Print Service via any means.
2466 // Subtype: 0: Enabled
2467 // 1: Disabled
2468 ACTION_PRINT_SERVICE_TOGGLE = 511;
2469
2470 // ACTION: User installs print recommended print service
2471 // Package: Package of print service
2472 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2473
Doris Ling88a6b162016-08-08 16:17:43 -07002474 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2475 // SUBTYPE: sub settings classname
2476 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2477
Fan Zhang92c60382016-08-08 14:03:53 -07002478 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2479 USER_DICTIONARY_SETTINGS = 514;
2480
2481 // OPEN: Settings > Date & time > Select time zone
2482 ZONE_PICKER = 515;
2483
2484 // OPEN: Settings > Security > Device administrators
2485 DEVICE_ADMIN_SETTINGS = 516;
2486
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002487 // ACTION: Managed provisioning was launched to set this package as DPC app.
2488 // PACKAGE: DPC's package name.
2489 PROVISIONING_DPC_PACKAGE_NAME = 517;
2490
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002491 // ACTION: Managed provisioning triggered DPC installation.
2492 // PACKAGE: Package name of package which installed DPC.
2493 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2494
2495 // ACTION: Logged when provisioning activity finishes.
2496 // TIME: Indicates time taken by provisioning activity to finish in MS.
2497 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2498
2499 // ACTION: Logged when preprovisioning activity finishes.
2500 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2501 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2502
2503 // ACTION: Logged when encrypt device activity finishes.
2504 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2505 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2506
2507 // ACTION: Logged when web activity finishes.
2508 // TIME: Indicates total time taken by web activity to finish in MS.
2509 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2510
2511 // ACTION: Logged when trampoline activity finishes.
2512 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2513 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2514
2515 // ACTION: Logged when encryption activity finishes.
2516 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2517 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2518
2519 // ACTION: Logged when finalization activity finishes.
2520 // TIME: Indicates time taken by finalization activity to finish in MS.
2521 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002522
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002523 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002524 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002525
Fan Zhang95094182016-08-24 18:14:16 -07002526 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002527 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002528
2529 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002530 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002531
2532 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002533 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002534
2535 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002536 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002537
2538 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002539 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002540
Fan Zhangc1352ae2016-09-16 12:46:11 -07002541 // OPEN: Settings > Security > Use one lock dialog
2542 DIALOG_UNIFICATION_CONFIRMATION = 532;
2543
2544 // OPEN: Settings > Security > User Credential
2545 DIALOG_USER_CREDENTIAL = 533;
2546
2547 // OPEN: Settings > Accounts > Remove account
2548 DIALOG_REMOVE_USER = 534;
2549
2550 // OPEN: Settings > Accounts > Confirm auto sync dialog
2551 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2552
2553 // OPEN: Settings > Apps > Dialog for running service details
2554 DIALOG_RUNNIGN_SERVICE = 536;
2555
2556 // OPEN: Settings > Dialog for hiding home settings
2557 DIALOG_NO_HOME = 537;
2558
2559 // OPEN: Settings > Bluetooth > Rename this device
2560 DIALOG_BLUETOOTH_RENAME = 538;
2561
2562 // OPEN: Settings > Bluetooth > Paired device profile
2563 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2564
2565 // OPEN: Settings > Battery optimization > details for app
2566 DIALOG_HIGH_POWER_DETAILS = 540;
2567
2568 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2569 DIALOG_KEYBOARD_LAYOUT = 541;
2570
2571 // OPEN: Settings > Wifi > WPS Setup dialog
2572 DIALOG_WPS_SETUP = 542;
2573
2574 // OPEN: Settings > WIFI Scan permission dialog
2575 DIALOG_WIFI_SCAN_MODE = 543;
2576
2577 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2578 DIALOG_WIFI_SKIP = 544;
2579
2580 // OPEN: Settings > Wireless > VPN > Config dialog
2581 DIALOG_LEGACY_VPN_CONFIG = 545;
2582
2583 // OPEN: Settings > Wireless > VPN > Config dialog for app
2584 DIALOG_VPN_APP_CONFIG = 546;
2585
2586 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2587 DIALOG_VPN_CANNOT_CONNECT = 547;
2588
2589 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2590 DIALOG_VPN_REPLACE_EXISTING = 548;
2591
2592 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2593 DIALOG_BILLING_CYCLE = 549;
2594
2595 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2596 DIALOG_BILLING_BYTE_LIMIT = 550;
2597
2598 // OPEN: Settings > Billing cycle > turn on data limit dialog
2599 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2600
2601 // OPEN: Settings > Service > Turn off notification access dialog
2602 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2603
2604 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2605 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2606
2607 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2608 DIALOG_ZEN_ACCESS_GRANT = 554;
2609
2610 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2611 DIALOG_ZEN_ACCESS_REVOKE = 555;
2612
2613 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2614 DIALOG_ZEN_TIMEPICKER = 556;
2615
2616 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2617 DIALOG_SERVICE_ACCESS_WARNING = 557;
2618
2619 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2620 DIALOG_APP_INFO_ACTION = 558;
2621
2622 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2623 DIALOG_VOLUME_FORGET = 559;
2624
2625 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2626 DIALOG_VOLUME_SLOW_WARNING = 560;
2627
2628 // OPEN: Settings > Storage > Dialog for initializing a volume
2629 DIALOG_VOLUME_INIT = 561;
2630
2631 // OPEN: Settings > Storage > Dialog for unmounting a volume
2632 DIALOG_VOLUME_UNMOUNT = 562;
2633
2634 // OPEN: Settings > Storage > Dialog for renaming a volume
2635 DIALOG_VOLUME_RENAME = 563;
2636
2637 // OPEN: Settings > Storage > Dialog for clear cache
2638 DIALOG_STORAGE_CLEAR_CACHE = 564;
2639
2640 // OPEN: Settings > Storage > Dialog for system info
2641 DIALOG_STORAGE_SYSTEM_INFO = 565;
2642
2643 // OPEN: Settings > Storage > Dialog for other info
2644 DIALOG_STORAGE_OTHER_INFO = 566;
2645
2646 // OPEN: Settings > Storage > Dialog for user info
2647 DIALOG_STORAGE_USER_INFO = 567;
2648
2649 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2650 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2651
2652 // OPEN: Settings > Add fingerprint > Error dialog
2653 DIALOG_FINGERPINT_ERROR = 569;
2654
2655 // OPEN: Settings > Fingerprint > Rename or delete dialog
2656 DIALOG_FINGERPINT_EDIT = 570;
2657
2658 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2659 DIALOG_FINGERPINT_DELETE_LAST = 571;
2660
2661 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2662 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2663
2664 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2665 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2666
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002667 // OPEN: Settings > Proxy Selector error dialog
2668 DIALOG_PROXY_SELECTOR_ERROR = 574;
2669
2670 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2671 DIALOG_WIFI_P2P_DISCONNECT = 575;
2672
2673 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2674 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2675
2676 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2677 DIALOG_WIFI_P2P_RENAME = 577;
2678
2679 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2680 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2681
2682 // OPEN: Settings > APN > Restore default dialog
2683 DIALOG_APN_RESTORE_DEFAULT = 579;
2684
2685 // OPEN: Settings > Dream > When to dream dialog
2686 DIALOG_DREAM_START_DELAY = 580;
2687
2688 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2689 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2690
2691 // OPEN: Settings > Tether > AP setting dialog
2692 DIALOG_AP_SETTINGS = 582;
2693
2694 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2695 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2696
2697 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2698 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2699
2700 // OPEN: Settings > Account > Remove account dialog
2701 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2702
2703 // OPEN: Settings > Account > Remove account failed dialog
2704 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2705
2706 // OPEN: Settings > Account > Cannot do onetime sync dialog
2707 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2708
2709 // OPEN: Settings > Display > Night light > Set start time dialog
2710 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2711
2712 // OPEN: Settings > Display > Night light > Set end time dialog
2713 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2714
2715 // OPEN: Settings > User > Edit info dialog
2716 DIALOG_USER_EDIT = 590;
2717
2718 // OPEN: Settings > User > Confirm remove dialog
2719 DIALOG_USER_REMOVE = 591;
2720
2721 // OPEN: Settings > User > Enable calling dialog
2722 DIALOG_USER_ENABLE_CALLING = 592;
2723
2724 // OPEN: Settings > User > Enable calling and sms dialog
2725 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2726
2727 // OPEN: Settings > User > Cannot manage device message dialog
2728 DIALOG_USER_CANNOT_MANAGE = 594;
2729
2730 // OPEN: Settings > User > Add user dialog
2731 DIALOG_USER_ADD = 595;
2732
2733 // OPEN: Settings > User > Setup user dialog
2734 DIALOG_USER_SETUP = 596;
2735
2736 // OPEN: Settings > User > Setup profile dialog
2737 DIALOG_USER_SETUP_PROFILE = 597;
2738
2739 // OPEN: Settings > User > Choose user type dialog
2740 DIALOG_USER_CHOOSE_TYPE = 598;
2741
2742 // OPEN: Settings > User > Need lockscreen dialog
2743 DIALOG_USER_NEED_LOCKSCREEN = 599;
2744
2745 // OPEN: Settings > User > Confirm exit guest mode dialog
2746 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2747
2748 // OPEN: Settings > User > Edit user profile dialog
2749 DIALOG_USER_EDIT_PROFILE = 601;
2750
2751 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2752 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2753
2754 // OPEN: Settings > Wifi > Edit AP dialog
2755 DIALOG_WIFI_AP_EDIT = 603;
2756
2757 // OPEN: Settings > Wifi > PBC Config dialog
2758 DIALOG_WIFI_PBC = 604;
2759
2760 // OPEN: Settings > Wifi > Display pin dialog
2761 DIALOG_WIFI_PIN = 605;
2762
2763 // OPEN: Settings > Wifi > Write config to NFC dialog
2764 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002765 // OPEN: Settings > Date > Date picker dialog
2766 DIALOG_DATE_PICKER = 607;
2767
2768 // OPEN: Settings > Date > Time picker dialog
2769 DIALOG_TIME_PICKER = 608;
2770
2771 // OPEN: Settings > Wireless > Manage wireless plan dialog
2772 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002773
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002774 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002775 PROVISIONING_NETWORK_TYPE = 610;
2776
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002777 // ACTION: Logs action which triggered provisioning.
2778 PROVISIONING_ACTION = 611;
2779
Mahaver Chopraab282072016-10-06 19:19:23 +01002780 // ACTION: Logs extra passed by the dpc while provisioning.
2781 PROVISIONING_EXTRA = 612;
2782
Salvador Martinez64867c12016-10-14 15:25:09 -07002783 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2784 BLUETOOTH_DIALOG_FRAGMENT = 613;
2785
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002786 // ACTION: Logs provisioning started by zero touch.
2787 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2788
2789 // ACTION: Logs provisioning started by NFC bump.
2790 PROVISIONING_ENTRY_POINT_NFC = 615;
2791
2792 // ACTION: Logs provisioning started using QR code.
2793 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2794
2795 // ACTION: Logs provisioning started using adb.
2796 PROVISIONING_ENTRY_POINT_ADB = 617;
2797
2798 // ACTION: Logs provisioning started by trusted source.
2799 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2800
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002801 // ACTION: Logged when copy account task finishes.
2802 // TIME: Indicates time taken by copy account task to finish in MS.
2803 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2804
2805 // ACTION: Logged when create profile task finishes.
2806 // TIME: Indicates time taken by create profile task to finish in MS.
2807 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2808
2809 // ACTION: Logged when start profile task finishes.
2810 // TIME: Indicates time taken by start profile task to finish in MS.
2811 PROVISIONING_START_PROFILE_TASK_MS = 621;
2812
2813 // ACTION: Logged when download package task finishes.
2814 // TIME: Indicates time taken by download package task to finish in MS.
2815 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2816
2817 // ACTION: Logged when install package task finishes.
2818 // TIME: Indicates time taken by install package task to finish in MS.
2819 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2820
2821 // ACTION: User cancelled provisioning.
2822 PROVISIONING_CANCELLED = 624;
2823
2824 // ACTION: Logged when provisioning throws an error.
2825 PROVISIONING_ERROR = 625;
2826
2827 // ACTION: Logs the status of copying user account during provisioning.
2828 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2829
2830 // ACTION: Logs the end to end time taken by all provisioning tasks.
2831 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2832
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002833 // OPEN: Settings > Privacy
2834 // CATEGORY: SETTINGS
2835 // OS: O
2836 ENTERPRISE_PRIVACY_SETTINGS = 628;
2837
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002838 // ACTION: Longpress on a TextView.
2839 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2840 // CATEGORY: TEXT_CONTROLS
2841 // OS: O
2842 TEXT_LONGPRESS = 629;
2843
Chris Wren3824c392017-11-27 12:54:14 -05002844 // ACTION: An app requested an unknown permission
2845 // PACKAGE: The package name of the app requesting the permission
2846 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002847 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2848
Chris Wren3824c392017-11-27 12:54:14 -05002849 // ACTION: An app was granted an unknown permission
2850 // PACKAGE: The package name of the app that was granted the permission
2851 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002852 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2853
Chris Wren3824c392017-11-27 12:54:14 -05002854 // ACTION: An app requested an unknown permission and the request was denied
2855 // PACKAGE: The package name of the app requesting the permission
2856 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002857 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2858
Chris Wren3824c392017-11-27 12:54:14 -05002859 // ACTION: An unknown permission was revoked for an app
2860 // PACKAGE: The package name of the app the permission was revoked for
2861 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002862 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2863
Chris Wren3824c392017-11-27 12:54:14 -05002864 // ACTION: An app requested the permission READ_CALENDAR
2865 // PACKAGE: The package name of the app requesting the permission
2866 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002867 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2868
Chris Wren3824c392017-11-27 12:54:14 -05002869 // ACTION: An app was granted the permission READ_CALENDAR
2870 // PACKAGE: The package name of the app that was granted the permission
2871 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002872 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2873
Chris Wren3824c392017-11-27 12:54:14 -05002874 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2875 // PACKAGE: The package name of the app requesting the permission
2876 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002877 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2878
Chris Wren3824c392017-11-27 12:54:14 -05002879 // ACTION: The permission READ_CALENDAR was revoked for an app
2880 // PACKAGE: The package name of the app the permission was revoked for
2881 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002882 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2883
Chris Wren3824c392017-11-27 12:54:14 -05002884 // ACTION: An app requested the permission WRITE_CALENDAR
2885 // PACKAGE: The package name of the app requesting the permission
2886 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002887 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2888
Chris Wren3824c392017-11-27 12:54:14 -05002889 // ACTION: An app was granted the permission WRITE_CALENDAR
2890 // PACKAGE: The package name of the app that was granted the permission
2891 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002892 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2893
Chris Wren3824c392017-11-27 12:54:14 -05002894 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2895 // PACKAGE: The package name of the app requesting the permission
2896 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002897 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2898
Chris Wren3824c392017-11-27 12:54:14 -05002899 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2900 // PACKAGE: The package name of the app the permission was revoked for
2901 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002902 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2903
Chris Wren3824c392017-11-27 12:54:14 -05002904 // ACTION: An app requested the permission CAMERA
2905 // PACKAGE: The package name of the app requesting the permission
2906 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002907 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2908
Chris Wren3824c392017-11-27 12:54:14 -05002909 // ACTION: An app was granted the permission CAMERA
2910 // PACKAGE: The package name of the app that was granted the permission
2911 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002912 ACTION_PERMISSION_GRANT_CAMERA = 643;
2913
Chris Wren3824c392017-11-27 12:54:14 -05002914 // ACTION: An app requested the permission CAMERA and the request was denied
2915 // PACKAGE: The package name of the app requesting the permission
2916 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002917 ACTION_PERMISSION_DENIED_CAMERA = 644;
2918
Chris Wren3824c392017-11-27 12:54:14 -05002919 // ACTION: The permission CAMERA was revoked for an app
2920 // PACKAGE: The package name of the app the permission was revoked for
2921 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002922 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2923
Chris Wren3824c392017-11-27 12:54:14 -05002924 // ACTION: An app requested the permission READ_CONTACTS
2925 // PACKAGE: The package name of the app requesting the permission
2926 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002927 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2928
Chris Wren3824c392017-11-27 12:54:14 -05002929 // ACTION: An app was granted the permission READ_CONTACTS
2930 // PACKAGE: The package name of the app that was granted the permission
2931 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002932 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2933
Chris Wren3824c392017-11-27 12:54:14 -05002934 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2935 // PACKAGE: The package name of the app requesting the permission
2936 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002937 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2938
Chris Wren3824c392017-11-27 12:54:14 -05002939 // ACTION: The permission READ_CONTACTS was revoked for an app
2940 // PACKAGE: The package name of the app the permission was revoked for
2941 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002942 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2943
Chris Wren3824c392017-11-27 12:54:14 -05002944 // ACTION: An app requested the permission WRITE_CONTACTS
2945 // PACKAGE: The package name of the app requesting the permission
2946 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002947 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2948
Chris Wren3824c392017-11-27 12:54:14 -05002949 // ACTION: An app was granted the permission WRITE_CONTACTS
2950 // PACKAGE: The package name of the app that was granted the permission
2951 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002952 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2953
Chris Wren3824c392017-11-27 12:54:14 -05002954 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2955 // PACKAGE: The package name of the app requesting the permission
2956 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002957 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2958
Chris Wren3824c392017-11-27 12:54:14 -05002959 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2960 // PACKAGE: The package name of the app the permission was revoked for
2961 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002962 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2963
Chris Wren3824c392017-11-27 12:54:14 -05002964 // ACTION: An app requested the permission GET_ACCOUNTS
2965 // PACKAGE: The package name of the app requesting the permission
2966 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002967 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2968
Chris Wren3824c392017-11-27 12:54:14 -05002969 // ACTION: An app was granted the permission GET_ACCOUNTS
2970 // PACKAGE: The package name of the app that was granted the permission
2971 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002972 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2973
Chris Wren3824c392017-11-27 12:54:14 -05002974 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2975 // PACKAGE: The package name of the app requesting the permission
2976 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002977 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2978
Chris Wren3824c392017-11-27 12:54:14 -05002979 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2980 // PACKAGE: The package name of the app the permission was revoked for
2981 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002982 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2983
Chris Wren3824c392017-11-27 12:54:14 -05002984 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2985 // PACKAGE: The package name of the app requesting the permission
2986 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002987 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2988
Chris Wren3824c392017-11-27 12:54:14 -05002989 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2990 // PACKAGE: The package name of the app that was granted the permission
2991 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002992 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2993
Chris Wren3824c392017-11-27 12:54:14 -05002994 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2995 // PACKAGE: The package name of the app requesting the permission
2996 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002997 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2998
Chris Wren3824c392017-11-27 12:54:14 -05002999 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3000 // PACKAGE: The package name of the app the permission was revoked for
3001 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003002 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3003
Chris Wren3824c392017-11-27 12:54:14 -05003004 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3005 // PACKAGE: The package name of the app requesting the permission
3006 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003007 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3008
Chris Wren3824c392017-11-27 12:54:14 -05003009 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3010 // PACKAGE: The package name of the app that was granted the permission
3011 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003012 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3013
Chris Wren3824c392017-11-27 12:54:14 -05003014 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3015 // PACKAGE: The package name of the app requesting the permission
3016 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003017 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3018
Chris Wren3824c392017-11-27 12:54:14 -05003019 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3020 // PACKAGE: The package name of the app the permission was revoked for
3021 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003022 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3023
Chris Wren3824c392017-11-27 12:54:14 -05003024 // ACTION: An app requested the permission RECORD_AUDIO
3025 // PACKAGE: The package name of the app requesting the permission
3026 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003027 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3028
Chris Wren3824c392017-11-27 12:54:14 -05003029 // ACTION: An app was granted the permission RECORD_AUDIO
3030 // PACKAGE: The package name of the app that was granted the permission
3031 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003032 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3033
Chris Wren3824c392017-11-27 12:54:14 -05003034 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3035 // PACKAGE: The package name of the app requesting the permission
3036 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003037 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3038
Chris Wren3824c392017-11-27 12:54:14 -05003039 // ACTION: The permission RECORD_AUDIO was revoked for an app
3040 // PACKAGE: The package name of the app the permission was revoked for
3041 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003042 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3043
Chris Wren3824c392017-11-27 12:54:14 -05003044 // ACTION: An app requested the permission READ_PHONE_STATE
3045 // PACKAGE: The package name of the app requesting the permission
3046 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003047 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3048
Chris Wren3824c392017-11-27 12:54:14 -05003049 // ACTION: An app was granted the permission READ_PHONE_STATE
3050 // PACKAGE: The package name of the app that was granted the permission
3051 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003052 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3053
Chris Wren3824c392017-11-27 12:54:14 -05003054 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3055 // PACKAGE: The package name of the app requesting the permission
3056 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003057 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3058
Chris Wren3824c392017-11-27 12:54:14 -05003059 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3060 // PACKAGE: The package name of the app the permission was revoked for
3061 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003062 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3063
Chris Wren3824c392017-11-27 12:54:14 -05003064 // ACTION: An app requested the permission CALL_PHONE
3065 // PACKAGE: The package name of the app requesting the permission
3066 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003067 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3068
Chris Wren3824c392017-11-27 12:54:14 -05003069 // ACTION: An app was granted the permission CALL_PHONE
3070 // PACKAGE: The package name of the app that was granted the permission
3071 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003072 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3073
Chris Wren3824c392017-11-27 12:54:14 -05003074 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3075 // PACKAGE: The package name of the app requesting the permission
3076 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003077 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3078
Chris Wren3824c392017-11-27 12:54:14 -05003079 // ACTION: The permission CALL_PHONE was revoked for an app
3080 // PACKAGE: The package name of the app the permission was revoked for
3081 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003082 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3083
Chris Wren3824c392017-11-27 12:54:14 -05003084 // ACTION: An app requested the permission READ_CALL_LOG
3085 // PACKAGE: The package name of the app requesting the permission
3086 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003087 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3088
Chris Wren3824c392017-11-27 12:54:14 -05003089 // ACTION: An app was granted the permission READ_CALL_LOG
3090 // PACKAGE: The package name of the app that was granted the permission
3091 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003092 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3093
Chris Wren3824c392017-11-27 12:54:14 -05003094 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3095 // PACKAGE: The package name of the app requesting the permission
3096 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003097 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3098
Chris Wren3824c392017-11-27 12:54:14 -05003099 // ACTION: The permission READ_CALL_LOG was revoked for an app
3100 // PACKAGE: The package name of the app the permission was revoked for
3101 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003102 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3103
Chris Wren3824c392017-11-27 12:54:14 -05003104 // ACTION: An app requested the permission WRITE_CALL_LOG
3105 // PACKAGE: The package name of the app requesting the permission
3106 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003107 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3108
Chris Wren3824c392017-11-27 12:54:14 -05003109 // ACTION: An app was granted the permission WRITE_CALL_LOG
3110 // PACKAGE: The package name of the app that was granted the permission
3111 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003112 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3113
Chris Wren3824c392017-11-27 12:54:14 -05003114 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3115 // PACKAGE: The package name of the app requesting the permission
3116 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003117 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3118
Chris Wren3824c392017-11-27 12:54:14 -05003119 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3120 // PACKAGE: The package name of the app the permission was revoked for
3121 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003122 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3123
Chris Wren3824c392017-11-27 12:54:14 -05003124 // ACTION: An app requested the permission ADD_VOICEMAIL
3125 // PACKAGE: The package name of the app requesting the permission
3126 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003127 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3128
Chris Wren3824c392017-11-27 12:54:14 -05003129 // ACTION: An app was granted the permission ADD_VOICEMAIL
3130 // PACKAGE: The package name of the app that was granted the permission
3131 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003132 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3133
Chris Wren3824c392017-11-27 12:54:14 -05003134 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3135 // PACKAGE: The package name of the app requesting the permission
3136 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003137 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3138
Chris Wren3824c392017-11-27 12:54:14 -05003139 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3140 // PACKAGE: The package name of the app the permission was revoked for
3141 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003142 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3143
Chris Wren3824c392017-11-27 12:54:14 -05003144 // ACTION: An app requested the permission USE_SIP
3145 // PACKAGE: The package name of the app requesting the permission
3146 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003147 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3148
Chris Wren3824c392017-11-27 12:54:14 -05003149 // ACTION: An app was granted the permission USE_SIP
3150 // PACKAGE: The package name of the app that was granted the permission
3151 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003152 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3153
Chris Wren3824c392017-11-27 12:54:14 -05003154 // ACTION: An app requested the permission USE_SIP and the request was denied
3155 // PACKAGE: The package name of the app requesting the permission
3156 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003157 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3158
Chris Wren3824c392017-11-27 12:54:14 -05003159 // ACTION: The permission USE_SIP was revoked for an app
3160 // PACKAGE: The package name of the app the permission was revoked for
3161 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003162 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3163
Chris Wren3824c392017-11-27 12:54:14 -05003164 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3165 // PACKAGE: The package name of the app requesting the permission
3166 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003167 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3168
Chris Wren3824c392017-11-27 12:54:14 -05003169 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3170 // PACKAGE: The package name of the app that was granted the permission
3171 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003172 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3173
Chris Wren3824c392017-11-27 12:54:14 -05003174 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3175 // PACKAGE: The package name of the app requesting the permission
3176 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003177 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3178
Chris Wren3824c392017-11-27 12:54:14 -05003179 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3180 // PACKAGE: The package name of the app the permission was revoked for
3181 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003182 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3183
Chris Wren3824c392017-11-27 12:54:14 -05003184 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3185 // PACKAGE: The package name of the app requesting the permission
3186 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003187 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3188
Chris Wren3824c392017-11-27 12:54:14 -05003189 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3190 // PACKAGE: The package name of the app that was granted the permission
3191 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003192 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3193
Chris Wren3824c392017-11-27 12:54:14 -05003194 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3195 // PACKAGE: The package name of the app requesting the permission
3196 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003197 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3198
Chris Wren3824c392017-11-27 12:54:14 -05003199 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3200 // PACKAGE: The package name of the app the permission was revoked for
3201 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003202 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3203
Chris Wren3824c392017-11-27 12:54:14 -05003204 // ACTION: An app requested the permission BODY_SENSORS
3205 // PACKAGE: The package name of the app requesting the permission
3206 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003207 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3208
Chris Wren3824c392017-11-27 12:54:14 -05003209 // ACTION: An app was granted the permission BODY_SENSORS
3210 // PACKAGE: The package name of the app that was granted the permission
3211 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003212 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3213
Chris Wren3824c392017-11-27 12:54:14 -05003214 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3215 // PACKAGE: The package name of the app requesting the permission
3216 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003217 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3218
Chris Wren3824c392017-11-27 12:54:14 -05003219 // ACTION: The permission BODY_SENSORS was revoked for an app
3220 // PACKAGE: The package name of the app the permission was revoked for
3221 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003222 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3223
Chris Wren3824c392017-11-27 12:54:14 -05003224 // ACTION: An app requested the permission SEND_SMS
3225 // PACKAGE: The package name of the app requesting the permission
3226 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003227 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3228
Chris Wren3824c392017-11-27 12:54:14 -05003229 // ACTION: An app was granted the permission SEND_SMS
3230 // PACKAGE: The package name of the app that was granted the permission
3231 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003232 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3233
Chris Wren3824c392017-11-27 12:54:14 -05003234 // ACTION: An app requested the permission SEND_SMS and the request was denied
3235 // PACKAGE: The package name of the app requesting the permission
3236 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003237 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3238
Chris Wren3824c392017-11-27 12:54:14 -05003239 // ACTION: The permission SEND_SMS was revoked for an app
3240 // PACKAGE: The package name of the app the permission was revoked for
3241 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003242 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3243
Chris Wren3824c392017-11-27 12:54:14 -05003244 // ACTION: An app requested the permission RECEIVE_SMS
3245 // PACKAGE: The package name of the app requesting the permission
3246 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003247 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3248
Chris Wren3824c392017-11-27 12:54:14 -05003249 // ACTION: An app was granted the permission RECEIVE_SMS
3250 // PACKAGE: The package name of the app that was granted the permission
3251 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003252 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3253
Chris Wren3824c392017-11-27 12:54:14 -05003254 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3255 // PACKAGE: The package name of the app requesting the permission
3256 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003257 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3258
Chris Wren3824c392017-11-27 12:54:14 -05003259 // ACTION: The permission RECEIVE_SMS was revoked for an app
3260 // PACKAGE: The package name of the app the permission was revoked for
3261 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003262 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3263
Chris Wren3824c392017-11-27 12:54:14 -05003264 // ACTION: An app requested the permission READ_SMS
3265 // PACKAGE: The package name of the app requesting the permission
3266 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003267 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3268
Chris Wren3824c392017-11-27 12:54:14 -05003269 // ACTION: An app was granted the permission READ_SMS
3270 // PACKAGE: The package name of the app that was granted the permission
3271 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003272 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3273
Chris Wren3824c392017-11-27 12:54:14 -05003274 // ACTION: An app requested the permission READ_SMS and the request was denied
3275 // PACKAGE: The package name of the app requesting the permission
3276 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003277 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3278
Chris Wren3824c392017-11-27 12:54:14 -05003279 // ACTION: The permission READ_SMS was revoked for an app
3280 // PACKAGE: The package name of the app the permission was revoked for
3281 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003282 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3283
Chris Wren3824c392017-11-27 12:54:14 -05003284 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3285 // PACKAGE: The package name of the app requesting the permission
3286 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003287 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3288
Chris Wren3824c392017-11-27 12:54:14 -05003289 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3290 // PACKAGE: The package name of the app that was granted the permission
3291 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003292 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3293
Chris Wren3824c392017-11-27 12:54:14 -05003294 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3295 // PACKAGE: The package name of the app requesting the permission
3296 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003297 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3298
Chris Wren3824c392017-11-27 12:54:14 -05003299 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3300 // PACKAGE: The package name of the app the permission was revoked for
3301 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003302 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3303
Chris Wren3824c392017-11-27 12:54:14 -05003304 // ACTION: An app requested the permission RECEIVE_MMS
3305 // PACKAGE: The package name of the app requesting the permission
3306 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003307 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3308
Chris Wren3824c392017-11-27 12:54:14 -05003309 // ACTION: An app was granted the permission RECEIVE_MMS
3310 // PACKAGE: The package name of the app that was granted the permission
3311 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003312 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3313
Chris Wren3824c392017-11-27 12:54:14 -05003314 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3315 // PACKAGE: The package name of the app requesting the permission
3316 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003317 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3318
Chris Wren3824c392017-11-27 12:54:14 -05003319 // ACTION: The permission RECEIVE_MMS was revoked for an app
3320 // PACKAGE: The package name of the app the permission was revoked for
3321 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003322 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3323
Chris Wren3824c392017-11-27 12:54:14 -05003324 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3325 // PACKAGE: The package name of the app requesting the permission
3326 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003327 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3328
Chris Wren3824c392017-11-27 12:54:14 -05003329 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3330 // PACKAGE: The package name of the app that was granted the permission
3331 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003332 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3333
Chris Wren3824c392017-11-27 12:54:14 -05003334 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3335 // PACKAGE: The package name of the app requesting the permission
3336 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003337 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3338
Chris Wren3824c392017-11-27 12:54:14 -05003339 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3340 // PACKAGE: The package name of the app the permission was revoked for
3341 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003342 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3343
Chris Wren3824c392017-11-27 12:54:14 -05003344 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3345 // PACKAGE: The package name of the app requesting the permission
3346 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003347 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3348
Chris Wren3824c392017-11-27 12:54:14 -05003349 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3350 // PACKAGE: The package name of the app that was granted the permission
3351 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003352 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3353
Chris Wren3824c392017-11-27 12:54:14 -05003354 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3355 // PACKAGE: The package name of the app requesting the permission
3356 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003357 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3358
Chris Wren3824c392017-11-27 12:54:14 -05003359 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3360 // PACKAGE: The package name of the app the permission was revoked for
3361 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003362 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3363
Mahaverfa6566e2016-11-29 21:08:14 +00003364 // ACTION: Logged when a provisioning session has started
3365 PROVISIONING_SESSION_STARTED = 734;
3366
3367 // ACTION: Logged when a provisioning session has completed
3368 PROVISIONING_SESSION_COMPLETED = 735;
3369
Chris Wren3824c392017-11-27 12:54:14 -05003370 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3371 // PACKAGE: The package name of the app requesting the permission
3372 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003373 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003374
Chris Wren3824c392017-11-27 12:54:14 -05003375 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3376 // PACKAGE: The package name of the app that was granted the permission
3377 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003378 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003379
Chris Wren3824c392017-11-27 12:54:14 -05003380 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3381 // PACKAGE: The package name of the app requesting the permission
3382 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003383 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003384
Chris Wren3824c392017-11-27 12:54:14 -05003385 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3386 // PACKAGE: The package name of the app the permission was revoked for
3387 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003388 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003389
Santos Cordon3107d292016-09-20 15:50:35 -07003390 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3391 // SUBTYPE: slider value
3392 // CATEGORY: QUICK_SETTINGS
3393 // OS: 6.0
3394 ACTION_BRIGHTNESS_FOR_VR = 498;
3395
Hugo Benichie1cbf152016-12-08 09:36:52 +09003396 // ACTION: A captive portal was detected during network validation
3397 // CATEGORY: NOTIFICATION
3398 // OS: N-MR2
3399 NOTIFICATION_NETWORK_SIGN_IN = 740;
3400
3401 // ACTION: An unvalidated network without Internet was selected by the user
3402 // CATEGORY: NOTIFICATION
3403 // OS: N-MR2
3404 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3405
3406 // ACTION: A validated network failed revalidation and lost Internet access
3407 // CATEGORY: NOTIFICATION
3408 // OS: N-MR2
3409 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3410
3411 // ACTION: The system default network switched to a different network
3412 // CATEGORY: NOTIFICATION
3413 // OS: N-MR2
3414 NOTIFICATION_NETWORK_SWITCH = 743;
3415
Fan Zhang074c4cb2016-12-21 12:10:33 -08003416 // OPEN: Settings > System
3417 SETTINGS_SYSTEM_CATEGORY = 744;
3418
3419 // OPEN: Settings > Storage
3420 SETTINGS_STORAGE_CATEGORY = 745;
3421
3422 // OPEN: Settings > Network & Internet
3423 SETTINGS_NETWORK_CATEGORY = 746;
3424
3425 // OPEN: Settings > Connected Device
3426 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3427
3428 // OPEN: Settings > App & Notification
3429 SETTINGS_APP_NOTIF_CATEGORY = 748;
3430
3431 // OPEN: Settings > System > Input & Gesture
3432 SETTINGS_INPUT_CATEGORY = 749;
3433
3434 // OPEN: Settings > System > Language & Region
3435 SETTINGS_LANGUAGE_CATEGORY = 750;
3436
3437 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3438 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3439
3440 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3441 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3442
3443 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3444 SETTINGS_GESTURE_PICKUP = 753;
3445
3446 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3447 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3448
3449 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3450 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3451
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003452 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3453 // CATEGORY: Settings
3454 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3455
Alison Cichowlas803054d2016-12-13 14:38:01 -05003456 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003457 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003458 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3459 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3460 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003461
Salvador Martinezc43ab062016-12-21 11:09:11 -08003462 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3463 // user accepted
3464 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003465
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003466 // Enclosing category for group of APP_TRANSITION_FOO events,
3467 // logged when we execute an app transition.
3468 APP_TRANSITION = 761;
3469
Fan Zhang945deea2017-01-11 16:37:49 -08003470 // ACTION: User leaves Settings search UI without entering any query.
3471 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3472
3473 // ACTION: Clicking on any search result in Settings.
3474 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003475
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003476 // ACTION: Allow Battery optimization for an app
3477 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3478
3479 // ACTION: Deny Battery optimization for an app
3480 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3481
3482 // ACTION: Enable Device Admin app
3483 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3484
3485 // ACTION: Disable Device Admin app
3486 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3487
3488 // ACTION: Allow "Do Not Disturb access" for an app
3489 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3490
3491 // ACTION: Deny "Do Not Disturb access" for an app
3492 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3493
3494 // ACTION: Allow "Draw over other apps" for an app
3495 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3496
Christine Franks47175c32017-03-14 10:21:25 -07003497 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003498 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3499
3500 // ACTION: Allow "VR helper services" for an app
3501 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3502
3503 // ACTION: Deny "VR helper services" for an app
3504 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3505
3506 // ACTION: Allow "Modify system settings" for an app
3507 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3508
3509 // ACTION: Deny "Modify system settings" for an app
3510 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3511
3512 // ACTION: Allow "Notification access" for an app
3513 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3514
3515 // ACTION: Deny "Notification access" for an app
3516 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3517
3518 // ACTION: "Premium SMS access" for an app - "ask user" option
3519 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3520
3521 // ACTION: "Premium SMS access" for an app - "never allow" option
3522 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3523
3524 // ACTION: "Premium SMS access" for an app - "always allow" option
3525 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3526
3527 // ACTION: Allow "Unrestricted data access" for an app
3528 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3529
3530 // ACTION: Deny "Unrestricted data access" for an app
3531 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3532
3533 // ACTION: Allow "Usage access" for an app
3534 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3535
3536 // ACTION: Deny "Usage access" for an app
3537 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3538
Fan Zhangad5dacc2017-01-18 14:18:54 -08003539 // OPEN: Settings > Apps > Default Apps > Default browser
3540 DEFAULT_BROWSER_PICKER = 785;
3541
3542 // OPEN: Settings > Apps > Default Apps > Default emergency app
3543 DEFAULT_EMERGENCY_APP_PICKER = 786;
3544
3545 // OPEN: Settings > Apps > Default Apps > Default home
3546 DEFAULT_HOME_PICKER = 787;
3547
3548 // OPEN: Settings > Apps > Default Apps > Default phone
3549 DEFAULT_PHONE_PICKER = 788;
3550
3551 // OPEN: Settings > Apps > Default Apps > Default sms
3552 DEFAULT_SMS_PICKER = 789;
3553
3554 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3555 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3556
3557 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3558 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3559
Jason Long1b51da62017-01-24 11:35:31 -08003560 // OPEN: Settings > Apps > Default Apps > Default autofill app
3561 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003562
Chris Wren26ca65d2016-11-29 10:43:28 -05003563 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003564 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003565 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3566 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3567 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3568 NOTIFICATION_ID = 796;
3569 NOTIFICATION_TAG = 797;
3570 NOTIFICATION_SHADE_INDEX = 798;
3571 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003572
Anas Karbilaf7648f42016-12-11 00:55:02 +01003573 // OPEN: QS NFC tile shown
3574 // ACTION: QS NFC tile tapped
3575 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003576 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003577
Chris Wren26ca65d2016-11-29 10:43:28 -05003578 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003579 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003580 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3581 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3582 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3583 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3584 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3585 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3586
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003587 // ACTION: "Force stop" action on an app
3588 ACTION_APP_FORCE_STOP = 807;
3589
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003590 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3591 // CATEGORY: SETTINGS
3592 // OS: 8.0
3593 MANAGE_EXTERNAL_SOURCES = 808;
3594
Mahaver6cd47162017-01-23 09:59:33 +00003595 // ACTION: Logged when terms activity finishes.
3596 // TIME: Indicates time taken by terms activity to finish in MS.
3597 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3598
3599 // Indicates number of terms displayed on the terms screen.
3600 PROVISIONING_TERMS_COUNT = 810;
3601
3602 // Indicates number of terms read on the terms screen.
3603 PROVISIONING_TERMS_READ = 811;
3604
Winson Chung59fda9e2017-01-20 16:14:51 -08003605 // Logs that the user has edited the picture-in-picture settings.
3606 // CATEGORY: SETTINGS
3607 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3608
Winson Chungf4ac0632017-03-17 12:34:12 -07003609 // ACTION: Allow "Enable picture-in-picture" for an app
3610 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003611
Winson Chungf4ac0632017-03-17 12:34:12 -07003612 // ACTION: Deny "Enable picture-in-picture" for an app
3613 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003614
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003615 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3616 // CATEGORY: SETTINGS
3617 // OS: 8.0
3618 TTS_SLIDERS = 815;
3619
Jason Monk524fb402017-01-25 10:33:31 -05003620 // ACTION: Settings -> Display -> Theme
3621 ACTION_THEME = 816;
3622
chchaob8e253a2017-01-25 12:12:09 -08003623 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3624 // ACTION: Select to Speak configuration is chosen
3625 // SUBTYPE: 0 is off, 1 is on
3626 // CATEGORY: SETTINGS
3627 // OS: N
3628 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3629
Anton Philippov95a553e2017-01-27 00:08:24 +00003630 // OPEN: Settings > System > Backup
3631 // CATEGORY: SETTINGS
3632 // OS: O
3633 BACKUP_SETTINGS = 818;
3634
Winson Chung14fbe142016-12-19 16:18:24 -08003635 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003636 // VALUE: true if it was entered while hiding as a result of moving to
3637 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003638 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3639
3640 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3641 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3642 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3643
3644 // ACTION: The activity currently in picture-in-picture was minimized
3645 // VALUE: True if the PiP was minimized, false otherwise
3646 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3647
3648 // ACTION: Picture-in-picture was dismissed via the dismiss button
3649 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3650 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3651
3652 // ACTION: The visibility of the picture-in-picture meny
3653 // VALUE: Whether or not the menu is visible
3654 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3655
3656 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3657 // logged when the aspect ratio changes
3658 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3659
3660 // The current aspect ratio of the PiP, logged when it changes.
3661 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3662
Chris Wren27a52fa2017-02-01 14:21:43 -05003663 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3664 // CATEGORY: GLOBAL_SYSTEM_UI
3665 // OS: O
3666 FIELD_GESTURE_LENGTH = 826;
3667
3668 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3669 // CATEGORY: GLOBAL_SYSTEM_UI
3670 // OS: O
3671 FIELD_GESTURE_VELOCITY = 827;
3672
Christine Franks27fde392017-02-07 10:21:55 -08003673 // OPEN: Carrier demo mode password dialog
3674 CARRIER_DEMO_MODE_PASSWORD = 828;
3675
Fan Zhang70967f32017-02-13 16:02:24 -08003676 // ACTION: Create a Settings shortcut item.
3677 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3678
3679 // ACTION: A tile in Settings information architecture is clicked
3680 ACTION_SETTINGS_TILE_CLICK = 830;
3681
Julia Reynolds520df6e2017-02-13 09:05:10 -05003682 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3683 // updated
3684 // CATEGORY: NOTIFICATION
3685 // OS: O
3686 NOTIFICATION_SNOOZED = 831;
3687
3688 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3689 // OS: O
3690 NOTIFICATION_SNOOZED_CRITERIA = 832;
3691
Fan Zhang65899432017-02-14 13:36:53 -08003692 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003693 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003694 FIELD_CONTEXT = 833;
3695
Fan Zhangd95dcb42017-02-14 13:48:09 -08003696 // ACTION: Settings advanced button is expanded
3697 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3698
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003699 // ACTION: Logs the number of times the saved network evaluator was used to
3700 // recommend a wifi network
3701 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3702
3703 // ACTION: Logs the number of times the recommended network evaluator was
3704 // used to recommend a wifi network
3705 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3706
3707 // ACTION: Logs the number of times a recommended network was resulted in a
3708 // successful connection
3709 // VALUE: true if the connection was successful, false if the connection failed
3710 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3711
Daniel Nishic581bfc2017-02-08 10:18:19 -08003712 // OPEN: Settings > Storage > Games
3713 // CATEGORY: SETTINGS
3714 // OS: O
3715 APPLICATIONS_STORAGE_GAMES = 838;
3716
3717 // OPEN: Settings > Storage > Audio and Music
3718 // CATEGORY: SETTINGS
3719 // OS: O
3720 APPLICATIONS_STORAGE_MUSIC = 839;
3721
3722 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3723 // CATEGORY: SETTINGS
3724 // OS: O
3725 STORAGE_FREE_UP_SPACE_NOW = 840;
3726
3727 // ACTION: Settings > Storage > Files to open the File Manager
3728 // CATEGORY: SETTINGS
3729 // OS: O
3730 STORAGE_FILES = 841;
3731
Fan Zhangb1d49222017-02-15 17:12:58 -08003732 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003733 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003734
Fan Zhang7f2cace2017-02-17 12:05:48 -08003735 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3736 DEFAULT_ASSIST_PICKER = 843;
3737
3738 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3739 DEFAULT_VOICE_INPUT_PICKER = 844;
3740
Daniel Nishi4058a842017-02-21 17:11:35 -08003741 // OPEN: Settings > Storage > [Profile]
3742 SETTINGS_STORAGE_PROFILE = 845;
3743
Doris Lingedb84c32017-02-23 10:56:01 -08003744 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3745 // CATEGORY: SETTINGS
3746 // OS: O
3747 ENCRYPTION_AND_CREDENTIAL = 846;
3748
Fan Zhangb66e5422017-02-24 14:37:45 -08003749 // ACTION: Settings > About device > Build number
3750 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3751
3752 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3753 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3754
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003755 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3756 // CATEGORY: SETTINGS
3757 // OS: O
3758 WIFI_NETWORK_DETAILS = 849;
3759
jackqdyuleia2a14342017-02-28 16:20:48 -08003760 // ACTION: Settings > Battery > Menu > Usage Alerts
3761 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3762
3763 // ACTION: Settings > Battery > Menu > Optimization
3764 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3765
3766 // ACTION: Settings > Battery > Menu > Apps Toggle
3767 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3768
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003769 // ACTION: Settings > Any preference is changed
3770 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3771
3772 // FIELD: The name of preference when it is changed in Settings
3773 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3774
3775 // FIELD: The new value of preference when it is changed in Settings
3776 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3777
Julia Reynoldsd373d782017-03-03 13:32:57 -05003778 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3779 // channel updated
3780 // PACKAGE: the package the channel belongs too
3781 // CATEGORY: NOTIFICATION
3782 // OS: O
3783 ACTION_NOTIFICATION_CHANNEL = 856;
3784
3785 // Tagged data for notification channel. String.
3786 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3787
3788 // Tagged data for notification channel. int.
3789 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3790
3791 // OPEN: Notification channel group created.
3792 // PACKAGE: the package the group belongs to
3793 // CATEGORY: NOTIFICATION
3794 // OS: O
3795 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3796
3797 // Tagged data for notification channel group. String.
3798 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3799
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003800 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3801 // CATEGORY: SETTINGS
3802 // OS: O
3803 SETTINGS_NETWORK_SCORER = 861;
3804
Fan Zhang99861312017-03-07 14:32:38 -08003805 // OPEN: Settings > About device > Model > Hardware info dialog
3806 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3807
mariagpuyol0f5512e2017-03-01 12:09:56 -08003808 // ACTION: Checks whether a contact's phone still exists
3809 // Value 0: It doesn't exist anymore
3810 // Value 1: It still exists
3811 // Value 2: A SecurityException was thrown
3812 // CATEGORY: SETTINGS
3813 // OS: N
3814 ACTION_PHONE_EXISTS = 863;
3815
3816 // ACTION: Retrieves a contact from CP2
3817 // Value 0: Contact retrieved without issues
3818 // Value 1: An IllegalArgumentException was thrown
3819 // CATEGORY: SETTINGS
3820 // OS: N
3821 ACTION_GET_CONTACT = 864;
3822
Chris Wren4d6b54d2017-04-27 16:56:54 -04003823 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003824 // internal platform metrics use.
3825 RESERVED_FOR_LOGBUILDER_PID = 865;
3826
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003827 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3828 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3829
3830 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3831 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3832
3833 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3834 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3835
3836 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3837 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3838
3839 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3840 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3841
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003842 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003843 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003844
Fan Zhang082d21c2017-03-13 15:25:54 -07003845 // ACTION: Settings > App detail > Uninstall
3846 ACTION_SETTINGS_UNINSTALL_APP = 872;
3847
3848 // ACTION: Settings > App detail > Uninstall Device admin app
3849 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3850
3851 // ACTION: Settings > App detail > Disable app
3852 ACTION_SETTINGS_DISABLE_APP = 874;
3853
3854 // ACTION: Settings > App detail > Enable app
3855 ACTION_SETTINGS_ENABLE_APP = 875;
3856
3857 // ACTION: Settings > App detail > Clear data
3858 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3859
3860 // ACTION: Settings > App detail > Clear cache
3861 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3862
3863 // ACTION: Clicking on any search result in Settings.
3864 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3865
3866 // FIELD: Settings inline search result name
3867 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3868
3869 // FIELD: Settings inline search result value
3870 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3871
Fan Zhang53797932017-03-13 17:46:24 -07003872 // ACTION: Settings > Search > Click saved queries
3873 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3874
Doris Lingbf8d9de2017-03-15 11:52:50 -07003875 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3876 // CATEGORY: SETTINGS
3877 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3878
Chris Wren3824c392017-11-27 12:54:14 -05003879 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3880 // PACKAGE: The package name of the app requesting the permission
3881 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003882 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3883
Chris Wren3824c392017-11-27 12:54:14 -05003884 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3885 // PACKAGE: The package name of the app that was granted the permission
3886 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003887 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3888
Chris Wren3824c392017-11-27 12:54:14 -05003889 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3890 // PACKAGE: The package name of the app requesting the permission
3891 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003892 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3893
Chris Wren3824c392017-11-27 12:54:14 -05003894 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3895 // PACKAGE: The package name of the app the permission was revoked for
3896 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003897 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3898
Chris Wren3824c392017-11-27 12:54:14 -05003899 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3900 // PACKAGE: The package name of the app requesting the permission
3901 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003902 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3903
Chris Wren3824c392017-11-27 12:54:14 -05003904 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3905 // PACKAGE: The package name of the app that was granted the permission
3906 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003907 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3908
Chris Wren3824c392017-11-27 12:54:14 -05003909 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3910 // PACKAGE: The package name of the app requesting the permission
3911 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003912 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3913
Chris Wren3824c392017-11-27 12:54:14 -05003914 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3915 // PACKAGE: The package name of the app the permission was revoked for
3916 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003917 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3918
Chris Wren3824c392017-11-27 12:54:14 -05003919 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3920 // PACKAGE: The package name of the app requesting the permission
3921 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003922 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3923
Chris Wren3824c392017-11-27 12:54:14 -05003924 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3925 // PACKAGE: The package name of the app that was granted the permission
3926 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003927 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3928
Chris Wren3824c392017-11-27 12:54:14 -05003929 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3930 // PACKAGE: The package name of the app requesting the permission
3931 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003932 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3933
Chris Wren3824c392017-11-27 12:54:14 -05003934 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3935 // PACKAGE: The package name of the app the permission was revoked for
3936 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003937 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3938
Chris Wren3824c392017-11-27 12:54:14 -05003939 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3940 // PACKAGE: The package name of the app requesting the permission
3941 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003942 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3943
Chris Wren3824c392017-11-27 12:54:14 -05003944 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3945 // PACKAGE: The package name of the app that was granted the permission
3946 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003947 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3948
Chris Wren3824c392017-11-27 12:54:14 -05003949 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3950 // PACKAGE: The package name of the app requesting the permission
3951 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003952 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3953
Chris Wren3824c392017-11-27 12:54:14 -05003954 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3955 // PACKAGE: The package name of the app the permission was revoked for
3956 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003957 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3958
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003959 // ACTION: Phase 1 of instant application resolution occurred
3960 // OS: O
3961 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3962
3963 // ACTION: Phase 2 of instant application resolution occurred
3964 // OS: O
3965 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3966
3967 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3968 // OS: O
3969 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3970
3971 // FIELD: The status of an ephemeral resolution phase
3972 // Value 0: success
3973 // Value 1: no full hash match
3974 // OS: O
3975 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3976
3977 // FIELD - A token to identify all events that are part of the same instant application launch
3978 // OS: O
3979 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3980
3981 // FIELD - The name of the package responsible for launching the activity
3982 // OS: O
3983 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3984
3985 // FIELD - Whether or not the launched activity is part of an instant application
3986 // OS: O
3987 APP_TRANSITION_IS_EPHEMERAL = 905;
3988
Felipe Lemef61ba5c2018-05-21 11:18:46 -07003989 // An autofill session was started.
3990 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003991 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003992 // NOTE: starting on OS MR1, it also added the following field:
3993 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3994 // NOTE: starting on OS P, it also added the following field:
Felipe Leme212b1612018-05-22 14:56:15 -07003995 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07003996 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
3997 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
3998 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003999 AUTOFILL_SESSION_STARTED = 906;
4000
4001 // An autofill request was processed by a service
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004002 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4003 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004004 // Package: Package of app that is autofilled
4005 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004006 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004007 // the service returned a null response
4008 // NOTE: starting on OS P, it also added the following fields:
4009 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Leme212b1612018-05-22 14:56:15 -07004010 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004011 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4012 // with 1.
4013 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4014 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4015 // was focused.
4016 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004017 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004018 // number of entries field ids in the request.
Felipe Lemece3ae872018-05-24 10:41:48 -07004019 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004020 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4021 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4022 // - AUTOFILL_UI_LATENCY
4023 // - AUTOFILL_AUTHENTICATED;
4024 // - AUTOFILL_DATASET_AUTHENTICATED
4025 // - AUTOFILL_INVALID_AUTHENTICATION
4026 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004027 AUTOFILL_REQUEST = 907;
4028
4029 // Tag of a field for a package of an autofill service
4030 FIELD_AUTOFILL_SERVICE = 908;
4031
4032 // Tag of a field for the number of datasets
4033 FIELD_AUTOFILL_NUM_DATASETS = 909;
4034
4035 // An autofill dataset selection UI was shown
4036 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4037 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4038 // Type TYPE_ACTION: dataset was selected
4039 // Type TYPE_DETAIL: authentication was selected
4040 // Package: Package of app that was autofilled
4041 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4042 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Leme212b1612018-05-22 14:56:15 -07004043 // NOTE: starting on OS P, it also added the following fields:
4044 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004045 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004046 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004047 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004048 AUTOFILL_FILL_UI = 910;
4049
4050 // Tag of a field for the length of the filter text
4051 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4052
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004053 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004054 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004055 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004056 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004057 AUTOFILL_AUTHENTICATED = 912;
4058
4059 // An activity was autofilled and all values could be applied
4060 // Package: Package of app that is autofilled
4061 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4062 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Leme212b1612018-05-22 14:56:15 -07004063 // NOTE: starting on OS P, it also added the following fields:
4064 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004065 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004066 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004067 AUTOFILL_DATASET_APPLIED = 913;
4068
4069 // Tag of a field for the number values to be filled in
4070 FIELD_AUTOFILL_NUM_VALUES = 914;
4071
4072 // Tag of a field for the number of views that were filled
4073 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4074
4075 // An autofill save UI was shown
4076 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4077 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4078 // Type TYPE_ACTION: data was saved
4079 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004080 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Leme212b1612018-05-22 14:56:15 -07004081 // NOTE: starting on OS P, it also added the following fields:
4082 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004083 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004084 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004085 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004086 AUTOFILL_SAVE_UI = 916;
4087
4088 // Tag of a field for the number of saveable ids
4089 FIELD_AUTOFILL_NUM_IDS = 917;
4090
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004091 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004092 // Type TYPE_SUCCESS: The request succeeded right away
4093 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004094 // Type TYPE_FAILURE: The request failed
4095 // Package: Package of app that was autofilled
4096 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme212b1612018-05-22 14:56:15 -07004097 // NOTE: starting on OS P, it also added the following fields:
4098 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004099 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004100 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004101 AUTOFILL_DATA_SAVE_REQUEST = 918;
4102
4103 // An auto-fill session was finished
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004104 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004105 // Package: Package of app that was autofilled
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004106 // NOTE: starting on OS P, it also added the following fields:
4107 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004108 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004109 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4110 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4111 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004112 AUTOFILL_SESSION_FINISHED = 919;
4113
Chris Wren148805582017-03-17 17:18:11 -04004114 // meta-event: a reader has checkpointed the log here.
4115 METRICS_CHECKPOINT = 920;
4116
Fan Zhanged1845f2017-03-23 14:46:59 -07004117 // OPEN: Settings -> Display -> When in VR Mode
4118 VR_DISPLAY_PREFERENCE = 921;
4119
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004120 // OPEN: Settings > Accessibility > Magnification
4121 // CATEGORY: SETTINGS
4122 // OS: O
4123 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004124
4125 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4126 // app.
4127 // VALUE: The package name of the app
4128 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4129
Fan Zhang1a34e752017-03-24 13:44:51 -07004130 // OPEN: Settings -> System -> Reset options
4131 RESET_DASHBOARD = 924;
4132
Jason Monk8c09ac72017-03-16 11:53:40 -04004133 // ACTION: QS -> Tile clicked
4134 ACTION_QS_CLICK = 925;
4135
4136 // ACTION: QS -> Secondary click
4137 ACTION_QS_SECONDARY_CLICK = 926;
4138
4139 // FIELD: Position info in QS clicks
4140 FIELD_QS_POSITION = 927;
4141
4142 // FIELD: The value of a QS tile when clicked (if applicable)
4143 FIELD_QS_VALUE = 928;
4144
4145 // ACTION: QS -> Detail panel -> more settings
4146 ACTION_QS_MORE_SETTINGS = 929;
4147
4148 // ACTION: QS -> Click date
4149 ACTION_QS_DATE = 930;
4150
Jason Monk1b775652017-03-31 15:42:27 -04004151 // ACTION: Event on nav button
4152 ACTION_NAV_BUTTON_EVENT = 931;
4153
4154 // FIELD: Flags for a nav button event
4155 FIELD_FLAGS = 932;
4156
4157 // FIELD: Action for a nav button event
4158 FIELD_NAV_ACTION = 933;
4159
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004160 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4161 // CATEGORY: SETTINGS
4162 // OS: O
4163 FINGERPRINT_REMOVE_SIDECAR = 934;
4164
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004165 // OPEN: Settings > Storage > Movies & TV
4166 // CATEGORY: SETTINGS
4167 // OS: O
4168 APPLICATIONS_STORAGE_MOVIES = 935;
4169
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004170 // OPEN: Text selection "assist" menu item shown.
4171 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4172 // CATEGORY: TEXT_CONTROLS
4173 // OS: O
4174 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4175
4176 // ACTION: Text selection "assist" menu item clicked.
4177 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4178 // CATEGORY: TEXT_CONTROLS
4179 // OS: O
4180 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4181
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004182 // OPEN: Settings > Security > Managed Device Info > Apps installed
4183 // CATEGORY: SETTINGS
4184 // OS: O
4185 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4186
4187 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4188 // CATEGORY: SETTINGS
4189 // OS: O
4190 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4191
4192 // OPEN: Settings > Security > Managed Device Info > Default apps
4193 // CATEGORY: SETTINGS
4194 // OS: O
4195 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4196
Julia Reynolds80b18072017-04-23 12:27:07 -04004197 // OPEN: Settings > Notifications > An app > A channel > Importance
4198 // CATEGORY: SETTINGS
4199 // OS: O
4200 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4201
4202 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4203 // CATEGORY: SETTINGS
4204 // OS: O
4205 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4206
Chris Wren4d6b54d2017-04-27 16:56:54 -04004207 // This value should never appear in log outputs - it is reserved for
4208 // internal platform metrics use.
4209 RESERVED_FOR_LOGBUILDER_UID = 943;
4210
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004211 // OPEN: Running background apps notification > List of background apps
4212 // CATEGORY: GLOBAL_SYSTEM_UI
4213 // OS: O
4214 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4215
Jorim Jaggi515dd682017-05-05 15:05:07 +02004216 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4217 // client.
4218 // OS: O
4219 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4220
Chris Wrenb3921792017-06-01 13:34:46 -04004221 // FIELD - The group ID of a notification.
4222 // Type: string
4223 // OS: O
4224 FIELD_NOTIFICATION_GROUP_ID = 946;
4225
4226 // FIELD - If the notification is a group summary: 1.
4227 // Type: int encoded boolean
4228 // OS: O
4229 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4230
Felipe Leme637e05e2017-12-06 12:09:37 -08004231 // An app attempted to forge a different component name in the AssisStructure that would be
4232 // passed to the autofill service.
4233 // OS: O (security patch)
4234 // Package: Real package of the app being autofilled
4235 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4236 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004237 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004238 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004239 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4240
4241 // FIELD - The component that an app tried tro forged.
4242 // Type: string
4243 // OS: O (security patch)
4244 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4245
Chris Wren26ca65d2016-11-29 10:43:28 -05004246 // ---- End O Constants, all O constants go above this line ----
4247
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004248 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4249 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4250
jackqdyulei92e492e2017-04-28 13:04:42 -07004251 // OPEN: Settings > Battery > High Usage > Abnormal app page
4252 // CATEGORY: SETTINGS
4253 FUELGAUGE_ANOMALY_DETAIL = 987;
4254
4255 // OPEN: Settings > Battery > High Usage
4256 DIALOG_HANDLE_ANOMALY = 988;
4257
Jonathan Solnita4138162017-05-10 21:06:04 -07004258 // ACTION: Camera lift gesture
4259 // CATEGORY: GLOBAL_SYSTEM_UI
4260 // OS: O
4261 ACTION_CAMERA_LIFT_TRIGGER = 989;
4262
Maurice Lam76ae09c2017-05-05 12:03:49 -07004263 // OPEN: Choose screen lock dialog in Settings
4264 // CATEGORY: SETTINGS
4265 // OS: O DR
4266 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4267
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004268 // OPEN: Assist Gesture training intro in Settings
4269 // CATEGORY: SETTINGS
4270 // OS: O DR
4271 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4272
4273 // OPEN: Assist Gesture training enrolling in Settings
4274 // CATEGORY: SETTINGS
4275 // OS: O DR
4276 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4277
4278 // OPEN: Assist Gesture training finished in Settings
4279 // CATEGORY: SETTINGS
4280 // OS: O DR
4281 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4282
Fan Zhangc666a202017-05-18 17:50:20 -07004283 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4284 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4285
4286 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4287 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4288
Philip Quinn0f9566d2017-05-23 10:32:08 -07004289 // OPEN: Settings > System > Languages & input > Assist gesture
4290 // CATEGORY: SETTINGS
4291 // OS: O DR
4292 SETTINGS_ASSIST_GESTURE = 996;
4293
4294 // ACTION: Assist gesture released without triggering
4295 // CATEGORY: GLOBAL_SYSTEM_UI
4296 // OS: O DR
4297 ASSIST_GESTURE_RELEASED = 997;
4298
4299 // ACTION: Assist gesture primed
4300 // CATEGORY: GLOBAL_SYSTEM_UI
4301 // OS: O DR
4302 ASSIST_GESTURE_PRIMED = 998;
4303
4304 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004305 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004306 // CATEGORY: GLOBAL_SYSTEM_UI
4307 // OS: O DR
4308 ASSIST_GESTURE_TRIGGERED = 999;
4309
Fan Zhang238162b2017-05-25 14:01:41 -07004310 // ACTION: Update default app from Settings
4311 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4312
4313 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004314 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004315
4316 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004317 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004318
Adrian Roos1c81d772017-05-25 18:00:21 -07004319 // OPEN: Settings > Display > Ambient Display
4320 // CATEGORY: SETTINGS
4321 // OS: O DR
4322 AMBIENT_DISPLAY_SETTINGS = 1003;
4323
Hugo Benichi11da42b2017-05-31 11:11:37 +09004324 // ACTION: CaptivePortalLoginActivity starts
4325 // CATEGORY: GLOBAL_SYSTEM_UI
4326 // OS: O DR
4327 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4328
4329 // ACTION: CaptivePortalLoginActivity auto-closes
4330 // CATEGORY: GLOBAL_SYSTEM_UI
4331 // OS: O DR
4332 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4333
4334 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4335 // CATEGORY: GLOBAL_SYSTEM_UI
4336 // OS: O DR
4337 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4338
4339 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4340 // CATEGORY: GLOBAL_SYSTEM_UI
4341 // OS: O DR
4342 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4343
4344 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4345 // CATEGORY: SETTINGS
4346 // OS: O DR
4347 ACTION_WIFI_SIGNIN = 1008;
4348
Antony Sargentf3cc3172017-05-04 14:58:06 -07004349 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4350 // CATEGORY: SETTINGS
4351 // OS: O DR
4352 BLUETOOTH_DEVICE_DETAILS = 1009;
4353
fanzhang172255759d2017-06-05 21:43:47 -07004354 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4355 CONFIGURE_KEYGUARD_DIALOG = 1010;
4356
Fan Zhange33c70d2017-06-06 12:37:13 -07004357 // Open: Settings > Search > No Result View
4358 SETTINGS_SEARCH_NO_RESULT = 1011;
4359
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004360 // OPEN: Assist Gesture before training
4361 // CATEGORY: SETTINGS
4362 // OS: O DR
4363 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4364
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004365 // CaptivePortalLoginActivity displays SSL error page
4366 // CATEGORY: GLOBAL_SYSTEM_UI
4367 // OS: O DR
4368 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4369
Fan Zhang1a0fc992017-06-13 13:45:21 -07004370 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4371 WIFI_TETHER_SETTINGS = 1014;
4372
Antony Sargentc3b5da62017-06-16 11:50:13 -07004373 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4374 // -> Edit name button.
4375 // CATEGORY: SETTINGS
4376 // OS: O DR
4377 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4378
Fan Zhang543587d2017-06-19 12:32:14 -07004379 // ACTION: Settings > Notification Settings > Open application notification
4380 // CATEGORY: SETTINGS
4381 // OS: O DR
4382 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4383
4384 // ACTION: Settings > App Info > Open app settings
4385 // CATEGORY: SETTINGS
4386 // OS: O DR
4387 ACTION_OPEN_APP_SETTING = 1017;
4388
jackqdyulei2f1a3592017-06-19 13:11:05 -07004389 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4390 // CATEGORY: SETTINGS
4391 // OS: O DR
4392 BLUETOOTH_PAIRING = 1018;
4393
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004394 // ACTION: Collect PSD Signals
4395 // CATEGORY: SETTINGS
4396 // OS: O DR
4397 ACTION_PSD_LOADER = 1019;
4398
jackqdyulei602bcc92017-06-21 15:17:53 -07004399 // ACTION: Background check action on an app
4400 // CATEGORY: SETTINGS
4401 // OS: O DR
4402 ACTION_APP_BACKGROUND_CHECK = 1020;
4403
4404 // ACTION: Location check action on an app
4405 // CATEGORY: SETTINGS
4406 // OS: O DR
4407 ACTION_APP_LOCATION_CHECK = 1021;
4408
Charlie Wang15a36ed2017-06-14 14:46:39 -07004409 // Device headset status
4410 // CATEGORY: OTHER
4411 // SUBTYPE: 1 is DON, 2 is DOFF
4412 // OS: O DR
4413 ACTION_HEADSET_STATUS = 1022;
4414
4415 // Device Headset Plug status
4416 // CATEGORY: OTHER
4417 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4418 // OS: O DR
4419 ACTION_HEADSET_PLUG = 1023;
4420
4421 // Device Headset battery level on Plug
4422 // CATEGORY: OTHER
4423 // FIELD - The battery percentage when the user decided to plug in
4424 // Type: integer
4425 // OS: O DR
4426 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4427
Charlie Wang566ec702017-06-26 15:30:03 -07004428 // Device Headset battery level on Plug
4429 // CATEGORY: OTHER
4430 // FIELD - The battery percentage when the user decided to plug in
4431 // Type: integer
4432 // OS: O DR
4433 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4434
Charlie Wang15a36ed2017-06-14 14:46:39 -07004435 // Device Headset Pose status
4436 // CATEGORY: OTHER
4437 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4438 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004439 ACTION_HEADSET_POSE_STATUS = 1026;
4440
4441 // Device Headset Usage session time
4442 // CATEGORY: OTHER
4443 // FIELD - The time the headset was used in a session
4444 // OS: O DR
4445 FIELD_SESSION_TIME_MS = 1027;
4446
4447 // Device Headset Idle time
4448 // CATEGORY: OTHER
4449 // FIELD - The time in between each session
4450 // OS: O DR
4451 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4452
4453 // Device Headset charge session time
4454 // CATEGORY: OTHER
4455 // FIELD - The time taken for each charge
4456 // OS: O DR
4457 FIELD_TIME_OF_CHARGE_MS = 1029;
4458
4459 // Device Headset time between charge
4460 // CATEGORY: OTHER
4461 // FIELD - The time in between each charge
4462 // OS: O DR
4463 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004464
Antony Sargentca701a22017-07-05 17:02:00 -07004465 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4466 // -> Forget button.
4467 // CATEGORY: SETTINGS
4468 // OS: O DR
4469 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4470
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004471 // An event from the camera service
4472 // CATEGORY: OTHER
4473 // SUBTYPE: CameraEvent
4474 // OS: O DR
4475 ACTION_CAMERA_EVENT = 1032;
4476
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004477 // OPEN: Settings > Trampoline Intent > Settings page
4478 // CATEGORY: SETTINGS
4479 // OS: O DR
4480 TRAMPOLINE_SETTINGS_EVENT = 1033;
4481
Chris Wren9a4f2662017-06-29 10:10:02 -04004482 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4483
Malcolm Chen21062542017-06-20 11:36:01 -07004484 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4485 // CATEGORY: SETTINGS
4486 // OS: O MR
4487 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4488
4489 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4490 // CATEGORY: SETTINGS
4491 // OS: O MR
4492 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4493
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004494 // FIELD - State of asynchronous ranking when Settings search result is clicked
4495 // CATEGORY: SETTINGS
4496 // OS: O MR
4497 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4498
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004499 // ACTION: Settings > Connected devices > SMS Mirroring
4500 // CATEGORY: SETTINGS
4501 // OS: O MR
4502 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4503
Kang Li2c571892017-07-05 14:47:32 -07004504 // ACTION: Chooser picked a ranked target.
4505 // CATEGORY: GLOBAL_SYSTEM_UI
4506 // OS: O MR
4507 ACTION_TARGET_SELECTED = 1085;
4508
4509 // FIELD - is category used in Chooser: 1.
4510 // Type: int encoded boolean
4511 // CATEGORY: GLOBAL_SYSTEM_UI
4512 // OS: O MR
4513 FIELD_IS_CATEGORY_USED = 1086;
4514
4515 // FIELD - ranked position of selected target for Chooser.
4516 // CATEGORY: GLOBAL_SYSTEM_UI
4517 // OS: O MR
4518 FIELD_RANKED_POSITION = 1087;
4519
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004520 // OPEN: Settings > Data plan usage
4521 // CATEGORY: SETTINGS
4522 // OS: O MR
4523 DATA_PLAN_USAGE_SUMMARY = 1088;
4524
Doris Lingce007eb2017-08-09 13:59:46 -07004525 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4526 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4527
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004528 // ACTION: Logged when the app has notified that it has fully drawn. See
4529 // Activity.reportFullyDrawn().
4530 APP_TRANSITION_REPORTED_DRAWN = 1090;
4531
4532 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4533 // the app transition.
4534 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4535
Daniel Nishia86115f2017-08-23 10:27:08 -07004536 // OPEN: Settings > Storage > Photos & Videos
4537 // CATEGORY: SETTINGS
4538 // OS: O MR
4539 APPLICATIONS_STORAGE_PHOTOS = 1092;
4540
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004541 // ACTION: Logged when the status bar icons change.
4542 // OS: O MR
4543 STATUS_BAR_ICONS_CHANGED = 1093;
4544
4545 // FIELD: Bitfield indicating which icons are shown.
4546 // OS: O MR
4547 FIELD_STATUS_ICONS = 1094;
4548
4549 // FIELD: Number of status icons currently shown.
4550 // OS: O MR
4551 FIELD_NUM_STATUS_ICONS = 1095;
4552
Jack He4b605792017-09-01 11:48:30 -07004553 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4554 // CATEGORY: SETTINGS
4555 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004556 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004557
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004558 // FIELD - Whether smart suggestion ranking was enabled or not
4559 // Type: int encoded boolean
4560 // CATEGORY: SETTINGS
4561 // OS: O MR
4562 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4563
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004564 // ACTION: The device boots
4565 ACTION_BOOT = 1098;
4566
4567 // FIELD: A string value representing some state of the platform, e.g., boot reason
4568 FIELD_PLATFORM_REASON = 1099;
4569
Jan Althaus786a39d2017-09-15 10:41:16 +02004570 // CATEGORY: The category for all actions relating to selection session logging.
4571 // OS: O MR
4572 TEXT_SELECTION_SESSION = 1100;
4573
4574 // ACTION: A selection session started (i.e. the selection handles appeared)
4575 // CATEGORY: TEXT_SELECTION_SESSION
4576 // OS: O MR
4577 ACTION_TEXT_SELECTION_START = 1101;
4578
4579 // ACTION: The user modified the selection (e.g. by dragging the handles)
4580 // CATEGORY: TEXT_SELECTION_SESSION
4581 // OS: O MR
4582 ACTION_TEXT_SELECTION_MODIFY = 1102;
4583
4584 // ACTION: The user modified the selection by pressing the "select all" button.
4585 // CATEGORY: TEXT_SELECTION_SESSION
4586 // OS: O MR
4587 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4588
4589 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4590 // CATEGORY: TEXT_SELECTION_SESSION
4591 // OS: O MR
4592 ACTION_TEXT_SELECTION_RESET = 1104;
4593
4594 // ACTION: Smart selection made a single word prediction
4595 // CATEGORY: TEXT_SELECTION_SESSION
4596 // OS: O MR
4597 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4598
4599 // ACTION: Smart selection made a multi word prediction
4600 // CATEGORY: TEXT_SELECTION_SESSION
4601 // OS: O MR
4602 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4603
4604 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4605 // CATEGORY: TEXT_SELECTION_SESSION
4606 // OS: O MR
4607 ACTION_TEXT_SELECTION_AUTO = 1107;
4608
4609 // ACTION: A selection session ended with the user typing over the text
4610 // CATEGORY: TEXT_SELECTION_SESSION
4611 // OS: O MR
4612 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4613
4614 // ACTION: A selection session ended with the user copying the text
4615 // CATEGORY: TEXT_SELECTION_SESSION
4616 // OS: O MR
4617 ACTION_TEXT_SELECTION_COPY = 1109;
4618
4619 // ACTION: A selection session ended with the user pasting over the text
4620 // CATEGORY: TEXT_SELECTION_SESSION
4621 // OS: O MR
4622 ACTION_TEXT_SELECTION_PASTE = 1110;
4623
4624 // ACTION: A selection session ended with the user cutting the text
4625 // CATEGORY: TEXT_SELECTION_SESSION
4626 // OS: O MR
4627 ACTION_TEXT_SELECTION_CUT = 1111;
4628
4629 // ACTION: A selection session ended with the user pressing the share button
4630 // CATEGORY: TEXT_SELECTION_SESSION
4631 // OS: O MR
4632 ACTION_TEXT_SELECTION_SHARE = 1112;
4633
4634 // ACTION: A selection session ended with the user pressing the smart share button
4635 // CATEGORY: TEXT_SELECTION_SESSION
4636 // OS: O MR
4637 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4638
4639 // ACTION: A selection session ended with the user dragging the text
4640 // CATEGORY: TEXT_SELECTION_SESSION
4641 // OS: O MR
4642 ACTION_TEXT_SELECTION_DRAG = 1114;
4643
4644 // ACTION: A selection session ended with the user abandoning the selection
4645 // CATEGORY: TEXT_SELECTION_SESSION
4646 // OS: O MR
4647 ACTION_TEXT_SELECTION_ABANDON = 1115;
4648
4649 // ACTION: A selection session ended with the user picking an unhandled action bar item
4650 // CATEGORY: TEXT_SELECTION_SESSION
4651 // OS: O MR
4652 ACTION_TEXT_SELECTION_OTHER = 1116;
4653
4654 // FIELD: Time in milliseconds from the start of the session to this event
4655 // CATEGORY: TEXT_SELECTION_SESSION
4656 // OS: O MR
4657 FIELD_SELECTION_SINCE_START = 1117;
4658
4659 // FIELD: time in milliseconds between the last event in the session and this one
4660 // CATEGORY: TEXT_SELECTION_SESSION
4661 // OS: O MR
4662 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4663
4664 // FIELD: a random uid for a selection session (lasting from select start to end)
4665 // CATEGORY: TEXT_SELECTION_SESSION
4666 // OS: O MR
4667 FIELD_SELECTION_SESSION_ID = 1119;
4668
4669 // FIELD: the sequence number of the event in the session
4670 // CATEGORY: TEXT_SELECTION_SESSION
4671 // OS: O MR
4672 FIELD_SELECTION_SESSION_INDEX = 1120;
4673
4674 // FIELD: a concatenation of the widget type and ML model version.
4675 // CATEGORY: TEXT_SELECTION_SESSION
4676 // OS: O MR
4677 FIELD_SELECTION_VERSION_TAG = 1121;
4678
4679 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4680 // packed 16bit integers. (start in MSBs, end in LSBs)
4681 // CATEGORY: TEXT_SELECTION_SESSION
4682 // OS: O MR
4683 FIELD_SELECTION_RANGE = 1122;
4684
4685 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4686 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4687 // CATEGORY: TEXT_SELECTION_SESSION
4688 // OS: O MR
4689 FIELD_SELECTION_SMART_RANGE = 1123;
4690
Felipe Lemeb22d6352017-09-08 20:03:53 -07004691 // The value of an autofillable and savable view was reset
4692 // Package: Package of app that was autofilled
4693 // OS: O MR
4694 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4695 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Leme212b1612018-05-22 14:56:15 -07004696 // NOTE: starting on OS P, it also added the following fields:
4697 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004698 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004699 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004700 AUTOFILL_VALUE_RESET = 1124;
4701
4702 // Tag of AUTOFILL_VALUE_RESET
4703 // OS: O MR
4704 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4705
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004706 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004707 // Package: Package of app that was autofilled
4708 // OS: O MR
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004709 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004710 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4711
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004712 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004713 // Package: Package of app that was autofilled
4714 // OS: O MR
4715 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004716 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004717 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4718
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004719 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004720 // Package: Package of app that was autofilled
4721 // OS: O MR
4722 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004723 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004724 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4725
Felipe Leme2c888422017-10-26 12:46:35 -07004726 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004727 // Package: Package of app that is autofilled
4728 // OS: O MR
4729 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4730 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004731 // NOTE: starting on OS P, it also added the following fields:
4732 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004733 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004734 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004735 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4736
4737 // FIELD - Type of save object passed by the service when the Save UI is shown
4738 // OS: O MR
4739 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4740
Felipe Leme2c888422017-10-26 12:46:35 -07004741 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004742 // Package: Package of app that is autofilled
4743 // OS: O MR
4744 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4745 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004746 // NOTE: starting on OS P, it also added the following fields:
4747 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004748 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004749 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004750 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4751
Felipe Leme2c888422017-10-26 12:46:35 -07004752 // User tapped a link in the custom description of the autofill save UI provided by an autofill service
Felipe Lemeb22d6352017-09-08 20:03:53 -07004753 // Package: Package of app that is autofilled
4754 // OS: O MR
4755 // Type TYPE_UNKNOWN: The link was not properly set by the service
4756 // Type TYPE_OPEN: The link launched an activity
4757 // Type TYPE_FAILURE: The link could not launc an activity
4758 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4759 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004760 // NOTE: starting on OS P, it also added the following fields:
4761 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004762 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004763 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004764 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4765
4766 // Result of the validation on save when an autofill service provided a validator
4767 // Package: Package of app that is autofilled
4768 // OS: O MR
4769 // Type TYPE_FAILURE: The validation could not be performed due to an error
4770 // Type TYPE_SUCCESS: The validation passed
4771 // Type TYPE_DISMISS: The validation failed
4772 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4773 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004774 // NOTE: starting on OS P, it also added the following fields:
4775 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004776 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004777 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004778 AUTOFILL_SAVE_VALIDATION = 1133;
4779
Felipe Leme2c888422017-10-26 12:46:35 -07004780 // Result of an operation in the autofill save UI after the user tapped a link in the custom description
Felipe Lemeb22d6352017-09-08 20:03:53 -07004781 // provided by the autofill service
4782 // Package: Package of app that is autofilled
4783 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004784 // Type TYPE_OPEN: The autofill save UI was restored
4785 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004786 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Leme212b1612018-05-22 14:56:15 -07004787 // NOTE: starting on OS P, it also added the following fields:
4788 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004789 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004790 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004791 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4792
Felipe Leme9d414492017-09-20 13:55:28 -07004793 // Autofill service called API that disables itself
4794 // Package: Package of the autofill service
4795 // OS: O MR
4796 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4797
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004798 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004799 // Reports how long it took to show the autofill UI after a field was focused
4800 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004801 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4802 // Package: Package of the autofill service
4803 // OS: O MR
4804 AUTOFILL_UI_LATENCY = 1136;
4805
Chris Wren21a2e722017-10-02 17:44:53 -04004806 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4807 // OS: O MR
4808 NOTIFICATION_SNOOZE_CLICKED = 1137;
4809
4810 // Action: user selected a notification snooze duration from the drop down
4811 // OS: O MR
4812 NOTIFICATION_SELECT_SNOOZE = 1138;
4813
4814 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4815 // OS: O MR
4816 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4817
4818 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4819 // OS: O MR
4820 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4821
4822 // Action: user tapped undo on the notification snooze leave-behind
4823 // OS: O MR
4824 NOTIFICATION_UNDO_SNOOZE = 1141;
4825
4826 // Action: user togged the visibility of the notification snooze options drop down
4827 // OS: O MR
4828 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4829
Romain Guy62e8c172017-10-24 21:37:34 +01004830 // OPEN: Settings > Display > Colors
4831 // CATEGORY: SETTINGS
4832 // OS: O MR
4833 COLOR_MODE_SETTINGS = 1143;
4834
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004835 // Enclosing category for group of APP_TRANSITION_FOO events,
4836 // logged when we cancel an app transition.
4837 APP_TRANSITION_CANCELLED = 1144;
4838
Felipe Lemeb659adb2018-01-18 15:21:36 -08004839 // Tag of a field representing a duration on autofill-related metrics.
4840 FIELD_AUTOFILL_DURATION = 1145;
4841
Doris Lingce007eb2017-08-09 13:59:46 -07004842 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4843
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004844 // OPEN: Settings > Network & Internet > Mobile network
4845 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004846 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004847
4848 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4849 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004850 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004851
4852 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4853 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004854 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004855
4856 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4857 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004858 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004859
4860 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4861 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004862 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004863
4864 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4865 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004866 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004867
4868 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4869 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004870 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004871
4872 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4873 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004874 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004875
4876 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4877 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004878 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004879
4880 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4881 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004882 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004883
4884 // ACTION: Settings > Network & Internet > Mobile network > Network
4885 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004886 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004887
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004888 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004889 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004890
4891 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4892 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004893 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004894
4895 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4896 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004897 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004898
4899 // OPEN: Settings > Network & Internet > Mobile network > System select
4900 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004901 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004902
4903 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4904 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004905 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004906
4907 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4908 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004909 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004910
Fan Zhanga2f2c912017-08-15 17:20:37 -07004911 // OPEN: Settings > Developer Options > Experiment dashboard
4912 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004913 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004914
Julia Reynolds005c8b92017-08-24 10:35:53 -04004915 // OPEN: Settings > Notifications > [App] > Topic Notifications
4916 // CATEGORY: SETTINGS
4917 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004918 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004919
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004920 // OPEN: Settings > Developer options > Enable > Info dialog
4921 // CATEGORY: SETTINGS
4922 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004923 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004924
jeffreyhuang57359c02017-09-18 11:34:00 -07004925 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4926 // CATEGORY: SETTINGS
4927 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004928 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004929
Kevin Chyn60eea712017-09-26 16:03:05 -07004930 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4931 // CATEGORY: SETTINGS
4932 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004933 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004934
jeffreyhuang37c4b132017-09-21 14:09:20 -07004935 // OPEN: Settings > Developer options > USB debugging > Info dialog
4936 // CATEGORY: SETTINGS
4937 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004938 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004939
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004940 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4941 // CATEGORY: SETTINGS
4942 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004943 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004944
Fan Zhange5b34302017-10-09 15:58:38 -07004945 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004946 // CATEGORY: SETTINGS
4947 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004948 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4949
jeffreyhuang49de1252017-10-05 15:25:14 -07004950 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4951 // CATEGORY: SETTINGS
4952 // OS: P
4953 DIALOG_LOG_PERSIST = 1225;
4954
Beverly04216872017-09-28 10:55:32 -04004955 // ACTION: DND Settings > Priority only allows > Alarms toggle
4956 // SUBTYPE: 0 is off, 1 is on
4957 // CATEGORY: SETTINGS
4958 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004959 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004960
4961 // ACTION: DND Settings > Priority only allows > Media toggle
4962 // SUBTYPE: 0 is off, 1 is on
4963 // CATEGORY: SETTINGS
4964 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004965 ACTION_ZEN_ALLOW_MEDIA = 1227;
4966
4967 // An autofill service explicitly defined which view should commit the autofill context
4968 // Package: Package of app that is autofilled
4969 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07004970 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004971 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004972 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004973 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004974 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4975
4976 // The autofill context was commited when the user clicked a view explicitly marked by the
4977 // service as committing it
4978 // Package: Package of app that is autofilled
4979 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07004980 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004981 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004982 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004983 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004984
Malcolm Chen4f17b172017-10-19 13:54:07 -07004985 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4986 // CATEGORY: SETTINGS
4987 // OS: P
4988 WIFI_CALLING_FOR_SUB = 1230;
4989
Felipe Leme17292d12017-10-24 14:03:10 -07004990 // An autofill service asked to disable autofill for a given application.
4991 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004992 // OS: P
4993 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004994 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemece3ae872018-05-24 10:41:48 -07004995 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004996 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004997 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4998
4999 // An autofill service asked to disable autofill for a given activity.
5000 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005001 // OS: P
5002 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5003 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005004 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemece3ae872018-05-24 10:41:48 -07005005 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005006 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005007 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5008
jackqdyuleide3b7af2017-10-24 16:32:58 -07005009 // ACTION: Stop an app and turn on background check
5010 // CATEGORY: SETTINGS
5011 // OS: P
5012 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5013
5014 // FIELD: The action type for each anomaly
5015 // CATEGORY: SETTINGS
5016 // OS: P
5017 FIELD_ANOMALY_ACTION_TYPE = 1234;
5018
5019 // OPEN: Settings -> Battery -> Wakelock anomaly
5020 // CATEGORY: SETTINGS
5021 // OS: P
5022 ANOMALY_TYPE_WAKELOCK = 1235;
5023
5024 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5025 // CATEGORY: SETTINGS
5026 // OS: P
5027 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5028
5029 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5030 // CATEGORY: SETTINGS
5031 // OS: P
5032 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5033
Fan Zhanga4a01722017-10-30 17:54:24 -07005034 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5035 // OS: P
5036 DIALOG_OEM_LOCK_INFO = 1238;
5037
jackqdyulei331fafb2017-11-01 14:01:24 -07005038 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5039 // CATEGORY: SETTINGS
5040 // OS: P
5041 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5042
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005043 // Open: Settings > System > About phone > IMEI
5044 // CATEGORY: SETTINGS
5045 // OS: P
5046 DIALOG_IMEI_INFO = 1240;
5047
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005048 // In permission action fields tagged like this reference the permission affected
5049 FIELD_PERMISSION = 1241;
5050
5051 // ACTION: An app requested a permission and we asked to user to approve the request
5052 // PACKAGE: The package name of the app requesting the permission
5053 // Tag FIELD_PERMISSION: Name of the permission requested
5054 ACTION_PERMISSION_REQUESTED = 1242;
5055
5056 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5057 // or automatically. In the second case there will not be an
5058 // ACTION_PERMISSION_REQUESTED.
5059 // PACKAGE: The package name of the app that was granted the permission
5060 // Tag FIELD_PERMISSION: Name of the permission granted
5061 ACTION_PERMISSION_GRANTED = 1243;
5062
5063 // ACTION: An app requested the a permission and the request was denied by the user or a device
5064 // policy
5065 // PACKAGE: The package name of the app requesting the permission
5066 // Tag FIELD_PERMISSION: Name of the permission denied
5067 ACTION_PERMISSION_DENIED = 1244;
5068
5069 // ACTION: A permission was revoked
5070 // PACKAGE: The package name of the app the permission was revoked for
5071 // Tag FIELD_PERMISSION: Name of the permission revoked
5072 ACTION_PERMISSION_REVOKED = 1245;
5073
jeffreyhuang594314c2017-11-01 10:26:15 -07005074 // OPEN: Settings > System > About Phone > Sim status
5075 // CATEGORY: SETTINGS
5076 // OS: P
5077 DIALOG_SIM_STATUS = 1246;
5078
jeffreyhuang3bd59782017-11-02 11:08:28 -07005079 // OPEN: Settings > System > About Phone > Android Version
5080 // CATEGORY: SETTINGS
5081 // OS: P
5082 DIALOG_FIRMWARE_VERSION = 1247;
5083
jackqdyulei8fe97542017-11-08 16:23:43 -08005084 // OPEN: Settings > Network & internet > Menu > Private DNS
5085 // CATEGORY: SETTINGS
5086 // OS: P
5087 DIALOG_PRIVATE_DNS = 1248;
5088
5089 // ACTION: A private dns mode been selected by user
5090 // CATEGORY: SETTINGS
5091 // OS: P
5092 ACTION_PRIVATE_DNS_MODE = 1249;
5093
Jan Althausae5eb832017-11-06 12:31:59 +01005094 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5095 // CATEGORY: TEXT_SELECTION_SESSION
5096 // OS: P
5097 FIELD_SELECTION_RANGE_START = 1250;
5098
5099 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5100 // CATEGORY: TEXT_SELECTION_SESSION
5101 // OS: P
5102 FIELD_SELECTION_RANGE_END = 1251;
5103
5104 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5105 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5106 // CATEGORY: TEXT_SELECTION_SESSION
5107 // OS: P
5108 FIELD_SELECTION_SMART_RANGE_START = 1252;
5109
5110 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5111 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5112 // CATEGORY: TEXT_SELECTION_SESSION
5113 // OS: P
5114 FIELD_SELECTION_SMART_RANGE_END = 1253;
5115
5116 // FIELD: the entity type of the text currently selected.
5117 // CATEGORY: TEXT_SELECTION_SESSION
5118 // OS: P
5119 FIELD_SELECTION_ENTITY_TYPE = 1254;
5120
5121 // FIELD: the type of widget the selection was made in.
5122 // CATEGORY: TEXT_SELECTION_SESSION
5123 // OS: P
5124 FIELD_SELECTION_WIDGET_TYPE = 1255;
5125
5126 // FIELD: the name of the text classifier model used.
5127 // CATEGORY: TEXT_SELECTION_SESSION
5128 // OS: P
5129 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5130
Beverly625442d2017-11-03 17:27:02 -04005131 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5132 // CATEGORY: SETTINGS
5133 // OS: P
5134 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5135
5136 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5137 // CATEGORY: SETTINGS
5138 // OS: P
5139 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5140
5141 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5142 // CATEGORY: SETTINGS
5143 // OS: P
5144 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5145
5146 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5147 // CATEGORY: SETTINGS
5148 // OS: P
5149 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5150
5151 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5152 // CATEGORY: SETTINGS
5153 // OS: P
5154 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5155
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005156 // FIELD: the version of the widget the selection was made in.
5157 // CATEGORY: TEXT_SELECTION_SESSION
5158 // OS: P
5159 FIELD_SELECTION_WIDGET_VERSION = 1262;
5160
jackqdyulei63193602017-11-27 13:46:48 -08005161 // OPEN: Settings > Battery(version 2)
5162 // CATEGORY: SETTINGS
5163 // OS: P
5164 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5165
jackqdyulei6139eab2017-11-29 14:38:32 -08005166 // OPEN: Settings > Connected devices > Connection preferences
5167 // CATEGORY: SETTINGS
5168 // OS: P
5169 CONNECTION_DEVICE_ADVANCED = 1264;
5170
Fan Zhang5235c052017-12-05 13:49:35 -08005171 // OPEN: Settings > Security > Screen lock gear icon
5172 // CATEGORY: SETTINGS
5173 // OS: P
5174 SCREEN_LOCK_SETTINGS = 1265;
5175
Beverlybf16c142017-11-27 16:21:34 -05005176 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5177 // CATEGORY: SETTINGS
5178 // OS: P
5179 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005180
Beverlybf16c142017-11-27 16:21:34 -05005181 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5182 // CATEGORY: SETTINGS
5183 // OS: P
5184 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5185
5186 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5187 // CATEGORY: SETTINGS
5188 // OS: P
5189 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5190
5191 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5192 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5193 // CATEGORY: SETTINGS
5194 // OS: P
5195 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5196
5197 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5198 // CATEGORY: SETTINGS
5199 // OS: P
5200 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5201
Felipe Leme5e047202017-12-05 16:30:06 -08005202 // Tag of a field for the number of ids in an autofill field classification request.
5203 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5204
5205 // An autofill service updated its user data
5206 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005207 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5208 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005209 // OS: P
5210 AUTOFILL_USERDATA_UPDATED = 1272;
5211
5212 // Some data entered by the user matched the field classification requested by the service.
5213 // Package: Package of app that is autofilled
5214 // Counter: number of matches found
5215 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07005216 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005217 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5218 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Lemece3ae872018-05-24 10:41:48 -07005219 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005220 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005221 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5222
5223 // Tag used to report autofill field classification scores
5224 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5225
Jerry Zhang18be8db2017-12-15 15:24:41 -08005226 // ACTION: Usb config has been changed to charging
5227 // CATEGORY: SETTINGS
5228 // OS: P
5229 ACTION_USB_CONFIG_CHARGING = 1275;
5230
5231 // ACTION: Usb config has been changed to mtp (file transfer)
5232 // CATEGORY: SETTINGS
5233 // OS: P
5234 ACTION_USB_CONFIG_MTP = 1276;
5235
5236 // ACTION: Usb config has been changed to ptp (photo transfer)
5237 // CATEGORY: SETTINGS
5238 // OS: P
5239 ACTION_USB_CONFIG_PTP = 1277;
5240
5241 // ACTION: Usb config has been changed to rndis (usb tethering)
5242 // CATEGORY: SETTINGS
5243 // OS: P
5244 ACTION_USB_CONFIG_RNDIS = 1278;
5245
5246 // ACTION: Usb config has been changed to midi
5247 // CATEGORY: SETTINGS
5248 // OS: P
5249 ACTION_USB_CONFIG_MIDI = 1279;
5250
5251 // ACTION: Usb config has been changed to accessory
5252 // CATEGORY: SETTINGS
5253 // OS: P
5254 ACTION_USB_CONFIG_ACCESSORY = 1280;
5255
jackqdyuleie04138d2018-01-08 17:51:57 -08005256 // OPEN: Settings > Battery > Smart Battery
5257 // CATEGORY: SETTINGS
5258 // OS: P
5259 FUELGAUGE_SMART_BATTERY = 1281;
5260
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005261 // ACTION: User tapped Screenshot in the power menu.
5262 // CATEGORY: GLOBAL_SYSTEM_UI
5263 // OS: P
5264 ACTION_SCREENSHOT_POWER_MENU = 1282;
5265
Felipe Leme3e099112018-01-18 12:57:45 -08005266 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005267 // CATEGORY: SETTINGS
5268 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005269 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005270
Felipe Leme3e099112018-01-18 12:57:45 -08005271 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005272 // CATEGORY: SETTINGS
5273 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005274 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005275
jackqdyuleid9821242018-01-09 17:42:52 -08005276 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5277 // CATEGORY: SETTINGS
5278 // OS: P
5279 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5280
Beverly92c25682018-01-22 09:27:19 -05005281 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5282 // CATEGORY: SETTINGS
5283 // OS: P
5284 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5285
Mike Digmanc94759d2018-01-23 11:01:21 -08005286 // ACTION: Rotate suggestion accepted in rotation locked mode
5287 // CATEGORY: GLOBAL_SYSTEM_UI
5288 // OS: P
5289 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5290
5291 // OPEN: Rotation suggestion shown in rotation locked mode
5292 // CATEGORY: GLOBAL_SYSTEM_UI
5293 // OS: P
5294 ROTATION_SUGGESTION_SHOWN = 1288;
5295
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005296 // An autofill service was bound using an unofficial(but still supported) permission.
5297 // Package: Package of the autofill service
5298 // OS: P
5299 AUTOFILL_INVALID_PERMISSION = 1289;
5300
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005301 // OPEN: QS Alarm tile shown
5302 // ACTION: QS Alarm tile tapped
5303 // SUBTYPE: 0 is off, 1 is on
5304 // CATEGORY: QUICK_SETTINGS
5305 // OS: P
5306 QS_ALARM = 1290;
5307
Jerry Zhang79147972018-01-31 16:04:06 -08005308 // OPEN: Settings->Connected Devices->USB->(click on details link)
5309 // CATEGORY: SETTINGS
5310 // OS: P
5311 USB_DEVICE_DETAILS = 1291;
5312
Michael Wright98bdc512018-01-26 19:15:57 +00005313 // OPEN: Settings > Accessibility > Vibration
5314 // CATEGORY: SETTINGS
5315 // OS: P
5316 ACCESSIBILITY_VIBRATION = 1292;
5317
5318 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5319 // CATEGORY: SETTINGS
5320 // OS: P
5321 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5322
5323 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5324 // CATEGORY: SETTINGS
5325 // OS: P
5326 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5327
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005328 // OPEN: Volume panel > output chooser dialog
5329 // OS: P
5330 OUTPUT_CHOOSER = 1295;
5331
5332 // Action: Volume panel > output chooser dialog > tap on device
5333 // OS: P
5334 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5335
5336 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5337 // OS: P
5338 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5339
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005340 // OPEN: TV Settings > Home theater control
5341 // OS: P
5342 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5343
5344 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5345 // OS: P
5346 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5347
5348 // OPEN: TV Settings > Device
5349 // OS: P
5350 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5351
5352 // OPEN: TV Settings > Network > Proxy settings
5353 // OS: P
5354 DIALOG_TV_NETWORK_PROXY = 1301;
5355
Makoto Onuki698f7a02018-02-13 15:02:23 -08005356 // Events for battery saver turning on/off and/or the interactive state changes.
5357 // OS: P
5358 BATTERY_SAVER = 1302;
5359
5360 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5361 // OS: P
5362 FIELD_INTERACTIVE = 1303;
5363
5364 // Time spent in milliseconds in the current mode.
5365 // OS: P
5366 FIELD_DURATION_MILLIS = 1304;
5367
Chris Wren8f7a1442018-05-14 17:16:31 -04005368 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005369 // OS: P
5370 FIELD_START_BATTERY_UA = 1305;
5371
Chris Wren8f7a1442018-05-14 17:16:31 -04005372 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005373 // OS: P
5374 FIELD_END_BATTERY_UA = 1306;
5375
5376 // Battery level in % (0-100) when the current "mode" started.
5377 // OS: P
5378 FIELD_START_BATTERY_PERCENT = 1307;
5379
5380 // Battery level in % (0-100) when this event was created.
5381 // OS: P
5382 FIELD_END_BATTERY_PERCENT = 1308;
5383
Christine Frankse257e452018-01-18 11:06:54 -08005384 // ACTION: Settings > Display > Night Light
5385 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5386 // CATEGORY: SETTINGS
5387 // OS: P
5388 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5389
5390 // ACTION: Settings > Display > Night Light
5391 // CATEGORY: SETTINGS
5392 // SUBTYPE: 0 is starting time, 1 is ending time
5393 // OS: P
5394 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5395
5396 // FIELD: Current mode corresponding to a QS tile
5397 // CATEGORY: QUICK SETTINGS
5398 // OS: P
5399 FIELD_QS_MODE = 1311;
5400
Jerry Zhang92306d82018-02-12 18:12:41 -08005401 // OPEN: Settings->Developer Options->Default USB
5402 // CATEGORY: SETTINGS
5403 // OS: P
5404 USB_DEFAULT = 1312;
5405
Jan Althaus31efdc32018-02-19 22:23:13 +01005406 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5407 // OS: P
5408 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5409
5410 // FIELD: milliseconds spent generating links.
5411 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5412 // OS: P
5413 FIELD_LINKIFY_LATENCY = 1314;
5414
5415 // FIELD: length of the input text in characters.
5416 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5417 // OS: P
5418 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5419
5420 // FIELD: number of links detected.
5421 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5422 // OS: P
5423 FIELD_LINKIFY_NUM_LINKS = 1316;
5424
5425 // FIELD: length of all links in characters.
5426 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5427 // OS: P
5428 FIELD_LINKIFY_LINK_LENGTH = 1317;
5429
5430 // FIELD: the type of entity the stats are for.
5431 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5432 // OS: P
5433 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5434
5435 // FIELD: a random uid for a single call to generateLinks
5436 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5437 // OS: P
5438 FIELD_LINKIFY_CALL_ID = 1319;
5439
Calin Juravle759fbda2018-02-20 19:52:30 +00005440 // FIELD: The compiler filter used when when optimizing the package.
5441 // Logged together with app transition events.
5442 // OS: P
5443 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5444
5445 // FIELD: The reason for optimizing the package.
5446 // Logged together with app transition events.
5447 // OS: P
5448 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5449
Emilian Peev6bf0a552018-02-10 02:15:49 +00005450 // FIELD: The camera API level used.
5451 // CATEGORY: CAMERA
5452 // OS: P
5453 FIELD_CAMERA_API_LEVEL = 1322;
5454
jackqdyulei73e6b342018-02-26 14:44:50 -08005455 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5456 // CATEGORY: SETTINGS
5457 // OS: P
5458 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5459
jackqdyuleibb60ea22018-02-26 17:18:12 -08005460 // OPEN: Settings > Battery > Battery tip
5461 // CATEGORY: SETTINGS
5462 // OS: P
5463 ACTION_BATTERY_TIP_SHOWN = 1324;
5464
Maggieb9d76322018-02-16 18:00:30 -08005465 // OPEN: Settings > Security & Location > Location > See all
5466 // CATEGORY: SETTINGS
5467 // OS: P
5468 RECENT_LOCATION_REQUESTS_ALL = 1325;
5469
Evan Laird404a85c2018-02-28 15:31:29 -05005470 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5471 // CATEGORY: GLOBAL_SYSTEM_UI
5472 // OS: P
5473 FIELD_GESTURE_X_PERCENT = 1326;
5474
5475 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5476 // CATEGORY: GLOBAL_SYSTEM_UI
5477 // OS: P
5478 FIELD_GESTURE_Y_PERCENT = 1327;
5479
5480 // ACTION: Expand the notification panel while unlocked
5481 // CATEGORY: GLOBAL_SYSTEM_UI
5482 // OS: P
5483 ACTION_PANEL_VIEW_EXPAND = 1328;
5484
Evan Laird404a85c2018-02-28 15:31:29 -05005485 // FIELD: Rotation of the device
5486 // CATEGORY: GLOBAL_SYSTEM_UI
5487 // OS: P
5488 FIELD_DEVICE_ROTATION = 1329;
5489
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005490 // OPEN: TV Settings > Inputs > Input Options
5491 // CATEGORY: SETTINGS
5492 // OS: P
5493 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5494
5495 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5496 // CATEGORY: SETTINGS
5497 // OS: P
5498 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5499
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005500 // ACTION: DND Settings > What to block > full screen intents
5501 // SUBTYPE: false is allowed, true is blocked
5502 // CATEGORY: SETTINGS
5503 // OS: 6.0
5504 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5505
5506 // ACTION: DND Settings > What to block
5507 // SUBTYPE: false is allowed, true is blocked
5508 // OS: P
5509 ACTION_ZEN_BLOCK_LIGHT = 1333;
5510
5511 // ACTION: DND Settings > What to block
5512 // SUBTYPE: false is allowed, true is blocked
5513 // OS: P
5514 ACTION_ZEN_BLOCK_PEEK = 1334;
5515
5516 // ACTION: DND Settings > What to block
5517 // SUBTYPE: false is allowed, true is blocked
5518 // OS: P
5519 ACTION_ZEN_BLOCK_STATUS = 1335;
5520
5521 // ACTION: DND Settings > What to block
5522 // SUBTYPE: false is allowed, true is blocked
5523 // OS: P
5524 ACTION_ZEN_BLOCK_BADGE = 1336;
5525
5526 // ACTION: DND Settings > What to block
5527 // SUBTYPE: false is allowed, true is blocked
5528 // OS: P
5529 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5530
5531 // ACTION: DND Settings > What to block
5532 // SUBTYPE: false is allowed, true is blocked
5533 // OS: P
5534 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5535
5536 // OPEN: DND Settings > What to block
5537 // OS: P
5538 ZEN_WHAT_TO_BLOCK = 1339;
5539
Beverly8fe33ba2018-03-05 14:32:35 -05005540 // ACTION: DND Settings > Priority only allows > System toggle
5541 // SUBTYPE: 0 is off, 1 is on
5542 // CATEGORY: SETTINGS
5543 // OS: P
5544 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5545
5546 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5547 // CATEGORY: SETTINGS
5548 // OS: P
5549 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5550
5551 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5552 // CATEGORY: SETTINGS
5553 // OS: P
5554 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5555
5556 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5557 // CATEGORY: SETTINGS
5558 // OS: P
5559 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5560
5561 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5562 // CATEGORY: SETTINGS
5563 // OS: P
5564 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5565
Julia Reynolds8dff1862018-03-06 14:20:40 -05005566 // Notification Guts, active app ops variant
5567 // OS: P
5568 APP_OPS_GUTS = 1345;
5569
5570 // ACTION: Notification Guts, active app ops variant > Settings button
5571 // OS: P
5572 ACTION_OPS_GUTS_SETTINGS = 1346;
5573
Lei Yu5674d2d2018-03-08 10:19:43 -08005574 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5575 // OS: P
5576 ACTION_APP_RESTRICTION_TIP = 1347;
5577
5578 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5579 // OS: P
5580 ACTION_HIGH_USAGE_TIP = 1348;
5581
Lei Yue93e5602018-03-08 12:15:38 -08005582 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5583 // OS: P
5584 ACTION_SUMMARY_TIP = 1349;
5585
5586 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5587 // OS: P
5588 ACTION_SMART_BATTERY_TIP = 1350;
5589
5590 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5591 // OS: P
5592 ACTION_EARLY_WARNING_TIP = 1351;
5593
5594 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5595 // OS: P
5596 ACTION_LOW_BATTERY_TIP = 1352;
5597
5598 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5599 // OS: P
5600 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5601
5602 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5603 // OS: P
5604 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5605
Victor Chang76817b82018-03-09 17:22:52 +00005606 // OPEN: Settings > Date & time > Select time zone -> Region
5607 // CATEGORY: SETTINGS
5608 // OS: P
5609 SETTINGS_ZONE_PICKER_REGION = 1355;
5610
5611 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5612 // CATEGORY: SETTINGS
5613 // OS: P
5614 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5615
5616 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5617 // CATEGORY: SETTINGS
5618 // OS: P
5619 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5620
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005621 // Action: notification shade > manage notifications
5622 // OS: P
5623 ACTION_MANAGE_NOTIFICATIONS = 1358;
5624
Chris Wrenaa571c62018-03-14 12:16:04 -04005625 // This value should never appear in log outputs - it is reserved for
5626 // internal platform metrics use.
5627 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5628
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005629 // OPEN: Settings > Gestures > Prevent Ringing
5630 // OS: P
5631 SETTINGS_PREVENT_RINGING = 1360;
5632
Lei Yue92285a2018-03-12 11:28:40 -07005633 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5634 // CATEGORY: SETTINGS
5635 // OS: P
5636 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5637
5638 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5639 // CATEGORY: SETTINGS
5640 // OS: P
5641 ACTION_TIP_RESTRICT_APP = 1362;
5642
5643 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5644 // CATEGORY: SETTINGS
5645 // OS: P
5646 ACTION_TIP_UNRESTRICT_APP = 1363;
5647
5648 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5649 // CATEGORY: SETTINGS
5650 // OS: P
5651 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5652
5653 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5654 // CATEGORY: SETTINGS
5655 // OS: P
5656 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5657
5658 // FIELD: type of anomaly in settings app
5659 // CATEGORY: SETTINGS
5660 // OS: P
5661 FIELD_ANOMALY_TYPE = 1366;
5662
Lei Yu4f704772018-03-20 10:51:58 -07005663 // ACTION: Settings > Anomaly receiver > Anomaly received
5664 // CATEGORY: SETTINGS
5665 // OS: P
5666 ACTION_ANOMALY_TRIGGERED = 1367;
5667
Fan Zhanga85b4872018-03-26 16:52:53 -07005668 // ACTION: Settings > Condition > Device muted
5669 // CATEGORY: SETTINGS
5670 // OS: P
5671 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5672
5673 // ACTION: Settings > Condition > Device vibrate
5674 // CATEGORY: SETTINGS
5675 // OS: P
5676 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5677
hughchen226196b2018-03-27 12:04:59 +08005678 // OPEN: Settings > Connected devices > previously connected devices
5679 // CATEGORY: SETTINGS
5680 // OS: P
5681 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005682
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005683 // ACTION: A Settings Slice is requested
5684 // CATEGORY: SETTINGS
5685 // OS: P
5686 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5687
5688 // ACTION: A Settings Slice is updated with new value
5689 // CATEGORY: SETTINGS
5690 // OS: P
5691 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5692
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005693 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5694 // note: Wifi Scanning must be off for this dialog to show
5695 // CATEGORY: SETTINGS
5696 // OS: P
5697 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5698
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005699 // OPEN: Settings > System > Gestures > Swipe up gesture
5700 // CATEGORY: SETTINGS
5701 // OS: P
5702 SETTINGS_GESTURE_SWIPE_UP = 1374;
5703
Jeff Sharkey46270712018-04-02 09:53:21 -06005704 // OPEN: Settings > Storage > Dialog to format a storage volume
5705 // CATEGORY: SETTINGS
5706 // OS: P
5707 DIALOG_VOLUME_FORMAT = 1375;
5708
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005709 // OPEN: DND onboarding activity > screen on checkbox
5710 // CATEGORY: SETTINGS
5711 // OS: P
5712 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5713
5714 // OPEN: DND onboarding activity > screen off checkbox
5715 // CATEGORY: SETTINGS
5716 // OS: P
5717 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5718
5719 // OPEN: DND onboarding activity > Ok button
5720 // CATEGORY: SETTINGS
5721 // OS: P
5722 ACTION_ZEN_ONBOARDING_OK = 1378;
5723
5724 // OPEN: DND onboarding activity > Settings link
5725 // CATEGORY: SETTINGS
5726 // OS: P
5727 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5728
5729 // OPEN: DND onboarding activity
5730 // CATEGORY: SETTINGS
5731 // OS: P
5732 SETTINGS_ZEN_ONBOARDING = 1380;
5733
Fan Zhangd2ed8212018-04-10 12:57:56 -07005734 // OPEN: Settings > Display > Auto brightness
5735 // CATEGORY: SETTINGS
5736 // OS: P
5737 SETTINGS_AUTO_BRIGHTNESS = 1381;
5738
Kenny Guy23991102018-04-05 21:18:38 +01005739 // OPEN: Smart replies in a notification seen at least once
5740 // CATEGORY: NOTIFICATION
5741 // PACKAGE: App that posted the notification
5742 // SUBTYPE: Number of smart replies.
5743 // OS: P
5744 SMART_REPLY_VISIBLE = 1382;
5745
5746 // ACTION: Smart reply in a notification clicked.
5747 // CATEGORY: NOTIFICATION
5748 // PACKAGE: App that posted the notification
5749 // SUBTYPE: Index of smart reply clicked.
5750 // OS: P
5751 SMART_REPLY_ACTION = 1383;
5752
5753 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5754 // OS: P
5755 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5756
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005757 // Volume dialog > ringer toggle
5758 // OS: P
5759 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5760
5761 // Volume dialog > settings button
5762 // OS: P
5763 ACTION_VOLUME_SETTINGS = 1386;
5764
Lei Yufc59a572018-04-10 10:52:08 -07005765 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5766 // CATEGORY: SETTINGS
5767 // OS: P
5768 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005769
Lei Yu97a13212018-04-11 15:45:31 -07005770 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5771 // CATEGORY: SETTINGS
5772 // OS: P
5773 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5774
5775 // FIELD: the version code of an app
5776 // CATEGORY: SETTINGS
5777 // OS: P
5778 FIELD_APP_VERSION_CODE = 1389;
5779
Salvador Martinez7a9564f2018-04-04 14:42:59 -07005780 // OPEN: Settings > Connected Devices > Bluetooth
5781 // CATEGORY: SETTINGS
5782 // OS: P
5783 BLUETOOTH_FRAGMENT = 1390;
5784
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005785 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5786 // an app uses a hidden API.
5787 ACTION_HIDDEN_API_ACCESSED = 1391;
5788
5789 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5790 // access; see enum HiddenApiAccessMethod
5791 // OS: P
5792 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5793
5794 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5795 // denied to the API.
5796 // OS: P
5797 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5798
5799 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5800 // API that was accessed.
5801 // OS: P
5802 FIELD_HIDDEN_API_SIGNATURE = 1394;
5803
Chris Wren8f7a1442018-05-14 17:16:31 -04005804 // The number of items in the shade when this notification event was logged.
5805 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005806 NOTIFICATION_SHADE_COUNT = 1395;
5807
Julia Reynolds5da746a2018-04-23 09:41:21 -04005808 // ACTION: DND Settings > What to block
5809 // OS: P
5810 ACTION_ZEN_SOUND_ONLY = 1396;
5811
5812 // ACTION: DND Settings > Notifications
5813 // OS: P
5814 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5815
5816 // ACTION: DND Settings > Notifications
5817 // OS: P
5818 ACTION_ZEN_SHOW_CUSTOM = 1398;
5819
5820 // ACTION: DND Settings > Notifications
5821 // OS: P
5822 ACTION_ZEN_CUSTOM = 1399;
5823
5824 // Screen: DND Settings > Notifications
5825 // OS: P
5826 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5827
Chris Wrend63dffd2018-04-19 11:12:46 -04005828 // An event category for slices.
5829 // OPEN: Slice became visible.
5830 // CLOSE: Slice became invisible.
5831 // ACTION: Slice was tapped.
5832 SLICE = 1401;
5833
5834 // The authority part of the slice URI
5835 FIELD_SLICE_AUTHORITY = 1402;
5836
5837 // The path part of the slice URI
5838 FIELD_SLICE_PATH = 1403;
5839
5840 // The authority part of the subslice URI
5841 FIELD_SUBSLICE_AUTHORITY = 1404;
5842
5843 // The path part of the subslice URI
5844 FIELD_SUBSLICE_PATH = 1405;
5845
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005846 // OPEN: DND onboarding activity > don't update button
5847 // CATEGORY: SETTINGS
5848 // OS: P
5849 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5850
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005851 // ACTION: Storage initialization wizard initialization choice of external/portable
5852 // CATEGORY: SETTINGS
5853 // OS: P
5854 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5855
5856 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5857 // CATEGORY: SETTINGS
5858 // OS: P
5859 ACTION_STORAGE_INIT_INTERNAL = 1408;
5860
5861 // ACTION: Storage initialization wizard benchmark fast choice of continue
5862 // CATEGORY: SETTINGS
5863 // OS: P
5864 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5865
5866 // ACTION: Storage initialization wizard benchmark slow choice of continue
5867 // CATEGORY: SETTINGS
5868 // OS: P
5869 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5870
5871 // ACTION: Storage initialization wizard benchmark slow choice of abort
5872 // CATEGORY: SETTINGS
5873 // OS: P
5874 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5875
5876 // ACTION: Storage initialization wizard migration choice of now
5877 // CATEGORY: SETTINGS
5878 // OS: P
5879 ACTION_STORAGE_MIGRATE_NOW = 1412;
5880
5881 // ACTION: Storage initialization wizard migration choice of later
5882 // CATEGORY: SETTINGS
5883 // OS: P
5884 ACTION_STORAGE_MIGRATE_LATER = 1413;
5885
Felipe Leme11166522018-05-07 10:18:47 -07005886 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005887 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005888 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5889
hughchen2bde4092018-05-10 18:04:25 +08005890 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005891 // CATEGORY: SETTINGS
5892 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005893 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5894
5895 // OPEN: Settings > Sound > Switch hfp devices dialog
5896 // CATEGORY: SETTINGS
5897 // OS: P
5898 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005899
Beverlyc4eb9342018-05-10 15:46:03 -04005900 // ACTION: User has started or ended charging
5901 // Type TYPE_DISMISS: Charging has ended
5902 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5903 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5904 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5905 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5906 // Tag FIELD_PLUG_TYPE: Charging plug type
5907 ACTION_CHARGE = 1417;
5908
5909 // Tag used to determine battery level when device started charging
5910 FIELD_BATTERY_LEVEL_START = 1418;
5911
5912 // Tag used to determine battery level when device ended charging
5913 FIELD_BATTERY_LEVEL_END = 1419;
5914
5915 // Tag used to determine length of charging
5916 FIELD_CHARGING_DURATION_MILLIS = 1420;
5917
5918 // Tag used to determine what type of charging was started/ended
5919 // 1 = Plugged AC
5920 // 2 = Plugged USB
5921 // 3 = Wireless
5922 FIELD_PLUG_TYPE = 1421;
5923
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005924 // ACTION: USB-C Connector connected.
5925 // CATEGORY: OTHER
5926 // OS: P
5927 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5928
5929 // ACTION: USB-C Connector disconnected.
5930 // CATEGORY: OTHER
5931 // OS: P
5932 // uses FIELD_DURATION_MILLIS for connected duration
5933 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5934
5935 // ACTION: USB-C Audio device connected
5936 // CATEGORY: OTHER
5937 // OS: P
5938 ACTION_USB_AUDIO_CONNECTED = 1424;
5939
5940 // FIELD: VIDPID of connected USB Audio device
5941 // CATEGORY: OTHER
5942 // OS: P
5943 FIELD_USB_AUDIO_VIDPID = 1425;
5944
5945 // ACTION: USB-C Audio device disconnected
5946 // CATEGORY: OTHER
5947 // OS: P
5948 // use FIELD_DURATION_MILLIS for time
5949 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5950
5951 // ACTION: Hardware failure event
5952 // CATEGORY: OTHER
5953 // OS: P
5954 ACTION_HARDWARE_FAILED = 1427;
5955
5956 // FIELD: Hardware failure category
5957 // CATEGORY: OTHER
5958 // OS: P
5959 // Uses enum HardwareType
5960 FIELD_HARDWARE_TYPE = 1428;
5961
5962 // FIELD: Hardware failure category
5963 // CATEGORY: OTHER
5964 // OS: P
5965 // Uses enum HardwareFailureCode
5966 FIELD_HARDWARE_FAILURE_CODE = 1429;
5967
5968 // ACTION: Physical drop event
5969 // CATEGORY: OTHER
5970 // OS: P
5971 // use FIELD_DURATION_MILLIS for time
5972 ACTION_PHYSICAL_DROP = 1430;
5973
5974 // FIELD: Confidence in detection of drop, in integer percentage.
5975 // CATEGORY: OTHER
5976 // OS: P
5977 FIELD_CONFIDENCE_PERCENT = 1431;
5978
5979 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5980 // CATEGORY: OTHER
5981 // OS: P
5982 FIELD_ACCEL_MILLI_G = 1432;
5983
5984 // ACTION: Battery health snapshot
5985 // CATEGORY: OTHER
5986 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005987 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005988 ACTION_BATTERY_HEALTH = 1433;
5989
5990 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5991 // CATEGORY: OTHER
5992 // OS: P
5993 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5994
Andrew Chantc03bc632018-05-18 10:52:00 -07005995 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005996 // CATEGORY: OTHER
5997 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005998 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005999
Andrew Chantc03bc632018-05-18 10:52:00 -07006000 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006001 // CATEGORY: OTHER
6002 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006003 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006004
Andrew Chantc03bc632018-05-18 10:52:00 -07006005 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006006 // CATEGORY: OTHER
6007 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006008 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006009
Andrew Chantc03bc632018-05-18 10:52:00 -07006010 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006011 // fractional threshold of full capacity.
6012 // CATEGORY: OTHER
6013 // OS: P
6014 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6015
Andrew Chantc03bc632018-05-18 10:52:00 -07006016 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6017 // beyond a fractional threshold of full
6018 // capacity. A comma-separated string of
6019 // buckets. If there are eight buckets,
6020 // each bucket represents charging to n/8
6021 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006022 // CATEGORY: OTHER
6023 // OS: P
6024 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6025
Beverly019d6f62018-05-15 16:16:54 -04006026 // ACTION: Hush gesture - volume up + power button
6027 // CATEGORY: GLOBAL_SYSTEM_UI
6028 // OS: P
6029 ACTION_HUSH_GESTURE = 1440;
6030
Petri Gynther915e9442018-05-18 22:59:50 -07006031 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6032 // offload
6033 // CATEGORY: SETTINGS
6034 // OS: P
6035 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6036
Andrew Chantc03bc632018-05-18 10:52:00 -07006037 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6038 // reported aggregated per day when > 0.
6039 // CATEGORY: OTHER
6040 // OS: P
6041 ACTION_SLOW_IO = 1442;
6042
6043 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6044 // The value is an integer from the enum IoOperation.
6045 // CATEGORY: OTHER
6046 // OS: P
6047 FIELD_IO_OPERATION_TYPE = 1443;
6048
6049 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6050 // over the past 24hr (reported only if > 0).
6051 // CATEGORY: OTHER
6052 // OS: P
6053 FIELD_IO_OPERATION_COUNT = 1444;
6054
6055 // ACTION: Speaker Imedance - last recorded speaker impedance.
6056 // reported max once per 24hr.
6057 // CATEGORY: OTHER
6058 // OS: P
6059 ACTION_SPEAKER_IMPEDANCE = 1445;
6060
6061 // FIELD: Speaker Impedance in milliohms.
6062 // CATEGORY: OTHER
6063 // OS: P
6064 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6065
6066 // FIELD: Speaker Location - identifies one of several speakers on a device.
6067 // CATEGORY: OTHER
6068 // OS: P
6069 FIELD_SPEAKER_LOCATION = 1447;
6070
6071 // FIELD: Instantaneous battery resistance in microohms.
6072 // CATEGORY: OTHER
6073 // OS: P
6074 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6075
6076 // FIELD: Instantaneous battery current - in microamps.
6077 // CATEGORY: OTHER
6078 // OS: P
6079 FIELD_BATTERY_CURRENT_UA = 1449;
6080
6081 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6082 // board.
6083 // CATEGORY: OTHER
6084 // OS: P
6085 FIELD_HARDWARE_LOCATION = 1450;
6086
6087 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6088 // action is logged after the subsequent boot.
6089 // CATEGORY: OTHER
6090 // OS: P
6091 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6092
Felipe Lemef61ba5c2018-05-21 11:18:46 -07006093 // FIELD: Flags used on autofill-related metrics
6094 // OS: P
6095 FIELD_AUTOFILL_FLAGS = 1452;
6096
6097 // Tag used when the service returned an authenticated dataset or response.
6098 // Used to replace the following individual metrics, which now are logged as the value of this
6099 // field in the AUTOFILL_REQUEST metric:
6100 // - AUTOFILL_AUTHENTICATED;
6101 // - AUTOFILL_DATASET_AUTHENTICATED
6102 // - AUTOFILL_INVALID_AUTHENTICATION
6103 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6104 // OS: P
6105 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6106
6107 // FIELD: Index of the autofill request inside of a session.
6108 // OS: P
6109 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6110
6111 // FIELD: Number of requests made to an autofill service during a session.
6112 // OS: P
6113 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6114
Felipe Lemece3ae872018-05-24 10:41:48 -07006115 // FIELD: Id of the autofill session associated with this metric.
6116 // OS: P
6117 FIELD_AUTOFILL_SESSION_ID = 1456;
6118
Beverlybf16c142017-11-27 16:21:34 -05006119 // ---- End P Constants, all P constants go above this line ----
Adrian Roos159ef7b2016-02-25 11:58:32 -08006120 // Add new aosp constants above this line.
6121 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05006122 }
6123}