blob: 73fcb0150a9ec1beb721dadea97c097b1af10ee6 [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;
Will Brockman2a1e6b82019-01-15 11:36:06 -050076
77 // The notification was adjusted by the assistant. Enum value is
78 // out of sequence due to b/122737498.
79 TYPE_NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
Chris Wren5e334f62016-11-14 10:16:21 -050080 }
81
Chris Wren65f07fe2017-03-14 14:10:37 -040082 // Types of alerts, as bit field values
83 enum Alert {
84 // Vibrate the device.
85 ALERT_BUZZ = 1;
86
87 // Make sound through the speaker.
88 ALERT_BEEP = 2;
89
90 // Flash a notificaiton light.
91 ALERT_BLINK = 4;
92 }
93
94 // Reasons that a notification might be dismissed.
95 enum DismissReason {
96 // from android.service.notification.NotificationListenerService
97
98 // Notification was canceled by the status bar reporting a notification click
99 REASON_CLICK = 1;
100
101 // Notification was canceled by the status bar reporting a user dismissal.
102 REASON_CANCEL = 2;
103
104 // Notification was canceled by the status bar reporting a user dismiss all.
105 REASON_CANCEL_ALL = 3;
106
107 // Notification was canceled by the status bar reporting an inflation error.
108 REASON_ERROR = 4;
109
110 // Notification was canceled by the package manager modifying the package.
111 REASON_PACKAGE_CHANGED = 5;
112
113 // Notification was canceled by the owning user context being stopped.
114 REASON_USER_STOPPED = 6;
115
116 // Notification was canceled by the user banning the package.
117 REASON_PACKAGE_BANNED = 7;
118
119 // Notification was canceled by the app canceling this specific notification.
120 REASON_APP_CANCEL = 8;
121
122 //Notification was canceled by the app cancelling all its notifications.
123 REASON_APP_CANCEL_ALL = 9;
124
125 // Notification was canceled by a listener reporting a user dismissal.
126 REASON_LISTENER_CANCEL = 10;
127
128 //Notification was canceled by a listener reporting a user dismiss all.
129 REASON_LISTENER_CANCEL_ALL = 11;
130
131 // Notification was canceled because it was a member of a canceled group.
132 REASON_GROUP_SUMMARY_CANCELED = 12;
133
134 // Notification was canceled because it was an invisible member of a group.
135 REASON_GROUP_OPTIMIZATION = 13;
136
137 // Notification was canceled by the device administrator suspending the package.
138 REASON_PACKAGE_SUSPENDED = 14;
139
140 // Notification was canceled by the owning managed profile being turned off.
141 REASON_PROFILE_TURNED_OFF = 15;
142
143 // Autobundled summary notification was canceled because its group was unbundled.
144 REASON_UNAUTOBUNDLED = 16;
145
146 // Notification was canceled by the user banning the channel.
147 REASON_CHANNEL_BANNED = 17;
148
149 // Notification was snoozed.
150 REASON_SNOOZED = 18;
151
152 // Notification was canceled due to timeout.
153 REASON_TIMEOUT = 19;
154 }
155
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700156 // Subtypes of camera events for ACTION_CAMERA_EVENT
157 enum CameraEvent {
158 // A back-facing camera was used
159 CAMERA_BACK_USED = 0;
160
161 // A front-facing camera was used
162 CAMERA_FRONT_USED = 1;
163
164 // An external camera was used
165 CAMERA_EXTERNAL_USED = 2;
166 }
167
Jan Althaus786a39d2017-09-15 10:41:16 +0200168 // TextClassifier entity types.
169 enum TextClassifierEntityType {
170 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
171 TEXT_CLASSIFIER_TYPE_OTHER = 2;
172 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
173 TEXT_CLASSIFIER_TYPE_PHONE = 4;
174 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
175 TEXT_CLASSIFIER_TYPE_URL = 6;
176 }
177
Jan Althausae5eb832017-11-06 12:31:59 +0100178 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
179 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500180 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100181 TEXT_SELECTION_INVOCATION_MANUAL = 1;
182 TEXT_SELECTION_INVOCATION_LINK = 2;
183 }
184
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100185 // Access method for hidden API events. Type of data tagged with
186 // FIELD_HIDDEN_API_ACCESS_METHOD.
187 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
188 enum HiddenApiAccessMethod {
189 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
190 ACCESS_METHOD_REFLECTION = 1;
191 ACCESS_METHOD_JNI = 2;
192 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
193 }
194
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700195 enum HardwareType {
196 HARDWARE_UNKNOWN = 0;
197 HARDWARE_MICROPHONE = 1;
198 HARDWARE_CODEC = 2;
199 HARDWARE_SPEAKER = 3;
200 HARDWARE_FINGERPRINT = 4;
201 }
202
203 enum HardwareFailureCode {
204 HARDWARE_FAILURE_UNKNOWN = 0;
205 HARDWARE_FAILURE_COMPLETE = 1;
206 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
207 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
208 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
209 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
210 }
211
Andrew Chantc03bc632018-05-18 10:52:00 -0700212 enum IoOperation {
213 IOOP_UNKNOWN = 0;
214 IOOP_READ = 1;
215 IOOP_WRITE = 2;
216 IOOP_UNMAP = 3;
217 IOOP_SYNC = 4;
218 }
219
Eyal Posenera9cf9c72018-12-18 16:23:54 +0200220 // Subtypes of notifications blocking helper view
221 // (NOTIFICATION_BLOCKING_HELPER).
222 enum NotificationBlockingHelper {
223 BLOCKING_HELPER_UNKNOWN = 0;
224 BLOCKING_HELPER_DISPLAY = 1;
225 BLOCKING_HELPER_DISMISS = 2;
226 // When the view of the notification blocking helper was triggered by
227 // system.
228 BLOCKING_HELPER_TRIGGERED_BY_SYSTEM = 3;
229 // "block" was clicked.
230 BLOCKING_HELPER_CLICK_BLOCKED = 4;
231 // "stay silent" was clicked.
232 BLOCKING_HELPER_CLICK_STAY_SILENT = 5;
233 // "alert me" was clicked.
234 BLOCKING_HELPER_CLICK_ALERT_ME = 6;
235 // "undo" was clicked (enables the user to undo "stop notification" action).
236 BLOCKING_HELPER_CLICK_UNDO = 7;
237 }
238
Gustav Sennton3757d852019-01-21 12:11:40 +0000239 // The (visual) location of a Notification.
240 enum NotificationLocation {
241 LOCATION_UNKNOWN = 0;
242 LOCATION_FIRST_HEADS_UP = 1; // visible heads-up
243 LOCATION_HIDDEN_TOP = 2; // hidden/scrolled away on the top
244 LOCATION_MAIN_AREA = 3; // visible in the shade
245 LOCATION_BOTTOM_STACK_PEEKING = 4; // in the bottom stack, and peeking
246 LOCATION_BOTTOM_STACK_HIDDEN = 5; // in the bottom stack, and hidden
247 LOCATION_GONE = 6; // the view isn't laid out at all
248 }
249
Chris Wren77781d32016-01-11 14:49:26 -0500250 // Known visual elements: views or controls.
251 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500252 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500253 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500254
255 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500256 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > Accessibility
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OPEN: Settings > Accessibility > Captions
264 // CATEGORY: SETTINGS
265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500266 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Settings > Accessibility > [Service]
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OPEN: Settings > Accessibility > Color correction
274 // CATEGORY: SETTINGS
275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500276 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OPEN: Settings > Accessibility > Accessibility shortcut
279 // CATEGORY: SETTINGS
280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500281 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500282
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700283 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
284 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
285 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500286 // CATEGORY: SETTINGS
287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500288 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500289
290 // OPEN: Settings > Accounts
291 // CATEGORY: SETTINGS
292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500293 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Accounts > [Single Account Sync Settings]
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OPEN: Settings > Accounts > Add an account
301 // CATEGORY: SETTINGS
302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500303 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500304
305 // OPEN: Settings > Accounts > [List of accounts when more than one]
306 // CATEGORY: SETTINGS
307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500308 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500309
310 // OPEN: Settings > Cellular network settings > APNs
311 // CATEGORY: SETTINGS
312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500313 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500314
315 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
316 // CATEGORY: SETTINGS
317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500318 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500319
320 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500321 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500322
323 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500324 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500327 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Apps > Configure apps > App links > [App]
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500335 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings > Internal storage > Apps storage > [App]
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Apps > [App info]
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OPEN: Settings > Memory > App usage > [App Memory usage]
348 // CATEGORY: SETTINGS
349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500350 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500353 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > Memory > App usage
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > Bluetooth
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Choose Bluetooth device (ex: when sharing)
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500371 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500372
373 // OPEN: Settings > Security > Choose screen lock
374 // CATEGORY: SETTINGS
375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500376 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500377
378 // OPEN: Settings > Security > Choose screen lock > Choose your password
379 // CATEGORY: SETTINGS
380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500381 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500382
383 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
384 // CATEGORY: SETTINGS
385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500386 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500387
388 // OPEN: Settings > Security > Choose screen lock > Confirm your password
389 // CATEGORY: SETTINGS
390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500391 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500392
393 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
394 // CATEGORY: SETTINGS
395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500396 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500397
398 // OPEN: Settings > Security > Encrypt phone
399 // CATEGORY: SETTINGS
400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500401 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500402
403 // OPEN: Settings > Security > Encrypt phone > Confirm
404 // CATEGORY: SETTINGS
405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500406 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500407
408 // OPEN: Settings > Search results
409 // CATEGORY: SETTINGS
410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500411 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500412
413 // OPEN: Settings (Root page)
414 // CATEGORY: SETTINGS
415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500416 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500419 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500420
421 // OPEN: Settings > Data usage
422 // CATEGORY: SETTINGS
423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500424 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500425
426 // OPEN: Settings > Date & time
427 // CATEGORY: SETTINGS
428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500429 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OPEN: Settings > Developer options
432 // CATEGORY: SETTINGS
433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500434 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > About phone
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > About phone > Status > IMEI information
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Internal storage
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 // OPEN: Settings > About phone > Status > SIM status
452 // CATEGORY: SETTINGS
453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500454 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > About phone > Status
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500462 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500463
464 // OPEN: Settings > Display
465 // CATEGORY: SETTINGS
466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500467 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > Display > Daydream
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OPEN: Settings > Security > Screen lock > Secure start-up
475 // CATEGORY: SETTINGS
476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500477 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500478
479 // OPEN: Settings > Security > Nexus Imprint
480 // CATEGORY: SETTINGS
481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500482 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500483
484 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500485 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500486
487 // OPEN: Settings > Battery > History details
488 // CATEGORY: SETTINGS
489 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500490 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500491
492 // OPEN: Settings > Battery > Battery saver
493 // CATEGORY: SETTINGS
494 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500495 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500496
497 // OPEN: Settings > Battery > [App Use details]
498 // CATEGORY: SETTINGS
499 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500500 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500501
502 // OPEN: Settings > Battery
503 // CATEGORY: SETTINGS
504 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500505 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500506
507 // OPEN: Settings > Home
508 // CATEGORY: SETTINGS
509 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500510 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500511
512 // OPEN: Settings > Security > SIM card lock settings
513 // CATEGORY: SETTINGS
514 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500515 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500516
517 // OPEN: Settings > Language & input
518 // CATEGORY: SETTINGS
519 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500520 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500521
522 // OPEN: Settings > Language & input > Physical keyboard
523 // CATEGORY: SETTINGS
524 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500525 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: Settings > Language & input > Spell checker
528 // CATEGORY: SETTINGS
529 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500530 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500531
532 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500533 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500534
535 // OPEN: Settings > Language & input > Personal dictionary
536 // CATEGORY: SETTINGS
537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500538 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Settings > Language & input > Add word
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OPEN: Settings > Location
546 // CATEGORY: SETTINGS
547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500548 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 // OPEN: Settings > Location > Location mode
551 // CATEGORY: SETTINGS
552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500553 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > Apps
556 // CATEGORY: SETTINGS
557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500558 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 // OPEN: Settings > Backup & reset > Factory data reset
561 // CATEGORY: SETTINGS
562 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500563 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500564
565 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
566 // CATEGORY: SETTINGS
567 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500568 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OPEN: Settings > Data usage > Network restrictions
571 // CATEGORY: SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > More > Android Beam
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Settings > Tap & pay
581 // CATEGORY: SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: Settings > Sound & notification
586 // CATEGORY: SETTINGS
587 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500588 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500589
590 // OPEN: Settings > Sound & notification > App notifications > [App]
591 // CATEGORY: SETTINGS
592 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500593 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500594
595 // OPEN: Settings > Sound & notification > Other sounds
596 // CATEGORY: SETTINGS
597 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500598 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500601 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings Widget > Notification log
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: Settings > Sound & notification > Do not disturb
609 // CATEGORY: SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500614 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Print job notification > Print job settings
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Printing > [Print Service]
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: Settings > Printing
627 // CATEGORY: SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: Settings > Backup & reset
632 // CATEGORY: SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500637 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500638
639 // OPEN: Settings > Backup & reset > Network settings reset
640 // CATEGORY: SETTINGS
641 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500642 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
645 // CATEGORY: SETTINGS
646 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500647 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 // OPEN: Settings > Developer Options > Running Services
650 // CATEGORY: SETTINGS
651 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500652 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500653
654 // OPEN: Settings > Security > Screen pinning
655 // CATEGORY: SETTINGS
656 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500657 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500658
659 // OPEN: Settings > Security
660 // CATEGORY: SETTINGS
661 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500662 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500663
664 // OPEN: Settings > SIM cards
665 // CATEGORY: SETTINGS
666 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500667 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500668
669 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500670 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: Settings > More > Tethering & portable hotspot
673 // CATEGORY: SETTINGS
674 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500675 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500676
677 // OPEN: Settings > Security > Trust agents
678 // CATEGORY: SETTINGS
679 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500680 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500681
682 // OPEN: Settings > Security > Trusted credentials
683 // CATEGORY: SETTINGS
684 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500685 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500686
687 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
688 // CATEGORY: SETTINGS
689 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500690 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500691
692 // OPEN: Settings > Language & input > Text-to-speech output
693 // CATEGORY: SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // OPEN: Settings > Security > Apps with usage access
698 // CATEGORY: SETTINGS
699 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500700 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // OPEN: Settings > Users
703 // CATEGORY: SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // OPEN: Settings > Users > [Restricted profile app & content access]
708 // CATEGORY: SETTINGS
709 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500710 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500711
712 // OPEN: Settings > Users > [User settings]
713 // CATEGORY: SETTINGS
714 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500715 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500718 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500719
720 // OPEN: Settings > More > VPN
721 // CATEGORY: SETTINGS
722 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500723 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500724
725 // OPEN: Settings > Display > Choose wallpaper from
726 // CATEGORY: SETTINGS
727 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500728 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500729
730 // OPEN: Settings > Display > Cast
731 // CATEGORY: SETTINGS
732 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500733 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500734
735 // OPEN: Settings > Wi-Fi
736 // CATEGORY: SETTINGS
737 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500738 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500739
740 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
741 // CATEGORY: SETTINGS
742 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500743 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500744
745 // OPEN: Settings > More > Wi-Fi Calling
746 // CATEGORY: SETTINGS
747 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500748 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500749
750 // OPEN: Settings > Wi-Fi > Saved networks
751 // CATEGORY: SETTINGS
752 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500753 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500754
755 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500756 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500757
758 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500759 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
762 // CATEGORY: SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: Settings > More
767 // CATEGORY: SETTINGS
768 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500769 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500770
771 // OPEN: Quick Settings Panel
772 // CATEGORY: QUICK_SETTINGS
773 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500774 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500775
776 // OPEN: QS Airplane mode tile shown
777 // ACTION: QS Airplane mode tile tapped
778 // SUBTYPE: 0 is off, 1 is on
779 // CATEGORY: QUICK_SETTINGS
780 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500781 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500782
783 // OPEN: QS Bluetooth tile shown
784 // ACTION: QS Bluetooth tile tapped
785 // SUBTYPE: 0 is off, 1 is on
786 // CATEGORY: QUICK_SETTINGS
787 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500788 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500789
790 // OPEN: QS Cast tile shown
791 // ACTION: QS Cast tile tapped
792 // CATEGORY: QUICK_SETTINGS
793 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500794 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OPEN: QS Cellular tile shown
797 // ACTION: QS Cellular tile tapped
798 // CATEGORY: QUICK_SETTINGS
799 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500800 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // OPEN: QS Color inversion tile shown
803 // ACTION: QS Color inversion tile tapped
804 // SUBTYPE: 0 is off, 1 is on
805 // CATEGORY: QUICK_SETTINGS
806 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500807 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // OPEN: QS Cellular tile > Cellular detail panel
810 // CATEGORY: QUICK_SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // OPEN: QS Do not disturb tile shown
815 // ACTION: QS Do not disturb 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_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OPEN: QS Flashlight tile shown
822 // ACTION: QS Flashlight tile tapped
823 // SUBTYPE: 0 is off, 1 is on
824 // CATEGORY: QUICK_SETTINGS
825 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500826 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500827
828 // OPEN: QS Hotspot tile shown
829 // ACTION: QS Hotspot tile tapped
830 // SUBTYPE: 0 is off, 1 is on
831 // CATEGORY: QUICK_SETTINGS
832 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500833 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // OPEN: QS 3P tile shown
836 // ACTION: QS 3P tile tapped
837 // CATEGORY: QUICK_SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: QS Location tile shown
842 // ACTION: QS Location tile tapped
843 // SUBTYPE: 0 is off, 1 is on
844 // CATEGORY: QUICK_SETTINGS
845 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500846 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // OPEN: QS Rotation tile shown
849 // ACTION: QS Rotation tile tapped
850 // SUBTYPE: 0 is off, 1 is on
851 // CATEGORY: QUICK_SETTINGS
852 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500853 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500854
855 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500856 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500857
858 // OPEN: QS User list panel
859 // CATEGORY: QUICK_SETTINGS
860 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500861 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500862
863 // OPEN: QS WiFi tile shown
864 // ACTION: QS WiFi tile tapped
865 // SUBTYPE: 0 is off, 1 is on
866 // CATEGORY: QUICK_SETTINGS
867 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500868 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500869
870 // OPEN: Notification Panel (including lockscreen)
871 // CATEGORY: NOTIFICATION
872 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500873 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500874
875 // OPEN: Notification in panel became visible.
876 // PACKAGE: App that posted the notification.
877 // ACTION: Notification is tapped.
878 // PACKAGE: App that posted the notification
879 // DETAIL: Notification is expanded by user.
880 // PACKAGE: App that posted the notification
Esteban Talaveraf9c53b62018-11-14 18:20:29 +0000881 // COLLAPSE: Notification is collapsed by user.
882 // PACKAGE: App that posted the notification
Chris Wren7c516842016-03-01 16:44:32 -0500883 // DISMISS: Notification is dismissed.
884 // PACKAGE: App that posted the notification
885 // SUBTYPE: Dismiss reason from NotificationManagerService.java
886 // CATEGORY: NOTIFICATION
887 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500888 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500889
890 // ACTION: User tapped notification action
891 // PACKAGE: App that posted the notification
892 // SUBTYPE: Index of action on notification
893 // CATEGORY: NOTIFICATION
894 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500895 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500896
897 // OPEN: Settings > Apps > Configure apps > App permissions
898 // CATEGORY: SETTINGS
899 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500900 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500901
902 // OPEN: Settings > Location > Scanning
903 // CATEGORY: SETTINGS
904 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500905 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500906
907 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500908 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500909
910 // OPEN: Settings > Sound & notification > App notifications
911 // CATEGORY: SETTINGS
912 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500913 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500914
915 // ACTION: Settings > Wi-Fi > Overflow > Add Network
916 // CATEGORY: SETTINGS
917 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500918 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500919
920 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700921 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500922 // CATEGORY: SETTINGS
923 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500924 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // ACTION: Settings > Wi-Fi > Overflow > Refresh
927 // CATEGORY: SETTINGS
928 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500929 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500930
931 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
932 // CATEGORY: SETTINGS
933 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500934 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500935
936 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700937 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500938 // CATEGORY: SETTINGS
939 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500940 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500941
942 // ACTION: Settings > Wi-Fi > Toggle on
943 // CATEGORY: SETTINGS
944 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500945 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500946
947 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500948 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // OPEN: Settings > Sound & notification > DND > Priority only allows
951 // CATEGORY: SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // OPEN: Settings > Sound & notification > DND > Automatic rules
956 // CATEGORY: SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // OPEN: Settings > Apps > Configure apps > App links
961 // CATEGORY: SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // OPEN: Settings > Sound & notification > DND > [Time based rule]
966 // CATEGORY: SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // OPEN: Settings > Sound & notification > DND > [External rule]
971 // CATEGORY: SETTINGS
972 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500973 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500974
975 // OPEN: Settings > Sound & notification > DND > [Event rule]
976 // CATEGORY: SETTINGS
977 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500978 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500979
Howard Ro8b56f752018-08-07 15:44:25 -0700980 // ACTION: App notification settings > Block Notifications or long press on
981 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -0500982 // CATEGORY: SETTINGS
Howard Ro8b56f752018-08-07 15:44:25 -0700983 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -0500984 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500985
986 // ACTION: Notification shade > Dismiss all button
987 // CATEGORY: NOTIFICATION
988 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500989 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500990
991 // OPEN: QS Do Not Disturb detail panel
992 // CATEGORY: QUICK_SETTINGS
993 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500994 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500995
996 // OPEN: QS Bluetooth detail panel
997 // CATEGORY: QUICK_SETTINGS
998 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500999 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -05001000
1001 // OPEN: QS Cast detail panel
1002 // CATEGORY: QUICK_SETTINGS
1003 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001004 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // OPEN: QS Wi-Fi detail panel
1007 // CATEGORY: QUICK_SETTINGS
1008 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001009 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -05001010
1011 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
1012 // SUBTYPE: 0 is off, 1 is on
1013 // CATEGORY: QUICK_SETTINGS
1014 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001015 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -05001016
1017 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
1018 // SUBTYPE: 0 is off, 1 is on
1019 // CATEGORY: QUICK_SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: QS Cellular detail panel > Cellular toggle
1024 // SUBTYPE: 0 is off, 1 is on
1025 // CATEGORY: QUICK_SETTINGS
1026 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001027 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: QS User list panel > Select different user
1030 // CATEGORY: QUICK_SETTINGS
1031 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001032 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -05001033
1034 // ACTION: QS Cast detail panel > Select cast device
1035 // CATEGORY: QUICK_SETTINGS
1036 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001037 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // ACTION: QS Cast detail panel > Disconnect cast device
1040 // CATEGORY: QUICK_SETTINGS
1041 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001042 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // ACTION: Settings > Bluetooth > Toggle
1045 // SUBTYPE: 0 is off, 1 is on
1046 // CATEGORY: SETTINGS
1047 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001048 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // ACTION: Settings > Bluetooth > Overflow > Refresh
1051 // CATEGORY: SETTINGS
1052 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001053 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001054
1055 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1056 // CATEGORY: SETTINGS
1057 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001058 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001059
1060 // ACTION: Settings > Bluetooth > Overflow > Show received files
1061 // CATEGORY: SETTINGS
1062 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001063 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001064
1065 // ACTION: QS DND details panel > Increase / Decrease exit time
1066 // SUBTYPE: true is increase, false is decrease
1067 // CATEGORY: QUICK_SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // ACTION: QS DND details panel > [Exit condition]
1072 // CATEGORY: QUICK_SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: QS DND details panel > [DND mode]
1077 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1078 // CATEGORY: QUICK_SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: QS DND detail panel > DND toggle
1083 // SUBTYPE: 0 is off, 1 is on
1084 // CATEGORY: QUICK_SETTINGS
1085 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001086 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001087
1088 // ACTION: DND Settings > Priority only allows > Reminder toggle
1089 // SUBTYPE: 0 is off, 1 is on
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // ACTION: DND Settings > Priority only allows > Event toggle
1095 // SUBTYPE: 0 is off, 1 is on
1096 // CATEGORY: SETTINGS
1097 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001098 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001099
1100 // ACTION: DND Settings > Priority only allows > Messages
1101 // SUBTYPE: 0 is off, 1 is on
1102 // CATEGORY: SETTINGS
1103 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001104 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001105
1106 // ACTION: DND Settings > Priority only allows > Calls
1107 // SUBTYPE: 0 is off, 1 is on
1108 // CATEGORY: SETTINGS
1109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1113 // SUBTYPE: 0 is off, 1 is on
1114 // CATEGORY: SETTINGS
1115 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001116 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001117
1118 // ACTION: DND Settings > Automatic rules > Add rule
1119 // CATEGORY: SETTINGS
1120 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001121 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001122
1123 // ACTION: DND Settings > Automatic rules > Add rule > OK
1124 // CATEGORY: SETTINGS
1125 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001126 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001127
1128 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1129 // CATEGORY: SETTINGS
1130 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001131 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001132
1133 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1134 // CATEGORY: SETTINGS
1135 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001136 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001137
1138 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1139 // SUBTYPE: 0 is off, 1 is on
1140 // CATEGORY: SETTINGS
1141 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001142 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // ACTION: Settings > More > Airplane mode toggle
1145 // SUBTYPE: 0 is off, 1 is on
1146 // CATEGORY: SETTINGS
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // ACTION: Settings > Data usage > Cellular data toggle
1151 // SUBTYPE: 0 is off, 1 is on
1152 // CATEGORY: SETTINGS
1153 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001154 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // OPEN: Settings > Sound & notification > Notification access
1157 // CATEGORY: SETTINGS
1158 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001159 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001160
1161 // OPEN: Settings > Sound & notification > Do Not Disturb access
1162 // CATEGORY: SETTINGS
1163 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001164 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001165
1166 // OPEN: Settings > Apps > Configure apps > Default Apps
1167 // CATEGORY: SETTINGS
1168 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001169 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001170
1171 // OPEN: Settings > Internal storage > Apps storage
1172 // CATEGORY: SETTINGS
1173 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001174 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001175
1176 // OPEN: Settings > Security > Usage access
1177 // CATEGORY: SETTINGS
1178 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001179 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001180
1181 // OPEN: Settings > Battery > Battery optimization
1182 // CATEGORY: SETTINGS
1183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001184 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001185
1186 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001187 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001188
1189 // ACTION: Lockscreen > Unlock gesture
1190 // CATEGORY: GLOBAL_SYSTEM_UI
1191 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001192 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001193
1194 // ACTION: Lockscreen > Pull shade open
1195 // CATEGORY: GLOBAL_SYSTEM_UI
1196 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001197 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001198
1199 // ACTION: Lockscreen > Tap on lock, shows hint
1200 // CATEGORY: GLOBAL_SYSTEM_UI
1201 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001202 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001203
1204 // ACTION: Lockscreen > Camera
1205 // CATEGORY: GLOBAL_SYSTEM_UI
1206 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001207 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001208
1209 // ACTION: Lockscreen > Dialer
1210 // CATEGORY: GLOBAL_SYSTEM_UI
1211 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001212 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001213
1214 // ACTION: Lockscreen > Tap on lock, locks phone
1215 // CATEGORY: GLOBAL_SYSTEM_UI
1216 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001217 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // ACTION: Lockscreen > Tap on notification, false touch rejection
1220 // CATEGORY: GLOBAL_SYSTEM_UI
1221 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001222 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001223
1224 // ACTION: Lockscreen > Swipe down to open quick settings
1225 // CATEGORY: GLOBAL_SYSTEM_UI
1226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001227 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001228
1229 // ACTION: Swipe down to open quick settings when unlocked
1230 // CATEGORY: GLOBAL_SYSTEM_UI
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Notification shade > Tap to open quick settings
1235 // CATEGORY: GLOBAL_SYSTEM_UI
1236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001237 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001238
1239 // OPEN: Lockscreen
1240 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1241 // CATEGORY: GLOBAL_SYSTEM_UI
1242 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001243 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1246 // CATEGORY: GLOBAL_SYSTEM_UI
1247 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001248 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // OPEN: Screen turned on
1251 // SUBTYPE: 2 is user action
1252 // CATEGORY: GLOBAL_SYSTEM_UI
1253 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001254 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001255
1256 // OPEN: Notification caused sound, vibration, and/or LED blink
1257 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1258 // CATEGORY: NOTIFICATION
1259 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001260 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001261
1262 // ACTION: Lockscreen > Emergency Call button
1263 // CATEGORY: GLOBAL_SYSTEM_UI
1264 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001265 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001266
1267 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1268 // CATEGORY: SETTINGS
1269 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001270 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001271
1272 // OPEN: Settings > Memory
1273 // CATEGORY: SETTINGS
1274 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001275 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001276
1277 // ACTION: Settings > Display > When device is rotated
1278 // CATEGORY: SETTINGS
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // ACTION: Long press on notification to view controls
1283 // CATEGORY: NOTIFICATION
1284 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001285 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001286
1287 // ACTION: Notificatoin controls > Info button
1288 // CATEGORY: NOTIFICATION
1289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001290 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // ACTION: Notification controls > Settings button
1293 // CATEGORY: NOTIFICATION
1294 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001295 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001296
1297 // OPEN: Volume Dialog (with hardware buttons)
1298 // CATEGORY: GLOBAL_SYSTEM_UI
1299 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001300 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001301
1302 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1303 // CATEGORY: GLOBAL_SYSTEM_UI
1304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001305 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001306
1307 // ACTION: Volume dialog > Adjust volume slider
1308 // SUBTYPE: volume level (0-7)
1309 // CATEGORY: GLOBAL_SYSTEM_UI
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // ACTION: Volume dialog > Select non-active stream
1314 // SUBTYPE: stream (defined in AudioSystem.java)
1315 // CATEGORY: GLOBAL_SYSTEM_UI
1316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001317 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001318
1319 // ACTION: Adjust volume with hardware key
1320 // SUBTYPE: volume level (0-7)
1321 // CATEGORY: GLOBAL_SYSTEM_UI
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // ACTION: Volume dialog > Mute a stream by tapping icon
1326 // SUBTYPE: mute is 1, audible is 2
1327 // CATEGORY: GLOBAL_SYSTEM_UI
1328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001329 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001330
1331 // ACTION: Volume dialog > Change ringer mode by tapping icon
1332 // SUBTYPE: 2 is audible, 3 is vibrate
1333 // CATEGORY: GLOBAL_SYSTEM_UI
1334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001335 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001336
1337 // ACTION: Chooser shown (share target, file open, etc.)
1338 // CATEGORY: GLOBAL_SYSTEM_UI
1339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001340 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001341
1342 // ACTION: Chooser > User taps an app target
1343 // SUBTYPE: Index of target
1344 // CATEGORY: GLOBAL_SYSTEM_UI
1345 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001346 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001347
1348 // ACTION: Chooser > User taps a service target
1349 // SUBTYPE: Index of target
1350 // CATEGORY: GLOBAL_SYSTEM_UI
1351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001352 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // ACTION: Chooser > User taps a standard target
1355 // SUBTYPE: Index of target
1356 // CATEGORY: GLOBAL_SYSTEM_UI
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // ACTION: QS Brightness Slider (with auto brightness disabled)
1361 // SUBTYPE: slider value
1362 // CATEGORY: QUICK_SETTINGS
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // ACTION: QS Brightness Slider (with auto brightness enabled)
1367 // SUBTYPE: slider value
1368 // CATEGORY: QUICK_SETTINGS
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // OPEN: Settings > Display > Brightness Slider
1373 // CATEGORY: SETTINGS
1374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001375 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001376
Christine Franks47175c32017-03-14 10:21:25 -07001377 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001378 // CATEGORY: SETTINGS
1379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001380 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001381
1382 // OPEN: Display has entered dream mode
1383 // CATEGORY: GLOBAL_SYSTEM_UI
1384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001385 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001386
1387 // OPEN: Display has entered ambient notification mode
1388 // CATEGORY: GLOBAL_SYSTEM_UI
1389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001390 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001391
1392 // OPEN: Overview
1393 // CATEGORY: GLOBAL_SYSTEM_UI
1394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001395 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001396
1397 // OPEN: Settings > About phone > Legal information
1398 // CATEGORY: SETTINGS
1399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001400 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001401
1402 // OPEN: Settings > Search > Perform search
1403 // CATEGORY: SETTINGS
1404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001405 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001406
1407 // OPEN: Settings > System UI Tuner
1408 // CATEGORY: SETTINGS
1409 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001410 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001411
1412 // OPEN: Settings > System UI Tuner > Quick Settings
1413 // CATEGORY: SETTINGS
1414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001415 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001416
1417 // OPEN: Settings > System UI Tuner > Demo mode
1418 // CATEGORY: SETTINGS
1419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001420 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001421
1422 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1423 // PACKAGE: Tile
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1429 // PACKAGE: Tile
1430 // CATEGORY: SETTINGS
1431 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001432 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001433
1434 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1435 // PACKAGE: Tile
1436 // CATEGORY: SETTINGS
1437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001438 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001439
1440 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1441 // PACKAGE: Icon
1442 // CATEGORY: SETTINGS
1443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001444 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001445
1446 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1447 // PACKAGE: Icon
1448 // CATEGORY: SETTINGS
1449 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001450 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001451
1452 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1453 // SUBTYPE: false is disabled, true is enabled
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1459 // SUBTYPE: false is disabled, true is enabled
1460 // CATEGORY: SETTINGS
1461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001462 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001463
1464 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1465 // SUBTYPE: 0 is disabled, 1 is enabled
1466 // CATEGORY: SETTINGS
1467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001468 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001469
1470 // OPEN: Settings > Developer options > Inactive apps
1471 // CATEGORY: SETTINGS
1472 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001473 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001474
1475 // ACTION: Long press home to bring up assistant
1476 // CATEGORY: GLOBAL_SYSTEM_UI
1477 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001478 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001479
1480 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1481 // CATEGORY: SETTINGS
1482 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001483 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001484
1485 // OPEN: Fingerprint Enroll > Find Sensor
1486 // CATEGORY: SETTINGS
1487 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001488 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001489
1490 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1491 // CATEGORY: SETTINGS
1492 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001493 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001494
1495 // OPEN: Fingerprint Enroll introduction
1496 // CATEGORY: SETTINGS
1497 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001498 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001499
1500 // OPEN: Fingerprint Enroll onboarding
1501 // CATEGORY: SETTINGS
1502 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001503 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // OPEN: Fingerprint Enroll > Let's Start!
1506 // CATEGORY: SETTINGS
1507 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001508 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // OPEN: Fingerprint Enroll SUW > Let's Start!
1511 // CATEGORY: SETTINGS
1512 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001513 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001514
1515 // OPEN: Fingerprint Enroll SUW > Find Sensor
1516 // CATEGORY: SETTINGS
1517 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001518 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001519
1520 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1521 // CATEGORY: SETTINGS
1522 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001523 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001524
1525 // OPEN: Fingerprint Enroll SUW introduction
1526 // CATEGORY: SETTINGS
1527 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001528 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001529
1530 // OPEN: Fingerprint Enroll SUW onboarding
1531 // CATEGORY: SETTINGS
1532 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001533 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001534
1535 // ACTION: Add fingerprint > Enroll fingerprint
1536 // CATEGORY: SETTINGS
1537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001538 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001539
1540 // ACTION: Authenticate using fingerprint
1541 // CATEGORY: SETTINGS
1542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001543 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001544
1545 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1546 // CATEGORY: SETTINGS
1547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001548 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001549
1550 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1551 // CATEGORY: SETTINGS
1552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001553 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001554
1555 // ACTION: Double tap camera shortcut
1556 // CATEGORY: GLOBAL_SYSTEM_UI
1557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001558 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001559
1560 // ACTION: Double twist camera shortcut
1561 // CATEGORY: GLOBAL_SYSTEM_UI
1562 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001563 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001564
1565 // OPEN: QS Work Mode tile shown
1566 // ACTION: QS Work Mode tile tapped
1567 // SUBTYPE: 0 is off, 1 is on
1568 // CATEGORY: QUICK_SETTINGS
1569 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001570 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001571
1572 // OPEN: Settings > Developer Options > Background Check
1573 // CATEGORY: SETTINGS
1574 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001575 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001576
1577 // OPEN: QS Lock tile shown
1578 // ACTION: QS Lock tile tapped
1579 // SUBTYPE: 0 is off, 1 is on
1580 // CATEGORY: QUICK_SETTINGS
1581 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001582 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001583
1584 // OPEN: QS User Tile shown
1585 // CATEGORY: QUICK_SETTINGS
1586 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001587 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001588
1589 // OPEN: QS Battery tile shown
1590 // CATEGORY: QUICK_SETTINGS
1591 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001592 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001593
1594 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1595 // CATEGORY: SETTINGS
1596 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001597 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001598
1599 // ACTION: Visual interruptions > No screen interuptions toggle
1600 // SUBTYPE: 0 is off, 1 is on
1601 // CATEGORY: SETTINGS
1602 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001603 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001604
1605 // ACTION: Visual interruptions > No notification light toggle
1606 // SUBTYPE: 0 is off, 1 is on
1607 // CATEGORY: SETTINGS
1608 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001609 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001610
Julia Reynolds005c8b92017-08-24 10:35:53 -04001611 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001612 // CATEGORY: SETTINGS
1613 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001614 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001615
1616 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1617 // PACKAGE: Selected SMS app
1618 // CATEGORY: SETTINGS
1619 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001620 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001621
1622 // OPEN: QS Color modification tile shown
1623 // ACTION: QS Color modification tile tapped
1624 // SUBTYPE: 0 is off, 1 is on
1625 // CATEGORY: QUICK_SETTINGS
1626 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001627 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001628
1629 // OPEN: QS Custom tile shown
1630 // ACTION: QS Work Mode tile tapped
1631 // CATEGORY: QUICK_SETTINGS
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001634
1635 // ACTION: Visual interruptions > Never turn off the screen toggle
1636 // SUBTYPE: 0 is off, 1 is on
1637 // CATEGORY: SETTINGS
1638 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001639 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001640
Chris Wren7c516842016-03-01 16:44:32 -05001641 // ACTION: Overview > Long-press task, drag to enter split-screen
1642 // CATEGORY: GLOBAL_SYSTEM_UI
1643 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001644 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1645
Chris Wren7c516842016-03-01 16:44:32 -05001646 // ACTION: In App > Long-press Overview button to enter split-screen
1647 // CATEGORY: GLOBAL_SYSTEM_UI
1648 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001649 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1650
Chris Wren7c516842016-03-01 16:44:32 -05001651 // ACTION: In App > Swipe Overview button to enter split-screen
1652 // CATEGORY: GLOBAL_SYSTEM_UI
1653 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001654 ACTION_WINDOW_DOCK_SWIPE = 272;
1655
Chris Wren7c516842016-03-01 16:44:32 -05001656 // ACTION: Launch profile-specific app > Confirm credentials
1657 // CATEGORY: GLOBAL_SYSTEM_UI
1658 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001659 PROFILE_CHALLENGE = 273;
1660
Chris Wren7c516842016-03-01 16:44:32 -05001661 // OPEN: QS Battery detail panel
1662 // CATEGORY: GLOBAL_SYSTEM_UI
1663 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001664 QS_BATTERY_DETAIL = 274;
1665
Chris Wren7c516842016-03-01 16:44:32 -05001666 // OPEN: Overview > History
1667 // CATEGORY: GLOBAL_SYSTEM_UI
1668 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001669 OVERVIEW_HISTORY = 275;
1670
Chris Wren7c516842016-03-01 16:44:32 -05001671 // ACTION: Overview > Page by tapping Overview button
1672 // CATEGORY: GLOBAL_SYSTEM_UI
1673 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001674 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001675
Chris Wren7c516842016-03-01 16:44:32 -05001676 // ACTION: Overview > Select app
1677 // CATEGORY: GLOBAL_SYSTEM_UI
1678 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001679 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001680
Chris Wren7c516842016-03-01 16:44:32 -05001681 // ACTION: View emergency info
1682 // CATEGORY: GLOBAL_SYSTEM_UI
1683 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001684 ACTION_VIEW_EMERGENCY_INFO = 278;
1685
Chris Wren7c516842016-03-01 16:44:32 -05001686 // ACTION: Edit emergency info activity
1687 // CATEGORY: SETTINGS
1688 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001689 ACTION_EDIT_EMERGENCY_INFO = 279;
1690
Chris Wren7c516842016-03-01 16:44:32 -05001691 // ACTION: Edit emergency info field
1692 // CATEGORY: SETTINGS
1693 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001694 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1695
Chris Wren7c516842016-03-01 16:44:32 -05001696 // ACTION: Add emergency contact
1697 // CATEGORY: SETTINGS
1698 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001699 ACTION_ADD_EMERGENCY_CONTACT = 281;
1700
Chris Wren7c516842016-03-01 16:44:32 -05001701 // ACTION: Delete emergency contact
1702 // CATEGORY: SETTINGS
1703 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001704 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1705
Chris Wren7c516842016-03-01 16:44:32 -05001706 // ACTION: Call emergency contact
1707 // CATEGORY: SETTINGS
1708 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001709 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001710
Chris Wren7c516842016-03-01 16:44:32 -05001711 // OPEN: QS Data Saver tile shown
1712 // ACTION: QS Data Saver tile tapped
1713 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001714 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001715
Robin Lee8c1306e2016-02-01 11:37:02 +00001716 // OPEN: Settings > Security > User credentials
1717 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001718 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001719 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001720
Chris Wren7c516842016-03-01 16:44:32 -05001721 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1722 // CATEGORY: GLOBAL_SYSTEM_UI
1723 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001724 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001725
1726 // Logged when the user scrolls through overview manually
1727 OVERVIEW_SCROLL = 287;
1728
1729 // Logged when the overview times out automatically selecting an app
1730 OVERVIEW_SELECT_TIMEOUT = 288;
1731
1732 // Logged when a user dismisses a task in overview
1733 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001734
1735 // Logged when the user modifying the notification importance slider.
1736 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1737
1738 // Logged when the user saves a modification to notification importance. Negative numbers
1739 // indicate the user lowered the importance; positive means they increased it.
1740 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001741
Chris Wren7c516842016-03-01 16:44:32 -05001742 // ACTION: Long-press power button, then tap "Take bug report" option.
1743 // CATEGORY: GLOBAL_SYSTEM_UI
1744 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001745 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1746
Chris Wren7c516842016-03-01 16:44:32 -05001747 // ACTION: Long-press power button, then long-press "Take bug report" option.
1748 // CATEGORY: GLOBAL_SYSTEM_UI
1749 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001750 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1751
Chris Wren7c516842016-03-01 16:44:32 -05001752 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1753 // CATEGORY: SETTINGS
1754 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001755 // Interactive bug report initiated from Settings.
1756 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1757
Chris Wren7c516842016-03-01 16:44:32 -05001758 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1759 // CATEGORY: SETTINGS
1760 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001761 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001762 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1763
Chris Wren7c516842016-03-01 16:44:32 -05001764 // ACTION: User tapped notification action to cancel a bug report
1765 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001766 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001767 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1768
Chris Wren7c516842016-03-01 16:44:32 -05001769 // ACTION: User tapped notification action to launch bug report details screen
1770 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001771 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001772 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1773
Chris Wren7c516842016-03-01 16:44:32 -05001774 // ACTION: User tapped notification action to take adition screenshot on bug report
1775 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001776 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001777 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1778
Chris Wren7c516842016-03-01 16:44:32 -05001779 // ACTION: User tapped notification to share bug report
1780 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001781 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001782 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1783
Chris Wren7c516842016-03-01 16:44:32 -05001784 // ACTION: User changed bug report name using the details screen
1785 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001786 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001787 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1788
Chris Wren7c516842016-03-01 16:44:32 -05001789 // ACTION: User changed bug report title using the details screen
1790 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001791 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001792 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1793
Chris Wren7c516842016-03-01 16:44:32 -05001794 // ACTION: User changed bug report description using the details screen
1795 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001796 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001797 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1798
Chris Wren7c516842016-03-01 16:44:32 -05001799 // ACTION: User tapped Save in the bug report details screen.
1800 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001801 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001802 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1803
Chris Wren7c516842016-03-01 16:44:32 -05001804 // ACTION: User tapped Cancel in the bug report details screen.
1805 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001806 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001807 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001808
1809 // Tuner: Open/close calibrate dialog.
1810 TUNER_CALIBRATE_DISPLAY = 305;
1811
1812 // Tuner: Open/close color and appearance.
1813 TUNER_COLOR_AND_APPEARANCE = 306;
1814
1815 // Tuner: Apply calibrate dialog.
1816 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1817
1818 // Tuner: Open/close night mode.
1819 TUNER_NIGHT_MODE = 308;
1820
1821 // Tuner: Change night mode.
1822 ACTION_TUNER_NIGHT_MODE = 309;
1823
1824 // Tuner: Change night mode auto.
1825 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1826
1827 // Tuner: Change night mode adjust dark theme.
1828 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1829
1830 // Tuner: Change night mode adjust tint.
1831 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1832
1833 // Tuner: Change night mode adjust brightness.
1834 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1835
1836 // Tuner: Change do not disturb in volume panel.
1837 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1838
1839 // Tuner: Change do not disturb volume buttons shortcut.
1840 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001841
1842 // Logs the action the user takes when an app crashed.
1843 ACTION_APP_CRASH = 316;
1844
1845 // Logs the action the user takes when an app ANR'd.
1846 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001847
1848 // Logged when a user double taps the overview button to launch the previous task
1849 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001850
1851 // Logged when we execute an app transition. This indicates the total delay from startActivity
1852 // until the app transition is starting to animate, in milliseconds.
1853 APP_TRANSITION_DELAY_MS = 319;
1854
1855 // Logged when we execute an app transition. This indicates the reason why the transition
1856 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1857 APP_TRANSITION_REASON = 320;
1858
1859 // Logged when we execute an app transition and we drew a starting window. This indicates the
1860 // delay from startActivity until the starting window was drawn.
1861 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1862
1863 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1864 // the delay from startActivity until all windows have been drawn.
1865 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1866
1867 // Logged when we execute an app transition. This indicates the component name of the current
1868 // transition.
1869 APP_TRANSITION_COMPONENT_NAME = 323;
1870
1871 // Logged when we execute an app transition. This indicates whether the process was already
1872 // running.
1873 APP_TRANSITION_PROCESS_RUNNING = 324;
1874
1875 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1876 // the transition was executed.
1877 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001878
Chris Wren38f98812016-07-13 14:28:40 -04001879 // ACTION: app requested access to a scoped directory, user granted it.
1880 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1881 // CATEGORY: GLOBAL_SYSTEM_UI
1882 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001883 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1884
Chris Wren38f98812016-07-13 14:28:40 -04001885 // ACTION: app requested access to a scoped directory, user denied it.
1886 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1887 // CATEGORY: GLOBAL_SYSTEM_UI
1888 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001889 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1890
Chris Wren38f98812016-07-13 14:28:40 -04001891 // ACTION: app requested access to a scoped directory, user granted it.
1892 // PACKAGE: app that requested access
1893 // CATEGORY: GLOBAL_SYSTEM_UI
1894 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001895 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1896
Chris Wren38f98812016-07-13 14:28:40 -04001897 // ACTION: app requested access to a scoped directory, user denied it.
1898 // PACKAGE: app that requested access.
1899 // CATEGORY: GLOBAL_SYSTEM_UI
1900 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001901 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1902
Chris Wren38f98812016-07-13 14:28:40 -04001903 // ACTION: app requested access to a directory user has already been granted
1904 // access before.
1905 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1906 // CATEGORY: GLOBAL_SYSTEM_UI
1907 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001908 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1909
Chris Wren38f98812016-07-13 14:28:40 -04001910 // ACTION: app requested access to a directory user has already been granted
1911 // access before.
1912 // PACKAGE: app that requested access.
1913 // CATEGORY: GLOBAL_SYSTEM_UI
1914 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001915 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001916
Chris Wren38f98812016-07-13 14:28:40 -04001917 // ACTION: Logged when the user slides a notification and reveals the gear
1918 // beneath it.
1919 // CATEGORY: NOTIFICATION
1920 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001921 ACTION_REVEAL_GEAR = 332;
1922
Chris Wren38f98812016-07-13 14:28:40 -04001923 // ACTION: Logged when the user taps on the gear beneath a notification.
1924 // CATEGORY: NOTIFICATION
1925 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001926 ACTION_TOUCH_GEAR = 333;
1927
Ruben Brunke24b9a62016-02-16 21:38:24 -08001928 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001929 // CATEGORY: SETTINGS
1930 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001931 VR_MANAGE_LISTENERS = 334;
1932
Jason Monk6f5354d2016-03-08 14:18:08 -05001933 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001934 // CATEGORY: SETTINGS
1935 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001936 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001937
Jason Monk6f5354d2016-03-08 14:18:08 -05001938 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001939 // CATEGORY: SETTINGS
1940 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001941 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001942
Jason Monk6f5354d2016-03-08 14:18:08 -05001943 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001944 // CATEGORY: SETTINGS
1945 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001946 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001947
Jason Monk6f5354d2016-03-08 14:18:08 -05001948 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001949 // CATEGORY: SETTINGS
1950 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001951 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001952
Jason Monk6f5354d2016-03-08 14:18:08 -05001953 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001954 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001955 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001956
Jason Monk6f5354d2016-03-08 14:18:08 -05001957 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001958 // CATEGORY: SETTINGS
1959 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001960 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001961
Jason Monk6f5354d2016-03-08 14:18:08 -05001962 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001963 // CATEGORY: SETTINGS
1964 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001965 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001966
Jason Monk6f5354d2016-03-08 14:18:08 -05001967 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001968 // CATEGORY: SETTINGS
1969 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001970 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001971
Jason Monk6f5354d2016-03-08 14:18:08 -05001972 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001973 // CATEGORY: SETTINGS
1974 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001975 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001976
Jason Monk6f5354d2016-03-08 14:18:08 -05001977 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001978 // CATEGORY: SETTINGS
1979 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001980 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001981
Jason Monk6f5354d2016-03-08 14:18:08 -05001982 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001983 // CATEGORY: SETTINGS
1984 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001985 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001986
Jason Monk6f5354d2016-03-08 14:18:08 -05001987 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001988 // CATEGORY: SETTINGS
1989 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001990 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001991
Jason Monk6f5354d2016-03-08 14:18:08 -05001992 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001993 // CATEGORY: SETTINGS
1994 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001995 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001996
Jason Monk6f5354d2016-03-08 14:18:08 -05001997 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001998 // CATEGORY: SETTINGS
1999 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002000 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04002001
Jason Monk6f5354d2016-03-08 14:18:08 -05002002 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04002003 // CATEGORY: SETTINGS
2004 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002005 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
2006
2007 // Used for generic logging of Settings Preference Persistence, should not be used
2008 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04002009 // CATEGORY: SETTINGS
2010 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002011 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04002012
Jason Monk6f5354d2016-03-08 14:18:08 -05002013 // Settings -> Apps -> Gear -> Special access
2014 SPECIAL_ACCESS = 351;
2015
Muyuan Lia2129992016-03-03 18:30:39 -08002016 // Logs that the user docks window via shortcut key.
2017 WINDOW_DOCK_SHORTCUTS = 352;
2018
Felipe Lemeadccb992016-03-09 17:40:49 -08002019 // User already denied access to the request folder; action takes an integer
2020 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002021 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002022 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
2023
2024 // User already denied access to the request folder; action pass package name
2025 // of calling package.
2026 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
2027
2028 // User denied access to the request folder and checked 'Do not ask again';
2029 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002030 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002031 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
2032
2033 // User denied access to the request folder and checked 'Do not ask again';
2034 // action pass package name of calling package.
2035 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2036
Winson3b6ba1a2016-03-22 15:37:54 -07002037 // Logged when a user dismisses all task in overview
2038 OVERVIEW_DISMISS_ALL = 357;
2039
Jason Monk96defbe2016-03-29 16:51:03 -04002040 // Quick Settings -> Edit
2041 QS_EDIT = 358;
2042
2043 // Quick Settings -> Edit -> Overflow -> Reset
2044 ACTION_QS_EDIT_RESET = 359;
2045
2046 // QS -> Edit - Drag a tile out of the active tiles.
2047 // The _SPEC contains either the spec of the tile or
2048 // the package of the 3rd party app in the PKG field.
2049 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2050 ACTION_QS_EDIT_REMOVE = 361;
2051
2052 // QS -> Edit - Drag a tile into the active tiles.
2053 // The _SPEC contains either the spec of the tile or
2054 // the package of the 3rd party app in the PKG field.
2055 ACTION_QS_EDIT_ADD_SPEC = 362;
2056 ACTION_QS_EDIT_ADD = 363;
2057
2058 // QS -> Edit - Drag a tile within the active tiles.
2059 // The _SPEC contains either the spec of the tile or
2060 // the package of the 3rd party app in the PKG field.
2061 ACTION_QS_EDIT_MOVE_SPEC = 364;
2062 ACTION_QS_EDIT_MOVE = 365;
2063
2064 // Long-press on a QS tile. Tile spec in package field.
2065 ACTION_QS_LONG_PRESS = 366;
2066
Anna Galuszadad131f2016-03-22 13:49:02 -07002067 // OPEN: SUW Welcome Screen -> Vision Settings
2068 // CATEGORY: SETTINGS
2069 // OS: N
2070 SUW_ACCESSIBILITY = 367;
2071
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002072 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2073 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2074 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002075 // ACTION: New magnification gesture configuration is chosen
2076 // SUBTYPE: 0 is off, 1 is on
2077 // CATEGORY: SETTINGS
2078 // OS: N
2079 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2080
2081 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2082 // ACTION: New font size is chosen
2083 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2084 // CATEGORY: SETTINGS
2085 // OS: N
2086 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2087
2088 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2089 // ACTION: New display size is chosen
2090 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2091 // CATEGORY: SETTINGS
2092 // OS: N
2093 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2094
2095 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2096 // ACTION: New screen reader configuration is chosen
2097 // SUBTYPE: 0 is off, 1 is on
2098 // CATEGORY: SETTINGS
2099 // OS: N
2100 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2101
Jason Monkc3620392016-03-30 15:46:03 -04002102 // ------- Begin N Settings conditionals -----
2103 // Conditionals are the green bars at the top of the settings dashboard
2104 // All conditionals will have visible/hide events onResume/onPause
2105 // but they will also be used as extra ints in the
2106 // dismiss/expand/collapse/click/button events
2107
2108 // swipe away conditional
2109 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2110
2111 // click on collapsed conditional or clicks expand button
2112 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2113
2114 // click collapse button on expanded conditional
2115 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2116
2117 // click main area of expanded conditional
2118 ACTION_SETTINGS_CONDITION_CLICK = 375;
2119
2120 // click a direct button on expanded conditional
2121 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2122
2123 // Airplane mode on
2124 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2125 // AKA Data saver on
2126 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2127 // Battery saver on
2128 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2129 // Cellular data off
2130 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2131 // Do not disturb on
2132 SETTINGS_CONDITION_DND = 381;
2133 // Hotspot on
2134 SETTINGS_CONDITION_HOTSPOT = 382;
2135 // Work profile off
2136 SETTINGS_CONDITION_WORK_MODE = 383;
2137
Jason Monk1b5d87b2016-03-30 16:03:15 -04002138 // ------- Begin N Settings suggestions -----
2139 // Since suggestions come from system apps, suggestions will
2140 // have generic constants and the package providing the suggestion
2141 // will be put in the package field. For suggestions in the Settings
2142 // package, the class name will be filled in instead (since settings
2143 // provides several suggetions).
2144
2145 // Settings shown/hidden on main settings dashboard.
2146 // These are actually visibility events, but visible/hidden doesn't
2147 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002148 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2149 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002150
2151 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002152 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002153
2154 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002155 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002156
Jason Monk397df682016-03-28 15:48:34 -04002157 // Settings > Apps > Gear > Special Access > Premium SMS access
2158 PREMIUM_SMS_ACCESS = 388;
2159
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002160 // Logged when the user resizes the docked stack. Arguments:
2161 // 0: Split 50:50
2162 // 1: Docked smaller
2163 // 2: Docked larger
2164 ACTION_WINDOW_DOCK_RESIZE = 389;
2165
2166 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2167 // 0: Docked gets maximized
2168 // 1: Fullscreen gets maximized
2169 ACTION_WINDOW_UNDOCK_MAX = 390;
2170
2171 // User tried to dock an unresizable app.
2172 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2173
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002174 // System UI Tuner > Other > Power notification controls
2175 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2176
2177 // System UI Tuner > Other > Power notification controls > Toggle on/off
2178 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2179
Chris Wren38f98812016-07-13 14:28:40 -04002180 // Action: user enable / disabled data saver using Settings
2181 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2182 // VALUE: 1 for enabled, 0 for disabled
2183 // CATEGORY: SETTINGS
2184 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002185 ACTION_DATA_SAVER_MODE = 394;
2186
Chris Wren38f98812016-07-13 14:28:40 -04002187 // User whitelisted an app for Data Saver mode; action pass package name of app
2188 // Action: user enable / disabled data saver using Settings
2189 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2190 // or
2191 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2192 // VALUE: package name of APP
2193 // CATEGORY: SETTINGS
2194 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002195 ACTION_DATA_SAVER_WHITELIST = 395;
2196
Chris Wren38f98812016-07-13 14:28:40 -04002197 // User blacklisted an app for Data Saver mode; action pass package name of app
2198 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2199 // VALUE: package name of APP
2200 // CATEGORY: SETTINGS
2201 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002202 ACTION_DATA_SAVER_BLACKLIST = 396;
2203
Adrian Roosceeb04c2016-04-25 14:00:54 -07002204 // User opened a remote input view associated with a notification. Passes package name of app
2205 // that posted the notification. Note that this can also happen transiently during notification
2206 // reinflation.
2207 ACTION_REMOTE_INPUT_OPEN = 397;
2208
2209 // User attempt to send data through a remote input view associated with a notification.
2210 // Passes package name of app that posted the notification. May succeed or fail.
2211 ACTION_REMOTE_INPUT_SEND = 398;
2212
2213 // Failed attempt to send data through a remote input view associated with a
2214 // notification. Passes package name of app that posted the notification.
2215 ACTION_REMOTE_INPUT_FAIL = 399;
2216
2217 // User closed a remote input view associated with a notification. Passes package name of app
2218 // that posted the notification. Note that this can also happen transiently during notification
2219 // reinflation.
2220 ACTION_REMOTE_INPUT_CLOSE = 400;
2221
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002222 // OPEN: Settings > Accounts > Work profile settings
2223 // CATEGORY: SETTINGS
2224 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2225
Jason Monk25118d12016-05-10 13:25:50 -04002226 // Settings -> Dev options -> Convert to file encryption
2227 CONVERT_FBE = 402;
2228
2229 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2230 CONVERT_FBE_CONFIRM = 403;
2231
2232 // Settings -> Dev options -> Running services
2233 RUNNING_SERVICES = 404;
2234
Jason Monka1f697f2016-05-06 15:09:44 -04002235 // The dialog shown by 3P intent to change current webview implementation.
2236 WEBVIEW_IMPLEMENTATION = 405;
2237
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002238 // Settings launched from expanded quick settings.
2239 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2240
Chris Wren698b1702016-05-23 11:16:32 -04002241 // Notification expansion state toggled by the expand affordance.
2242 ACTION_NOTIFICATION_EXPANDER = 407;
2243
2244 // Notification group expansion state toggled by the expand affordance.
2245 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2246
Chris Wren7ee84182016-05-27 13:34:02 -04002247
Chris Wren6abeeb92016-05-26 14:44:38 -04002248 // Notification expansion state toggled by the expand gesture.
2249 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2250
2251 // Notification group expansion state toggled by the expand gesture.
2252 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2253
Bhavik Singh3451da42016-06-01 18:25:59 -07002254 // User performs gesture that activates the ambient display
2255 // 1: Gesture performed is Nudge
2256 // 2: Gesture performed is Pickup
2257 // 4: Gesture performed is Double Tap
Lucas Dupinc81702e2018-08-09 15:41:55 -07002258 // 6: Gesture performed is Reach
Bhavik Singh3451da42016-06-01 18:25:59 -07002259 ACTION_AMBIENT_GESTURE = 411;
2260
Jason Monk9fa5f822016-05-11 10:26:31 -04002261 // ---- End N Constants, all N constants go above this line ----
2262
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002263 // ------- Begin N App Disambig Shade -----
2264 // Application disambig shade opened or closed with a featured app.
2265 // These are actually visibility events, but visible/hidden doesn't
2266 // take a package, so these are being logged as actions.
2267 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002268 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2269 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002270
2271 // Application disambig shade opened or closed without a featured app.
2272 // These are actually visibility events, but visible/hidden doesn't
2273 // take a package, so these are being logged as actions.
2274 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002275 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2276 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002277
2278 // User opens in an app by pressing “Always” in the application disambig shade.
2279 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002280 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002281
2282 // User opens in an app by pressing “Just Once” in the application disambig shade.
2283 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002284 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002285
2286 // User opens in an app by tapping on its name in the application disambig shade.
2287 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002288 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002289
Daniel Nishi010aa492016-05-11 09:42:24 -07002290 // OPEN: Settings > Internal storage > Storage manager
2291 // CATEGORY: SETTINGS
2292 STORAGE_MANAGER_SETTINGS = 458;
2293
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002294 // OPEN: Settings -> Gestures
2295 // CATEGORY: SETTINGS
2296 SETTINGS_GESTURES = 459;
2297
Daniel Nishi597e67f2016-05-18 13:56:13 -07002298 // ------ Begin Deletion Helper ------
2299 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2300 // SUBTYPE: false is off, true is on
2301 // CATEGORY: SETTINGS
2302 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002303
Daniel Nishi597e67f2016-05-18 13:56:13 -07002304 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2305 // SUBTYPE: false is off, true is on
2306 // CATEGORY: SETTINGS
2307 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2308
2309 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2310 // CATEGORY: SETTINGS
2311 // PACKAGE: Unchecked app
2312 ACTION_DELETION_SELECTION_APP_ON = 462;
2313
2314 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2315 // CATEGORY: SETTINGS
2316 // PACKAGE: Checked app
2317 ACTION_DELETION_SELECTION_APP_OFF = 463;
2318
2319 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2320 // SUBTYPE: false is expanded, true is collapsed
2321 // CATEGORY: SETTINGS
2322 ACTION_DELETION_APPS_COLLAPSED = 464;
2323
2324 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2325 // SUBTYPE: false is off, true is on
2326 // CATEGORY: SETTINGS
2327 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2328
2329 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2330 // SUBTYPE: false is expanded, true is collapsed
2331 // CATEGORY: SETTINGS
2332 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2333
2334 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2335 // CATEGORY: SETTINGS
2336 ACTION_DELETION_HELPER_CLEAR = 467;
2337
2338 // ACTION: Settings > Storage > Free Up Space > Cancel
2339 // CATEGORY: SETTINGS
2340 ACTION_DELETION_HELPER_CANCEL = 468;
2341
2342 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2343 // CATEGORY: SETTINGS
2344 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2345
2346 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2347 // CATEGORY: SETTINGS
2348 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2349
2350 // Deletion helper encountered an error during package deletion.
2351 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2352
2353 // Deletion helper encountered an error during downloads folder deletion.
2354 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2355
2356 // Deletion helper encountered an error during photo and video deletion.
2357 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2358
Fan Zhang5e956e82016-05-06 10:51:47 -07002359 // OPEN: Settings (root page if there are multiple tabs)
2360 // CATEGORY: SETTINGS
2361 DASHBOARD_CONTAINER = 474;
2362
2363 // OPEN: Settings -> SUPPORT TAB
2364 // CATEGORY: SETTINGS
2365 SUPPORT_FRAGMENT = 475;
2366
2367 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002368 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002369 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002370
2371 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002372 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002373 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2374
Fan Zhanga1985502016-06-16 16:48:38 -07002375 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002376 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002377 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2378
2379 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002380 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002381 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2382
2383 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002384 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002385 ACTION_SUPPORT_SIGN_IN = 480;
2386
2387 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002388 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002389 ACTION_SUPPORT_PHONE = 481;
2390
2391 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002392 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002393 ACTION_SUPPORT_CHAT = 482;
2394
2395 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002396 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002397 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2398
2399 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002400 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002401 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2402
Fan Zhang80807212016-06-30 12:26:55 -07002403 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002404 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002405 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2406
2407 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002408 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002409 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2410
2411 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002412 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002413 ACTION_SUPPORT_DIAL_TOLLED = 487;
2414
Justin Klaassen19494272016-07-18 21:38:24 -07002415 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002416 // CATEGORY: SETTINGS
2417 NIGHT_DISPLAY_SETTINGS = 488;
2418
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002419 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002420 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002421 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2422
Jason Monk484fd362016-07-13 15:24:32 -04002423 // Settings launched from collapsed quick settings.
2424 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2425
Justin Klaassen19494272016-07-18 21:38:24 -07002426 // OPEN: QS Night Light tile shown
2427 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002428 // SUBTYPE: 0 is off, 1 is on
2429 // CATEGORY: QUICK_SETTINGS
2430 QS_NIGHT_DISPLAY = 491;
2431
Justin Klaassen19494272016-07-18 21:38:24 -07002432 // Night Light on
2433 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2434
Doris Ling3c00afb2016-07-19 17:04:21 -07002435 // System navigation key up.
2436 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2437
2438 // System navigation key down.
2439 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2440
Doris Ling6dd3e462016-08-04 13:17:27 -07002441 // OPEN: Settings > Display -> Ambient Display
2442 // CATEGORY: SETTINGS
2443 ACTION_AMBIENT_DISPLAY = 495;
2444
Adrian Roos159ef7b2016-02-25 11:58:32 -08002445 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2446
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002447 // ACTION: The lockscreen gets shown because the SIM card was removed
2448 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2449 // CATEGORY: GLOBAL_SYSTEM_UI
2450 // OS: N-MR2
2451 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2452
2453 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2454
Clara Bayarric17a5982016-04-15 12:26:47 +01002455 // ------- Begin N Keyboard Shortcuts Helper -----
2456 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002457 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002458
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002459 // OPEN: Print Preview screen
2460 // Package: Package of app where print job is from
2461 PRINT_PREVIEW = 501;
2462
2463 // OPEN: User expands full print job options shade in print preview.
2464 PRINT_JOB_OPTIONS = 502;
2465
2466 // OPEN: “All Printers” screen for selecting printer
2467 // Subtype: # of printers listed
2468 PRINT_ALL_PRINTERS = 503;
2469
2470 // OPEN: “Add Printers” screen for adding printers
2471 // Subtype: # of enabled print service listed
2472 PRINT_ADD_PRINTERS = 504;
2473
2474 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2475 // Package: Package of print service.
2476 ACTION_PRINT = 505;
2477
2478 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2479 // Count all ACTION_PRINTER_SELECT_ALL actions.
2480 // Package: Package of print service tied to printer
2481 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2482
2483 // ACTION: User selects a printer from the “All printers” screen.
2484 // Package: Package of print service tied to printer
2485 ACTION_PRINTER_SELECT_ALL = 507;
2486
2487 // ACTION: User changes an option for the print job from print preview.
2488 // Subtype: 1: Copies
2489 // 2: Color mode
2490 // 3: Duplex mode
2491 // 4: Media (==Paper) size
2492 // 5: Orientation
2493 // 6: Page range
2494 // Package: Package of print service tied to printer
2495 ACTION_PRINT_JOB_OPTIONS = 508;
2496
2497 // ACTION: User searches for printer from All Printers
2498 ACTION_PRINTER_SEARCH = 509;
2499
2500 // ACTION: User selects “Add print service” button from All Printers
2501 ACTION_PRINT_SERVICE_ADD = 510;
2502
2503 // ACTION: User Enables/Disables Print Service via any means.
2504 // Subtype: 0: Enabled
2505 // 1: Disabled
2506 ACTION_PRINT_SERVICE_TOGGLE = 511;
2507
2508 // ACTION: User installs print recommended print service
2509 // Package: Package of print service
2510 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2511
Doris Ling88a6b162016-08-08 16:17:43 -07002512 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2513 // SUBTYPE: sub settings classname
2514 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2515
Fan Zhang92c60382016-08-08 14:03:53 -07002516 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2517 USER_DICTIONARY_SETTINGS = 514;
2518
2519 // OPEN: Settings > Date & time > Select time zone
2520 ZONE_PICKER = 515;
2521
2522 // OPEN: Settings > Security > Device administrators
2523 DEVICE_ADMIN_SETTINGS = 516;
2524
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002525 // ACTION: Managed provisioning was launched to set this package as DPC app.
2526 // PACKAGE: DPC's package name.
2527 PROVISIONING_DPC_PACKAGE_NAME = 517;
2528
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002529 // ACTION: Managed provisioning triggered DPC installation.
2530 // PACKAGE: Package name of package which installed DPC.
2531 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2532
2533 // ACTION: Logged when provisioning activity finishes.
2534 // TIME: Indicates time taken by provisioning activity to finish in MS.
2535 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2536
2537 // ACTION: Logged when preprovisioning activity finishes.
2538 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2539 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2540
2541 // ACTION: Logged when encrypt device activity finishes.
2542 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2543 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2544
2545 // ACTION: Logged when web activity finishes.
2546 // TIME: Indicates total time taken by web activity to finish in MS.
2547 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2548
2549 // ACTION: Logged when trampoline activity finishes.
2550 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2551 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2552
2553 // ACTION: Logged when encryption activity finishes.
2554 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2555 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2556
2557 // ACTION: Logged when finalization activity finishes.
2558 // TIME: Indicates time taken by finalization activity to finish in MS.
2559 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002560
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002561 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002562 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002563
Fan Zhang95094182016-08-24 18:14:16 -07002564 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002565 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002566
2567 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002568 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002569
2570 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002571 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002572
2573 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002574 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002575
2576 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002577 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002578
Fan Zhangc1352ae2016-09-16 12:46:11 -07002579 // OPEN: Settings > Security > Use one lock dialog
2580 DIALOG_UNIFICATION_CONFIRMATION = 532;
2581
2582 // OPEN: Settings > Security > User Credential
2583 DIALOG_USER_CREDENTIAL = 533;
2584
2585 // OPEN: Settings > Accounts > Remove account
2586 DIALOG_REMOVE_USER = 534;
2587
2588 // OPEN: Settings > Accounts > Confirm auto sync dialog
2589 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2590
2591 // OPEN: Settings > Apps > Dialog for running service details
2592 DIALOG_RUNNIGN_SERVICE = 536;
2593
2594 // OPEN: Settings > Dialog for hiding home settings
2595 DIALOG_NO_HOME = 537;
2596
2597 // OPEN: Settings > Bluetooth > Rename this device
2598 DIALOG_BLUETOOTH_RENAME = 538;
2599
2600 // OPEN: Settings > Bluetooth > Paired device profile
2601 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2602
2603 // OPEN: Settings > Battery optimization > details for app
2604 DIALOG_HIGH_POWER_DETAILS = 540;
2605
2606 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2607 DIALOG_KEYBOARD_LAYOUT = 541;
2608
2609 // OPEN: Settings > Wifi > WPS Setup dialog
2610 DIALOG_WPS_SETUP = 542;
2611
2612 // OPEN: Settings > WIFI Scan permission dialog
2613 DIALOG_WIFI_SCAN_MODE = 543;
2614
2615 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2616 DIALOG_WIFI_SKIP = 544;
2617
2618 // OPEN: Settings > Wireless > VPN > Config dialog
2619 DIALOG_LEGACY_VPN_CONFIG = 545;
2620
2621 // OPEN: Settings > Wireless > VPN > Config dialog for app
2622 DIALOG_VPN_APP_CONFIG = 546;
2623
2624 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2625 DIALOG_VPN_CANNOT_CONNECT = 547;
2626
2627 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2628 DIALOG_VPN_REPLACE_EXISTING = 548;
2629
2630 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2631 DIALOG_BILLING_CYCLE = 549;
2632
2633 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2634 DIALOG_BILLING_BYTE_LIMIT = 550;
2635
2636 // OPEN: Settings > Billing cycle > turn on data limit dialog
2637 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2638
2639 // OPEN: Settings > Service > Turn off notification access dialog
2640 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2641
2642 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2643 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2644
2645 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2646 DIALOG_ZEN_ACCESS_GRANT = 554;
2647
2648 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2649 DIALOG_ZEN_ACCESS_REVOKE = 555;
2650
2651 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2652 DIALOG_ZEN_TIMEPICKER = 556;
2653
2654 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2655 DIALOG_SERVICE_ACCESS_WARNING = 557;
2656
2657 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2658 DIALOG_APP_INFO_ACTION = 558;
2659
2660 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2661 DIALOG_VOLUME_FORGET = 559;
2662
2663 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2664 DIALOG_VOLUME_SLOW_WARNING = 560;
2665
2666 // OPEN: Settings > Storage > Dialog for initializing a volume
2667 DIALOG_VOLUME_INIT = 561;
2668
2669 // OPEN: Settings > Storage > Dialog for unmounting a volume
2670 DIALOG_VOLUME_UNMOUNT = 562;
2671
2672 // OPEN: Settings > Storage > Dialog for renaming a volume
2673 DIALOG_VOLUME_RENAME = 563;
2674
2675 // OPEN: Settings > Storage > Dialog for clear cache
2676 DIALOG_STORAGE_CLEAR_CACHE = 564;
2677
2678 // OPEN: Settings > Storage > Dialog for system info
2679 DIALOG_STORAGE_SYSTEM_INFO = 565;
2680
2681 // OPEN: Settings > Storage > Dialog for other info
2682 DIALOG_STORAGE_OTHER_INFO = 566;
2683
2684 // OPEN: Settings > Storage > Dialog for user info
2685 DIALOG_STORAGE_USER_INFO = 567;
2686
2687 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2688 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2689
2690 // OPEN: Settings > Add fingerprint > Error dialog
2691 DIALOG_FINGERPINT_ERROR = 569;
2692
2693 // OPEN: Settings > Fingerprint > Rename or delete dialog
2694 DIALOG_FINGERPINT_EDIT = 570;
2695
2696 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2697 DIALOG_FINGERPINT_DELETE_LAST = 571;
2698
2699 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2700 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2701
2702 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2703 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2704
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002705 // OPEN: Settings > Proxy Selector error dialog
2706 DIALOG_PROXY_SELECTOR_ERROR = 574;
2707
2708 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2709 DIALOG_WIFI_P2P_DISCONNECT = 575;
2710
2711 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2712 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2713
2714 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2715 DIALOG_WIFI_P2P_RENAME = 577;
2716
2717 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2718 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2719
2720 // OPEN: Settings > APN > Restore default dialog
2721 DIALOG_APN_RESTORE_DEFAULT = 579;
2722
2723 // OPEN: Settings > Dream > When to dream dialog
2724 DIALOG_DREAM_START_DELAY = 580;
2725
2726 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2727 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2728
2729 // OPEN: Settings > Tether > AP setting dialog
2730 DIALOG_AP_SETTINGS = 582;
2731
2732 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2733 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2734
2735 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2736 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2737
2738 // OPEN: Settings > Account > Remove account dialog
2739 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2740
2741 // OPEN: Settings > Account > Remove account failed dialog
2742 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2743
2744 // OPEN: Settings > Account > Cannot do onetime sync dialog
2745 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2746
2747 // OPEN: Settings > Display > Night light > Set start time dialog
2748 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2749
2750 // OPEN: Settings > Display > Night light > Set end time dialog
2751 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2752
2753 // OPEN: Settings > User > Edit info dialog
2754 DIALOG_USER_EDIT = 590;
2755
2756 // OPEN: Settings > User > Confirm remove dialog
2757 DIALOG_USER_REMOVE = 591;
2758
2759 // OPEN: Settings > User > Enable calling dialog
2760 DIALOG_USER_ENABLE_CALLING = 592;
2761
2762 // OPEN: Settings > User > Enable calling and sms dialog
2763 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2764
2765 // OPEN: Settings > User > Cannot manage device message dialog
2766 DIALOG_USER_CANNOT_MANAGE = 594;
2767
2768 // OPEN: Settings > User > Add user dialog
2769 DIALOG_USER_ADD = 595;
2770
2771 // OPEN: Settings > User > Setup user dialog
2772 DIALOG_USER_SETUP = 596;
2773
2774 // OPEN: Settings > User > Setup profile dialog
2775 DIALOG_USER_SETUP_PROFILE = 597;
2776
2777 // OPEN: Settings > User > Choose user type dialog
2778 DIALOG_USER_CHOOSE_TYPE = 598;
2779
2780 // OPEN: Settings > User > Need lockscreen dialog
2781 DIALOG_USER_NEED_LOCKSCREEN = 599;
2782
2783 // OPEN: Settings > User > Confirm exit guest mode dialog
2784 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2785
2786 // OPEN: Settings > User > Edit user profile dialog
2787 DIALOG_USER_EDIT_PROFILE = 601;
2788
2789 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2790 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2791
2792 // OPEN: Settings > Wifi > Edit AP dialog
2793 DIALOG_WIFI_AP_EDIT = 603;
2794
2795 // OPEN: Settings > Wifi > PBC Config dialog
2796 DIALOG_WIFI_PBC = 604;
2797
2798 // OPEN: Settings > Wifi > Display pin dialog
2799 DIALOG_WIFI_PIN = 605;
2800
2801 // OPEN: Settings > Wifi > Write config to NFC dialog
2802 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002803 // OPEN: Settings > Date > Date picker dialog
2804 DIALOG_DATE_PICKER = 607;
2805
2806 // OPEN: Settings > Date > Time picker dialog
2807 DIALOG_TIME_PICKER = 608;
2808
2809 // OPEN: Settings > Wireless > Manage wireless plan dialog
2810 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002811
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002812 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002813 PROVISIONING_NETWORK_TYPE = 610;
2814
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002815 // ACTION: Logs action which triggered provisioning.
2816 PROVISIONING_ACTION = 611;
2817
Mahaver Chopraab282072016-10-06 19:19:23 +01002818 // ACTION: Logs extra passed by the dpc while provisioning.
2819 PROVISIONING_EXTRA = 612;
2820
Salvador Martinez64867c12016-10-14 15:25:09 -07002821 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2822 BLUETOOTH_DIALOG_FRAGMENT = 613;
2823
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002824 // ACTION: Logs provisioning started by zero touch.
2825 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2826
2827 // ACTION: Logs provisioning started by NFC bump.
2828 PROVISIONING_ENTRY_POINT_NFC = 615;
2829
2830 // ACTION: Logs provisioning started using QR code.
2831 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2832
2833 // ACTION: Logs provisioning started using adb.
2834 PROVISIONING_ENTRY_POINT_ADB = 617;
2835
2836 // ACTION: Logs provisioning started by trusted source.
2837 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2838
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002839 // ACTION: Logged when copy account task finishes.
2840 // TIME: Indicates time taken by copy account task to finish in MS.
2841 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2842
2843 // ACTION: Logged when create profile task finishes.
2844 // TIME: Indicates time taken by create profile task to finish in MS.
2845 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2846
2847 // ACTION: Logged when start profile task finishes.
2848 // TIME: Indicates time taken by start profile task to finish in MS.
2849 PROVISIONING_START_PROFILE_TASK_MS = 621;
2850
2851 // ACTION: Logged when download package task finishes.
2852 // TIME: Indicates time taken by download package task to finish in MS.
2853 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2854
2855 // ACTION: Logged when install package task finishes.
2856 // TIME: Indicates time taken by install package task to finish in MS.
2857 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2858
2859 // ACTION: User cancelled provisioning.
2860 PROVISIONING_CANCELLED = 624;
2861
2862 // ACTION: Logged when provisioning throws an error.
2863 PROVISIONING_ERROR = 625;
2864
2865 // ACTION: Logs the status of copying user account during provisioning.
2866 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2867
2868 // ACTION: Logs the end to end time taken by all provisioning tasks.
2869 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2870
tmfanga3f63a92018-11-05 19:05:18 +08002871 // OPEN: Settings > Security
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002872 // CATEGORY: SETTINGS
2873 // OS: O
2874 ENTERPRISE_PRIVACY_SETTINGS = 628;
2875
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002876 // ACTION: Longpress on a TextView.
2877 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2878 // CATEGORY: TEXT_CONTROLS
2879 // OS: O
2880 TEXT_LONGPRESS = 629;
2881
Chris Wren3824c392017-11-27 12:54:14 -05002882 // ACTION: An app requested an unknown permission
2883 // PACKAGE: The package name of the app requesting the permission
2884 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002885 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2886
Chris Wren3824c392017-11-27 12:54:14 -05002887 // ACTION: An app was granted an unknown permission
2888 // PACKAGE: The package name of the app that was granted the permission
2889 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002890 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2891
Chris Wren3824c392017-11-27 12:54:14 -05002892 // ACTION: An app requested an unknown permission and the request was denied
2893 // PACKAGE: The package name of the app requesting the permission
2894 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002895 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2896
Chris Wren3824c392017-11-27 12:54:14 -05002897 // ACTION: An unknown permission was revoked for an app
2898 // PACKAGE: The package name of the app the permission was revoked for
2899 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002900 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2901
Chris Wren3824c392017-11-27 12:54:14 -05002902 // ACTION: An app requested the permission READ_CALENDAR
2903 // PACKAGE: The package name of the app requesting the permission
2904 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002905 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2906
Chris Wren3824c392017-11-27 12:54:14 -05002907 // ACTION: An app was granted the permission READ_CALENDAR
2908 // PACKAGE: The package name of the app that was granted the permission
2909 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002910 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2911
Chris Wren3824c392017-11-27 12:54:14 -05002912 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2913 // PACKAGE: The package name of the app requesting the permission
2914 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002915 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2916
Chris Wren3824c392017-11-27 12:54:14 -05002917 // ACTION: The permission READ_CALENDAR was revoked for an app
2918 // PACKAGE: The package name of the app the permission was revoked for
2919 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002920 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2921
Chris Wren3824c392017-11-27 12:54:14 -05002922 // ACTION: An app requested the permission WRITE_CALENDAR
2923 // PACKAGE: The package name of the app requesting the permission
2924 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002925 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2926
Chris Wren3824c392017-11-27 12:54:14 -05002927 // ACTION: An app was granted the permission WRITE_CALENDAR
2928 // PACKAGE: The package name of the app that was granted the permission
2929 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002930 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2931
Chris Wren3824c392017-11-27 12:54:14 -05002932 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2933 // PACKAGE: The package name of the app requesting the permission
2934 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002935 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2936
Chris Wren3824c392017-11-27 12:54:14 -05002937 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2938 // PACKAGE: The package name of the app the permission was revoked for
2939 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002940 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2941
Chris Wren3824c392017-11-27 12:54:14 -05002942 // ACTION: An app requested the permission CAMERA
2943 // PACKAGE: The package name of the app requesting the permission
2944 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002945 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2946
Chris Wren3824c392017-11-27 12:54:14 -05002947 // ACTION: An app was granted the permission CAMERA
2948 // PACKAGE: The package name of the app that was granted the permission
2949 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002950 ACTION_PERMISSION_GRANT_CAMERA = 643;
2951
Chris Wren3824c392017-11-27 12:54:14 -05002952 // ACTION: An app requested the permission CAMERA and the request was denied
2953 // PACKAGE: The package name of the app requesting the permission
2954 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002955 ACTION_PERMISSION_DENIED_CAMERA = 644;
2956
Chris Wren3824c392017-11-27 12:54:14 -05002957 // ACTION: The permission CAMERA was revoked for an app
2958 // PACKAGE: The package name of the app the permission was revoked for
2959 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002960 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2961
Chris Wren3824c392017-11-27 12:54:14 -05002962 // ACTION: An app requested the permission READ_CONTACTS
2963 // PACKAGE: The package name of the app requesting the permission
2964 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002965 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2966
Chris Wren3824c392017-11-27 12:54:14 -05002967 // ACTION: An app was granted the permission READ_CONTACTS
2968 // PACKAGE: The package name of the app that was granted the permission
2969 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002970 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2971
Chris Wren3824c392017-11-27 12:54:14 -05002972 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2973 // PACKAGE: The package name of the app requesting the permission
2974 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002975 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2976
Chris Wren3824c392017-11-27 12:54:14 -05002977 // ACTION: The permission READ_CONTACTS was revoked for an app
2978 // PACKAGE: The package name of the app the permission was revoked for
2979 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002980 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2981
Chris Wren3824c392017-11-27 12:54:14 -05002982 // ACTION: An app requested the permission WRITE_CONTACTS
2983 // PACKAGE: The package name of the app requesting the permission
2984 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002985 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2986
Chris Wren3824c392017-11-27 12:54:14 -05002987 // ACTION: An app was granted the permission WRITE_CONTACTS
2988 // PACKAGE: The package name of the app that was granted the permission
2989 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002990 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2991
Chris Wren3824c392017-11-27 12:54:14 -05002992 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2993 // PACKAGE: The package name of the app requesting the permission
2994 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002995 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2996
Chris Wren3824c392017-11-27 12:54:14 -05002997 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2998 // PACKAGE: The package name of the app the permission was revoked for
2999 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003000 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
3001
Chris Wren3824c392017-11-27 12:54:14 -05003002 // ACTION: An app requested the permission GET_ACCOUNTS
3003 // PACKAGE: The package name of the app requesting the permission
3004 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003005 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
3006
Chris Wren3824c392017-11-27 12:54:14 -05003007 // ACTION: An app was granted the permission GET_ACCOUNTS
3008 // PACKAGE: The package name of the app that was granted the permission
3009 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003010 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
3011
Chris Wren3824c392017-11-27 12:54:14 -05003012 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
3013 // PACKAGE: The package name of the app requesting the permission
3014 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003015 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
3016
Chris Wren3824c392017-11-27 12:54:14 -05003017 // ACTION: The permission GET_ACCOUNTS was revoked for an app
3018 // PACKAGE: The package name of the app the permission was revoked for
3019 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003020 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
3021
Chris Wren3824c392017-11-27 12:54:14 -05003022 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
3023 // PACKAGE: The package name of the app requesting the permission
3024 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003025 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
3026
Chris Wren3824c392017-11-27 12:54:14 -05003027 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
3028 // PACKAGE: The package name of the app that was granted the permission
3029 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003030 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
3031
Chris Wren3824c392017-11-27 12:54:14 -05003032 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
3033 // PACKAGE: The package name of the app requesting the permission
3034 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003035 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
3036
Chris Wren3824c392017-11-27 12:54:14 -05003037 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3038 // PACKAGE: The package name of the app the permission was revoked for
3039 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003040 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3041
Chris Wren3824c392017-11-27 12:54:14 -05003042 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3043 // PACKAGE: The package name of the app requesting the permission
3044 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003045 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3046
Chris Wren3824c392017-11-27 12:54:14 -05003047 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3048 // PACKAGE: The package name of the app that was granted the permission
3049 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003050 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3051
Chris Wren3824c392017-11-27 12:54:14 -05003052 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3053 // PACKAGE: The package name of the app requesting the permission
3054 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003055 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3056
Chris Wren3824c392017-11-27 12:54:14 -05003057 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3058 // PACKAGE: The package name of the app the permission was revoked for
3059 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003060 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3061
Chris Wren3824c392017-11-27 12:54:14 -05003062 // ACTION: An app requested the permission RECORD_AUDIO
3063 // PACKAGE: The package name of the app requesting the permission
3064 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003065 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3066
Chris Wren3824c392017-11-27 12:54:14 -05003067 // ACTION: An app was granted the permission RECORD_AUDIO
3068 // PACKAGE: The package name of the app that was granted the permission
3069 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003070 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3071
Chris Wren3824c392017-11-27 12:54:14 -05003072 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3073 // PACKAGE: The package name of the app requesting the permission
3074 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003075 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3076
Chris Wren3824c392017-11-27 12:54:14 -05003077 // ACTION: The permission RECORD_AUDIO was revoked for an app
3078 // PACKAGE: The package name of the app the permission was revoked for
3079 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003080 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3081
Chris Wren3824c392017-11-27 12:54:14 -05003082 // ACTION: An app requested the permission READ_PHONE_STATE
3083 // PACKAGE: The package name of the app requesting the permission
3084 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003085 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3086
Chris Wren3824c392017-11-27 12:54:14 -05003087 // ACTION: An app was granted the permission READ_PHONE_STATE
3088 // PACKAGE: The package name of the app that was granted the permission
3089 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003090 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3091
Chris Wren3824c392017-11-27 12:54:14 -05003092 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3093 // PACKAGE: The package name of the app requesting the permission
3094 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003095 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3096
Chris Wren3824c392017-11-27 12:54:14 -05003097 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3098 // PACKAGE: The package name of the app the permission was revoked for
3099 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003100 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3101
Chris Wren3824c392017-11-27 12:54:14 -05003102 // ACTION: An app requested the permission CALL_PHONE
3103 // PACKAGE: The package name of the app requesting the permission
3104 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003105 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3106
Chris Wren3824c392017-11-27 12:54:14 -05003107 // ACTION: An app was granted the permission CALL_PHONE
3108 // PACKAGE: The package name of the app that was granted the permission
3109 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003110 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3111
Chris Wren3824c392017-11-27 12:54:14 -05003112 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3113 // PACKAGE: The package name of the app requesting the permission
3114 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003115 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3116
Chris Wren3824c392017-11-27 12:54:14 -05003117 // ACTION: The permission CALL_PHONE was revoked for an app
3118 // PACKAGE: The package name of the app the permission was revoked for
3119 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003120 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3121
Chris Wren3824c392017-11-27 12:54:14 -05003122 // ACTION: An app requested the permission READ_CALL_LOG
3123 // PACKAGE: The package name of the app requesting the permission
3124 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003125 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3126
Chris Wren3824c392017-11-27 12:54:14 -05003127 // ACTION: An app was granted the permission READ_CALL_LOG
3128 // PACKAGE: The package name of the app that was granted the permission
3129 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003130 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3131
Chris Wren3824c392017-11-27 12:54:14 -05003132 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3133 // PACKAGE: The package name of the app requesting the permission
3134 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003135 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3136
Chris Wren3824c392017-11-27 12:54:14 -05003137 // ACTION: The permission READ_CALL_LOG was revoked for an app
3138 // PACKAGE: The package name of the app the permission was revoked for
3139 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003140 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3141
Chris Wren3824c392017-11-27 12:54:14 -05003142 // ACTION: An app requested the permission WRITE_CALL_LOG
3143 // PACKAGE: The package name of the app requesting the permission
3144 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003145 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3146
Chris Wren3824c392017-11-27 12:54:14 -05003147 // ACTION: An app was granted the permission WRITE_CALL_LOG
3148 // PACKAGE: The package name of the app that was granted the permission
3149 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003150 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3151
Chris Wren3824c392017-11-27 12:54:14 -05003152 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3153 // PACKAGE: The package name of the app requesting the permission
3154 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003155 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3156
Chris Wren3824c392017-11-27 12:54:14 -05003157 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3158 // PACKAGE: The package name of the app the permission was revoked for
3159 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003160 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3161
Chris Wren3824c392017-11-27 12:54:14 -05003162 // ACTION: An app requested the permission ADD_VOICEMAIL
3163 // PACKAGE: The package name of the app requesting the permission
3164 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003165 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3166
Chris Wren3824c392017-11-27 12:54:14 -05003167 // ACTION: An app was granted the permission ADD_VOICEMAIL
3168 // PACKAGE: The package name of the app that was granted the permission
3169 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003170 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3171
Chris Wren3824c392017-11-27 12:54:14 -05003172 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3173 // PACKAGE: The package name of the app requesting the permission
3174 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003175 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3176
Chris Wren3824c392017-11-27 12:54:14 -05003177 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3178 // PACKAGE: The package name of the app the permission was revoked for
3179 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003180 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3181
Chris Wren3824c392017-11-27 12:54:14 -05003182 // ACTION: An app requested the permission USE_SIP
3183 // PACKAGE: The package name of the app requesting the permission
3184 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003185 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3186
Chris Wren3824c392017-11-27 12:54:14 -05003187 // ACTION: An app was granted the permission USE_SIP
3188 // PACKAGE: The package name of the app that was granted the permission
3189 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003190 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3191
Chris Wren3824c392017-11-27 12:54:14 -05003192 // ACTION: An app requested the permission USE_SIP and the request was denied
3193 // PACKAGE: The package name of the app requesting the permission
3194 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003195 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3196
Chris Wren3824c392017-11-27 12:54:14 -05003197 // ACTION: The permission USE_SIP was revoked for an app
3198 // PACKAGE: The package name of the app the permission was revoked for
3199 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003200 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3201
Chris Wren3824c392017-11-27 12:54:14 -05003202 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3203 // PACKAGE: The package name of the app requesting the permission
3204 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003205 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3206
Chris Wren3824c392017-11-27 12:54:14 -05003207 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3208 // PACKAGE: The package name of the app that was granted the permission
3209 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003210 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3211
Chris Wren3824c392017-11-27 12:54:14 -05003212 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3213 // PACKAGE: The package name of the app requesting the permission
3214 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003215 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3216
Chris Wren3824c392017-11-27 12:54:14 -05003217 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3218 // PACKAGE: The package name of the app the permission was revoked for
3219 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003220 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3221
Chris Wren3824c392017-11-27 12:54:14 -05003222 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3223 // PACKAGE: The package name of the app requesting the permission
3224 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003225 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3226
Chris Wren3824c392017-11-27 12:54:14 -05003227 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3228 // PACKAGE: The package name of the app that was granted the permission
3229 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003230 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3231
Chris Wren3824c392017-11-27 12:54:14 -05003232 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3233 // PACKAGE: The package name of the app requesting the permission
3234 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003235 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3236
Chris Wren3824c392017-11-27 12:54:14 -05003237 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3238 // PACKAGE: The package name of the app the permission was revoked for
3239 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003240 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3241
Chris Wren3824c392017-11-27 12:54:14 -05003242 // ACTION: An app requested the permission BODY_SENSORS
3243 // PACKAGE: The package name of the app requesting the permission
3244 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003245 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3246
Chris Wren3824c392017-11-27 12:54:14 -05003247 // ACTION: An app was granted the permission BODY_SENSORS
3248 // PACKAGE: The package name of the app that was granted the permission
3249 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003250 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3251
Chris Wren3824c392017-11-27 12:54:14 -05003252 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3253 // PACKAGE: The package name of the app requesting the permission
3254 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003255 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3256
Chris Wren3824c392017-11-27 12:54:14 -05003257 // ACTION: The permission BODY_SENSORS was revoked for an app
3258 // PACKAGE: The package name of the app the permission was revoked for
3259 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003260 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3261
Chris Wren3824c392017-11-27 12:54:14 -05003262 // ACTION: An app requested the permission SEND_SMS
3263 // PACKAGE: The package name of the app requesting the permission
3264 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003265 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3266
Chris Wren3824c392017-11-27 12:54:14 -05003267 // ACTION: An app was granted the permission SEND_SMS
3268 // PACKAGE: The package name of the app that was granted the permission
3269 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003270 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3271
Chris Wren3824c392017-11-27 12:54:14 -05003272 // ACTION: An app requested the permission SEND_SMS and the request was denied
3273 // PACKAGE: The package name of the app requesting the permission
3274 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003275 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3276
Chris Wren3824c392017-11-27 12:54:14 -05003277 // ACTION: The permission SEND_SMS was revoked for an app
3278 // PACKAGE: The package name of the app the permission was revoked for
3279 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003280 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3281
Chris Wren3824c392017-11-27 12:54:14 -05003282 // ACTION: An app requested the permission RECEIVE_SMS
3283 // PACKAGE: The package name of the app requesting the permission
3284 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003285 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3286
Chris Wren3824c392017-11-27 12:54:14 -05003287 // ACTION: An app was granted the permission RECEIVE_SMS
3288 // PACKAGE: The package name of the app that was granted the permission
3289 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003290 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3291
Chris Wren3824c392017-11-27 12:54:14 -05003292 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3293 // PACKAGE: The package name of the app requesting the permission
3294 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003295 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3296
Chris Wren3824c392017-11-27 12:54:14 -05003297 // ACTION: The permission RECEIVE_SMS was revoked for an app
3298 // PACKAGE: The package name of the app the permission was revoked for
3299 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003300 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3301
Chris Wren3824c392017-11-27 12:54:14 -05003302 // ACTION: An app requested the permission READ_SMS
3303 // PACKAGE: The package name of the app requesting the permission
3304 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003305 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3306
Chris Wren3824c392017-11-27 12:54:14 -05003307 // ACTION: An app was granted the permission READ_SMS
3308 // PACKAGE: The package name of the app that was granted the permission
3309 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003310 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3311
Chris Wren3824c392017-11-27 12:54:14 -05003312 // ACTION: An app requested the permission READ_SMS and the request was denied
3313 // PACKAGE: The package name of the app requesting the permission
3314 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003315 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3316
Chris Wren3824c392017-11-27 12:54:14 -05003317 // ACTION: The permission READ_SMS was revoked for an app
3318 // PACKAGE: The package name of the app the permission was revoked for
3319 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003320 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3321
Chris Wren3824c392017-11-27 12:54:14 -05003322 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3323 // PACKAGE: The package name of the app requesting the permission
3324 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003325 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3326
Chris Wren3824c392017-11-27 12:54:14 -05003327 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3328 // PACKAGE: The package name of the app that was granted the permission
3329 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003330 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3331
Chris Wren3824c392017-11-27 12:54:14 -05003332 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3333 // PACKAGE: The package name of the app requesting the permission
3334 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003335 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3336
Chris Wren3824c392017-11-27 12:54:14 -05003337 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3338 // PACKAGE: The package name of the app the permission was revoked for
3339 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003340 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3341
Chris Wren3824c392017-11-27 12:54:14 -05003342 // ACTION: An app requested the permission RECEIVE_MMS
3343 // PACKAGE: The package name of the app requesting the permission
3344 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003345 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3346
Chris Wren3824c392017-11-27 12:54:14 -05003347 // ACTION: An app was granted the permission RECEIVE_MMS
3348 // PACKAGE: The package name of the app that was granted the permission
3349 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003350 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3351
Chris Wren3824c392017-11-27 12:54:14 -05003352 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3353 // PACKAGE: The package name of the app requesting the permission
3354 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003355 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3356
Chris Wren3824c392017-11-27 12:54:14 -05003357 // ACTION: The permission RECEIVE_MMS was revoked for an app
3358 // PACKAGE: The package name of the app the permission was revoked for
3359 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003360 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3361
Chris Wren3824c392017-11-27 12:54:14 -05003362 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3363 // PACKAGE: The package name of the app requesting the permission
3364 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003365 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3366
Chris Wren3824c392017-11-27 12:54:14 -05003367 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3368 // PACKAGE: The package name of the app that was granted the permission
3369 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003370 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3371
Chris Wren3824c392017-11-27 12:54:14 -05003372 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3373 // PACKAGE: The package name of the app requesting the permission
3374 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003375 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3376
Chris Wren3824c392017-11-27 12:54:14 -05003377 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3378 // PACKAGE: The package name of the app the permission was revoked for
3379 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003380 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3381
Chris Wren3824c392017-11-27 12:54:14 -05003382 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3383 // PACKAGE: The package name of the app requesting the permission
3384 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003385 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3386
Chris Wren3824c392017-11-27 12:54:14 -05003387 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3388 // PACKAGE: The package name of the app that was granted the permission
3389 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003390 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3391
Chris Wren3824c392017-11-27 12:54:14 -05003392 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3393 // PACKAGE: The package name of the app requesting the permission
3394 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003395 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3396
Chris Wren3824c392017-11-27 12:54:14 -05003397 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3398 // PACKAGE: The package name of the app the permission was revoked for
3399 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003400 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3401
Mahaverfa6566e2016-11-29 21:08:14 +00003402 // ACTION: Logged when a provisioning session has started
3403 PROVISIONING_SESSION_STARTED = 734;
3404
3405 // ACTION: Logged when a provisioning session has completed
3406 PROVISIONING_SESSION_COMPLETED = 735;
3407
Chris Wren3824c392017-11-27 12:54:14 -05003408 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3409 // PACKAGE: The package name of the app requesting the permission
3410 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003411 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003412
Chris Wren3824c392017-11-27 12:54:14 -05003413 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3414 // PACKAGE: The package name of the app that was granted the permission
3415 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003416 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003417
Chris Wren3824c392017-11-27 12:54:14 -05003418 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3419 // PACKAGE: The package name of the app requesting the permission
3420 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003421 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003422
Chris Wren3824c392017-11-27 12:54:14 -05003423 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3424 // PACKAGE: The package name of the app the permission was revoked for
3425 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003426 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003427
Santos Cordon3107d292016-09-20 15:50:35 -07003428 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3429 // SUBTYPE: slider value
3430 // CATEGORY: QUICK_SETTINGS
3431 // OS: 6.0
3432 ACTION_BRIGHTNESS_FOR_VR = 498;
3433
Hugo Benichie1cbf152016-12-08 09:36:52 +09003434 // ACTION: A captive portal was detected during network validation
3435 // CATEGORY: NOTIFICATION
3436 // OS: N-MR2
3437 NOTIFICATION_NETWORK_SIGN_IN = 740;
3438
3439 // ACTION: An unvalidated network without Internet was selected by the user
3440 // CATEGORY: NOTIFICATION
3441 // OS: N-MR2
3442 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3443
3444 // ACTION: A validated network failed revalidation and lost Internet access
3445 // CATEGORY: NOTIFICATION
3446 // OS: N-MR2
3447 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3448
3449 // ACTION: The system default network switched to a different network
3450 // CATEGORY: NOTIFICATION
3451 // OS: N-MR2
3452 NOTIFICATION_NETWORK_SWITCH = 743;
3453
Fan Zhang074c4cb2016-12-21 12:10:33 -08003454 // OPEN: Settings > System
3455 SETTINGS_SYSTEM_CATEGORY = 744;
3456
3457 // OPEN: Settings > Storage
3458 SETTINGS_STORAGE_CATEGORY = 745;
3459
3460 // OPEN: Settings > Network & Internet
3461 SETTINGS_NETWORK_CATEGORY = 746;
3462
3463 // OPEN: Settings > Connected Device
3464 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3465
3466 // OPEN: Settings > App & Notification
3467 SETTINGS_APP_NOTIF_CATEGORY = 748;
3468
3469 // OPEN: Settings > System > Input & Gesture
3470 SETTINGS_INPUT_CATEGORY = 749;
3471
3472 // OPEN: Settings > System > Language & Region
3473 SETTINGS_LANGUAGE_CATEGORY = 750;
3474
3475 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3476 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3477
3478 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3479 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3480
3481 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3482 SETTINGS_GESTURE_PICKUP = 753;
3483
3484 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3485 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3486
3487 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3488 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3489
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003490 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3491 // CATEGORY: Settings
3492 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3493
Alison Cichowlas803054d2016-12-13 14:38:01 -05003494 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003495 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003496 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3497 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3498 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003499
Salvador Martinezc43ab062016-12-21 11:09:11 -08003500 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3501 // user accepted
3502 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003503
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003504 // Enclosing category for group of APP_TRANSITION_FOO events,
3505 // logged when we execute an app transition.
3506 APP_TRANSITION = 761;
3507
Fan Zhang945deea2017-01-11 16:37:49 -08003508 // ACTION: User leaves Settings search UI without entering any query.
3509 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3510
3511 // ACTION: Clicking on any search result in Settings.
3512 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003513
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003514 // ACTION: Allow Battery optimization for an app
3515 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3516
3517 // ACTION: Deny Battery optimization for an app
3518 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3519
3520 // ACTION: Enable Device Admin app
3521 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3522
3523 // ACTION: Disable Device Admin app
3524 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3525
3526 // ACTION: Allow "Do Not Disturb access" for an app
3527 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3528
3529 // ACTION: Deny "Do Not Disturb access" for an app
3530 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3531
3532 // ACTION: Allow "Draw over other apps" for an app
3533 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3534
Christine Franks47175c32017-03-14 10:21:25 -07003535 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003536 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3537
3538 // ACTION: Allow "VR helper services" for an app
3539 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3540
3541 // ACTION: Deny "VR helper services" for an app
3542 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3543
3544 // ACTION: Allow "Modify system settings" for an app
3545 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3546
3547 // ACTION: Deny "Modify system settings" for an app
3548 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3549
3550 // ACTION: Allow "Notification access" for an app
3551 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3552
3553 // ACTION: Deny "Notification access" for an app
3554 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3555
3556 // ACTION: "Premium SMS access" for an app - "ask user" option
3557 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3558
3559 // ACTION: "Premium SMS access" for an app - "never allow" option
3560 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3561
3562 // ACTION: "Premium SMS access" for an app - "always allow" option
3563 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3564
3565 // ACTION: Allow "Unrestricted data access" for an app
3566 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3567
3568 // ACTION: Deny "Unrestricted data access" for an app
3569 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3570
3571 // ACTION: Allow "Usage access" for an app
3572 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3573
3574 // ACTION: Deny "Usage access" for an app
3575 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3576
Fan Zhangad5dacc2017-01-18 14:18:54 -08003577 // OPEN: Settings > Apps > Default Apps > Default browser
3578 DEFAULT_BROWSER_PICKER = 785;
3579
3580 // OPEN: Settings > Apps > Default Apps > Default emergency app
3581 DEFAULT_EMERGENCY_APP_PICKER = 786;
3582
3583 // OPEN: Settings > Apps > Default Apps > Default home
3584 DEFAULT_HOME_PICKER = 787;
3585
3586 // OPEN: Settings > Apps > Default Apps > Default phone
3587 DEFAULT_PHONE_PICKER = 788;
3588
3589 // OPEN: Settings > Apps > Default Apps > Default sms
3590 DEFAULT_SMS_PICKER = 789;
3591
3592 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3593 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3594
3595 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3596 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3597
Jason Long1b51da62017-01-24 11:35:31 -08003598 // OPEN: Settings > Apps > Default Apps > Default autofill app
3599 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003600
Chris Wren26ca65d2016-11-29 10:43:28 -05003601 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003602 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003603 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3604 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3605 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3606 NOTIFICATION_ID = 796;
3607 NOTIFICATION_TAG = 797;
3608 NOTIFICATION_SHADE_INDEX = 798;
3609 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003610
Anas Karbilaf7648f42016-12-11 00:55:02 +01003611 // OPEN: QS NFC tile shown
3612 // ACTION: QS NFC tile tapped
3613 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003614 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003615
Chris Wren26ca65d2016-11-29 10:43:28 -05003616 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003617 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003618 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3619 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3620 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3621 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3622 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3623 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3624
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003625 // ACTION: "Force stop" action on an app
3626 ACTION_APP_FORCE_STOP = 807;
3627
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003628 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3629 // CATEGORY: SETTINGS
3630 // OS: 8.0
3631 MANAGE_EXTERNAL_SOURCES = 808;
3632
Mahaver6cd47162017-01-23 09:59:33 +00003633 // ACTION: Logged when terms activity finishes.
3634 // TIME: Indicates time taken by terms activity to finish in MS.
3635 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3636
3637 // Indicates number of terms displayed on the terms screen.
3638 PROVISIONING_TERMS_COUNT = 810;
3639
3640 // Indicates number of terms read on the terms screen.
3641 PROVISIONING_TERMS_READ = 811;
3642
Winson Chung59fda9e2017-01-20 16:14:51 -08003643 // Logs that the user has edited the picture-in-picture settings.
3644 // CATEGORY: SETTINGS
3645 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3646
Winson Chungf4ac0632017-03-17 12:34:12 -07003647 // ACTION: Allow "Enable picture-in-picture" for an app
3648 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003649
Winson Chungf4ac0632017-03-17 12:34:12 -07003650 // ACTION: Deny "Enable picture-in-picture" for an app
3651 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003652
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003653 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3654 // CATEGORY: SETTINGS
3655 // OS: 8.0
3656 TTS_SLIDERS = 815;
3657
Jason Monk524fb402017-01-25 10:33:31 -05003658 // ACTION: Settings -> Display -> Theme
3659 ACTION_THEME = 816;
3660
chchaob8e253a2017-01-25 12:12:09 -08003661 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3662 // ACTION: Select to Speak configuration is chosen
3663 // SUBTYPE: 0 is off, 1 is on
3664 // CATEGORY: SETTINGS
3665 // OS: N
3666 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3667
Anton Philippov95a553e2017-01-27 00:08:24 +00003668 // OPEN: Settings > System > Backup
3669 // CATEGORY: SETTINGS
3670 // OS: O
3671 BACKUP_SETTINGS = 818;
3672
Winson Chung14fbe142016-12-19 16:18:24 -08003673 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003674 // VALUE: true if it was entered while hiding as a result of moving to
3675 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003676 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3677
3678 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3679 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3680 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3681
3682 // ACTION: The activity currently in picture-in-picture was minimized
3683 // VALUE: True if the PiP was minimized, false otherwise
3684 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3685
3686 // ACTION: Picture-in-picture was dismissed via the dismiss button
3687 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3688 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3689
3690 // ACTION: The visibility of the picture-in-picture meny
3691 // VALUE: Whether or not the menu is visible
3692 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3693
3694 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3695 // logged when the aspect ratio changes
3696 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3697
3698 // The current aspect ratio of the PiP, logged when it changes.
3699 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3700
Chris Wren27a52fa2017-02-01 14:21:43 -05003701 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3702 // CATEGORY: GLOBAL_SYSTEM_UI
3703 // OS: O
3704 FIELD_GESTURE_LENGTH = 826;
3705
3706 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3707 // CATEGORY: GLOBAL_SYSTEM_UI
3708 // OS: O
3709 FIELD_GESTURE_VELOCITY = 827;
3710
Christine Franks27fde392017-02-07 10:21:55 -08003711 // OPEN: Carrier demo mode password dialog
3712 CARRIER_DEMO_MODE_PASSWORD = 828;
3713
Fan Zhang70967f32017-02-13 16:02:24 -08003714 // ACTION: Create a Settings shortcut item.
3715 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3716
3717 // ACTION: A tile in Settings information architecture is clicked
3718 ACTION_SETTINGS_TILE_CLICK = 830;
3719
Julia Reynolds520df6e2017-02-13 09:05:10 -05003720 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
Julia Reynolds67c1e962019-01-04 14:01:10 -05003721 // updated. TYPE_DISMISS: snoozing canceled due to data being cleared on package
Julia Reynolds520df6e2017-02-13 09:05:10 -05003722 // CATEGORY: NOTIFICATION
3723 // OS: O
3724 NOTIFICATION_SNOOZED = 831;
3725
3726 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3727 // OS: O
3728 NOTIFICATION_SNOOZED_CRITERIA = 832;
3729
Fan Zhang65899432017-02-14 13:36:53 -08003730 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003731 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003732 FIELD_CONTEXT = 833;
3733
Fan Zhangd95dcb42017-02-14 13:48:09 -08003734 // ACTION: Settings advanced button is expanded
3735 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3736
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003737 // ACTION: Logs the number of times the saved network evaluator was used to
3738 // recommend a wifi network
3739 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3740
3741 // ACTION: Logs the number of times the recommended network evaluator was
3742 // used to recommend a wifi network
3743 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3744
3745 // ACTION: Logs the number of times a recommended network was resulted in a
3746 // successful connection
3747 // VALUE: true if the connection was successful, false if the connection failed
3748 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3749
Daniel Nishic581bfc2017-02-08 10:18:19 -08003750 // OPEN: Settings > Storage > Games
3751 // CATEGORY: SETTINGS
3752 // OS: O
3753 APPLICATIONS_STORAGE_GAMES = 838;
3754
3755 // OPEN: Settings > Storage > Audio and Music
3756 // CATEGORY: SETTINGS
3757 // OS: O
3758 APPLICATIONS_STORAGE_MUSIC = 839;
3759
3760 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3761 // CATEGORY: SETTINGS
3762 // OS: O
3763 STORAGE_FREE_UP_SPACE_NOW = 840;
3764
3765 // ACTION: Settings > Storage > Files to open the File Manager
3766 // CATEGORY: SETTINGS
3767 // OS: O
3768 STORAGE_FILES = 841;
3769
Fan Zhangb1d49222017-02-15 17:12:58 -08003770 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003771 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003772
Fan Zhang7f2cace2017-02-17 12:05:48 -08003773 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3774 DEFAULT_ASSIST_PICKER = 843;
3775
3776 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3777 DEFAULT_VOICE_INPUT_PICKER = 844;
3778
Daniel Nishi4058a842017-02-21 17:11:35 -08003779 // OPEN: Settings > Storage > [Profile]
3780 SETTINGS_STORAGE_PROFILE = 845;
3781
Doris Lingedb84c32017-02-23 10:56:01 -08003782 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3783 // CATEGORY: SETTINGS
3784 // OS: O
3785 ENCRYPTION_AND_CREDENTIAL = 846;
3786
Fan Zhangb66e5422017-02-24 14:37:45 -08003787 // ACTION: Settings > About device > Build number
3788 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3789
3790 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3791 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3792
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003793 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3794 // CATEGORY: SETTINGS
3795 // OS: O
3796 WIFI_NETWORK_DETAILS = 849;
3797
jackqdyuleia2a14342017-02-28 16:20:48 -08003798 // ACTION: Settings > Battery > Menu > Usage Alerts
3799 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3800
3801 // ACTION: Settings > Battery > Menu > Optimization
3802 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3803
3804 // ACTION: Settings > Battery > Menu > Apps Toggle
3805 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3806
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003807 // ACTION: Settings > Any preference is changed
3808 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3809
3810 // FIELD: The name of preference when it is changed in Settings
3811 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3812
3813 // FIELD: The new value of preference when it is changed in Settings
3814 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3815
Julia Reynoldsd373d782017-03-03 13:32:57 -05003816 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3817 // channel updated
3818 // PACKAGE: the package the channel belongs too
3819 // CATEGORY: NOTIFICATION
3820 // OS: O
3821 ACTION_NOTIFICATION_CHANNEL = 856;
3822
3823 // Tagged data for notification channel. String.
3824 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3825
3826 // Tagged data for notification channel. int.
3827 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3828
3829 // OPEN: Notification channel group created.
3830 // PACKAGE: the package the group belongs to
3831 // CATEGORY: NOTIFICATION
3832 // OS: O
3833 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3834
3835 // Tagged data for notification channel group. String.
3836 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3837
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003838 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3839 // CATEGORY: SETTINGS
3840 // OS: O
3841 SETTINGS_NETWORK_SCORER = 861;
3842
Fan Zhang99861312017-03-07 14:32:38 -08003843 // OPEN: Settings > About device > Model > Hardware info dialog
3844 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3845
mariagpuyol0f5512e2017-03-01 12:09:56 -08003846 // ACTION: Checks whether a contact's phone still exists
3847 // Value 0: It doesn't exist anymore
3848 // Value 1: It still exists
3849 // Value 2: A SecurityException was thrown
3850 // CATEGORY: SETTINGS
3851 // OS: N
3852 ACTION_PHONE_EXISTS = 863;
3853
3854 // ACTION: Retrieves a contact from CP2
3855 // Value 0: Contact retrieved without issues
3856 // Value 1: An IllegalArgumentException was thrown
3857 // CATEGORY: SETTINGS
3858 // OS: N
3859 ACTION_GET_CONTACT = 864;
3860
Chris Wren4d6b54d2017-04-27 16:56:54 -04003861 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003862 // internal platform metrics use.
3863 RESERVED_FOR_LOGBUILDER_PID = 865;
3864
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003865 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3866 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3867
3868 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3869 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3870
3871 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3872 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3873
3874 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3875 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3876
3877 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3878 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3879
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003880 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003881 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003882
Fan Zhang082d21c2017-03-13 15:25:54 -07003883 // ACTION: Settings > App detail > Uninstall
3884 ACTION_SETTINGS_UNINSTALL_APP = 872;
3885
3886 // ACTION: Settings > App detail > Uninstall Device admin app
3887 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3888
3889 // ACTION: Settings > App detail > Disable app
3890 ACTION_SETTINGS_DISABLE_APP = 874;
3891
3892 // ACTION: Settings > App detail > Enable app
3893 ACTION_SETTINGS_ENABLE_APP = 875;
3894
3895 // ACTION: Settings > App detail > Clear data
3896 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3897
3898 // ACTION: Settings > App detail > Clear cache
3899 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3900
3901 // ACTION: Clicking on any search result in Settings.
3902 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3903
3904 // FIELD: Settings inline search result name
3905 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3906
3907 // FIELD: Settings inline search result value
3908 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3909
Fan Zhang53797932017-03-13 17:46:24 -07003910 // ACTION: Settings > Search > Click saved queries
3911 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3912
Doris Lingbf8d9de2017-03-15 11:52:50 -07003913 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3914 // CATEGORY: SETTINGS
3915 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3916
Chris Wren3824c392017-11-27 12:54:14 -05003917 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3918 // PACKAGE: The package name of the app requesting the permission
3919 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003920 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3921
Chris Wren3824c392017-11-27 12:54:14 -05003922 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3923 // PACKAGE: The package name of the app that was granted the permission
3924 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003925 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3926
Chris Wren3824c392017-11-27 12:54:14 -05003927 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3928 // PACKAGE: The package name of the app requesting the permission
3929 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003930 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3931
Chris Wren3824c392017-11-27 12:54:14 -05003932 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3933 // PACKAGE: The package name of the app the permission was revoked for
3934 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003935 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3936
Chris Wren3824c392017-11-27 12:54:14 -05003937 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3938 // PACKAGE: The package name of the app requesting the permission
3939 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003940 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3941
Chris Wren3824c392017-11-27 12:54:14 -05003942 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3943 // PACKAGE: The package name of the app that was granted the permission
3944 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003945 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3946
Chris Wren3824c392017-11-27 12:54:14 -05003947 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3948 // PACKAGE: The package name of the app requesting the permission
3949 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003950 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3951
Chris Wren3824c392017-11-27 12:54:14 -05003952 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3953 // PACKAGE: The package name of the app the permission was revoked for
3954 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003955 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3956
Chris Wren3824c392017-11-27 12:54:14 -05003957 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3958 // PACKAGE: The package name of the app requesting the permission
3959 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003960 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3961
Chris Wren3824c392017-11-27 12:54:14 -05003962 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3963 // PACKAGE: The package name of the app that was granted the permission
3964 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003965 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3966
Chris Wren3824c392017-11-27 12:54:14 -05003967 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3968 // PACKAGE: The package name of the app requesting the permission
3969 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003970 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3971
Chris Wren3824c392017-11-27 12:54:14 -05003972 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3973 // PACKAGE: The package name of the app the permission was revoked for
3974 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003975 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3976
Chris Wren3824c392017-11-27 12:54:14 -05003977 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3978 // PACKAGE: The package name of the app requesting the permission
3979 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003980 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3981
Chris Wren3824c392017-11-27 12:54:14 -05003982 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3983 // PACKAGE: The package name of the app that was granted the permission
3984 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003985 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3986
Chris Wren3824c392017-11-27 12:54:14 -05003987 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3988 // PACKAGE: The package name of the app requesting the permission
3989 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003990 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3991
Chris Wren3824c392017-11-27 12:54:14 -05003992 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3993 // PACKAGE: The package name of the app the permission was revoked for
3994 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003995 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3996
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003997 // ACTION: Phase 1 of instant application resolution occurred
3998 // OS: O
3999 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
4000
4001 // ACTION: Phase 2 of instant application resolution occurred
4002 // OS: O
4003 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
4004
4005 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
4006 // OS: O
4007 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
4008
4009 // FIELD: The status of an ephemeral resolution phase
4010 // Value 0: success
4011 // Value 1: no full hash match
4012 // OS: O
4013 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
4014
4015 // FIELD - A token to identify all events that are part of the same instant application launch
4016 // OS: O
4017 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
4018
4019 // FIELD - The name of the package responsible for launching the activity
4020 // OS: O
4021 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
4022
4023 // FIELD - Whether or not the launched activity is part of an instant application
4024 // OS: O
4025 APP_TRANSITION_IS_EPHEMERAL = 905;
4026
Felipe Leme21fb1a32018-05-21 11:18:46 -07004027 // An autofill session was started.
4028 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004029 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08004030 // NOTE: starting on OS MR1, it also added the following field:
4031 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4032 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07004033 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004034 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
4035 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
4036 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004037 AUTOFILL_SESSION_STARTED = 906;
4038
4039 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004040 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4041 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004042 // Package: Package of app that is autofilled
4043 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004044 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004045 // the service returned a null response
4046 // NOTE: starting on OS P, it also added the following fields:
4047 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004048 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004049 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4050 // with 1.
4051 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4052 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4053 // was focused.
4054 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004055 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004056 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004057 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004058 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4059 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4060 // - AUTOFILL_UI_LATENCY
4061 // - AUTOFILL_AUTHENTICATED;
4062 // - AUTOFILL_DATASET_AUTHENTICATED
4063 // - AUTOFILL_INVALID_AUTHENTICATION
4064 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Felipe Lemed9dc9542018-09-19 11:54:28 -07004065 // NOTE: starting on OS Q, it also added the following fields:
4066 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Felipe Lemea3033852019-01-18 16:32:33 -08004067 // Tag FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS: number of requests made to the augmented
4068 // autofill service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004069 AUTOFILL_REQUEST = 907;
4070
4071 // Tag of a field for a package of an autofill service
4072 FIELD_AUTOFILL_SERVICE = 908;
4073
4074 // Tag of a field for the number of datasets
4075 FIELD_AUTOFILL_NUM_DATASETS = 909;
4076
4077 // An autofill dataset selection UI was shown
4078 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4079 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4080 // Type TYPE_ACTION: dataset was selected
4081 // Type TYPE_DETAIL: authentication was selected
4082 // Package: Package of app that was autofilled
4083 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4084 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004085 // NOTE: starting on OS P, it also added the following fields:
4086 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004087 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004088 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004089 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004090 AUTOFILL_FILL_UI = 910;
4091
4092 // Tag of a field for the length of the filter text
4093 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4094
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004095 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004096 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004097 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004098 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004099 AUTOFILL_AUTHENTICATED = 912;
4100
4101 // An activity was autofilled and all values could be applied
4102 // Package: Package of app that is autofilled
4103 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4104 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004105 // NOTE: starting on OS P, it also added the following fields:
4106 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004107 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004108 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004109 AUTOFILL_DATASET_APPLIED = 913;
4110
4111 // Tag of a field for the number values to be filled in
4112 FIELD_AUTOFILL_NUM_VALUES = 914;
4113
4114 // Tag of a field for the number of views that were filled
4115 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4116
4117 // An autofill save UI was shown
4118 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4119 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4120 // Type TYPE_ACTION: data was saved
4121 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004122 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004123 // NOTE: starting on OS P, it also added the following fields:
4124 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004125 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004126 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004127 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004128 // NOTE: starting on OS Q, it also added the following fields:
4129 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004130 AUTOFILL_SAVE_UI = 916;
4131
4132 // Tag of a field for the number of saveable ids
4133 FIELD_AUTOFILL_NUM_IDS = 917;
4134
Felipe Leme21fb1a32018-05-21 11:18:46 -07004135 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004136 // Type TYPE_SUCCESS: The request succeeded right away
4137 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004138 // Type TYPE_FAILURE: The request failed
4139 // Package: Package of app that was autofilled
4140 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004141 // NOTE: starting on OS P, it also added the following fields:
4142 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004143 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004144 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemed9dc9542018-09-19 11:54:28 -07004145 // NOTE: starting on OS Q, it also added the following fields:
4146 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004147 AUTOFILL_DATA_SAVE_REQUEST = 918;
4148
4149 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004150 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004151 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004152 // NOTE: starting on OS P, it also added the following fields:
4153 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004154 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004155 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4156 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4157 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004158 AUTOFILL_SESSION_FINISHED = 919;
4159
Chris Wren148805582017-03-17 17:18:11 -04004160 // meta-event: a reader has checkpointed the log here.
4161 METRICS_CHECKPOINT = 920;
4162
Fan Zhanged1845f2017-03-23 14:46:59 -07004163 // OPEN: Settings -> Display -> When in VR Mode
4164 VR_DISPLAY_PREFERENCE = 921;
4165
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004166 // OPEN: Settings > Accessibility > Magnification
4167 // CATEGORY: SETTINGS
4168 // OS: O
4169 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004170
4171 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4172 // app.
4173 // VALUE: The package name of the app
4174 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4175
Fan Zhang1a34e752017-03-24 13:44:51 -07004176 // OPEN: Settings -> System -> Reset options
4177 RESET_DASHBOARD = 924;
4178
Jason Monk8c09ac72017-03-16 11:53:40 -04004179 // ACTION: QS -> Tile clicked
4180 ACTION_QS_CLICK = 925;
4181
4182 // ACTION: QS -> Secondary click
4183 ACTION_QS_SECONDARY_CLICK = 926;
4184
4185 // FIELD: Position info in QS clicks
4186 FIELD_QS_POSITION = 927;
4187
4188 // FIELD: The value of a QS tile when clicked (if applicable)
4189 FIELD_QS_VALUE = 928;
4190
4191 // ACTION: QS -> Detail panel -> more settings
4192 ACTION_QS_MORE_SETTINGS = 929;
4193
4194 // ACTION: QS -> Click date
4195 ACTION_QS_DATE = 930;
4196
Jason Monk1b775652017-03-31 15:42:27 -04004197 // ACTION: Event on nav button
4198 ACTION_NAV_BUTTON_EVENT = 931;
4199
4200 // FIELD: Flags for a nav button event
4201 FIELD_FLAGS = 932;
4202
4203 // FIELD: Action for a nav button event
4204 FIELD_NAV_ACTION = 933;
4205
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004206 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4207 // CATEGORY: SETTINGS
4208 // OS: O
4209 FINGERPRINT_REMOVE_SIDECAR = 934;
4210
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004211 // OPEN: Settings > Storage > Movies & TV
4212 // CATEGORY: SETTINGS
4213 // OS: O
4214 APPLICATIONS_STORAGE_MOVIES = 935;
4215
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004216 // OPEN: Text selection "assist" menu item shown.
4217 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4218 // CATEGORY: TEXT_CONTROLS
4219 // OS: O
4220 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4221
4222 // ACTION: Text selection "assist" menu item clicked.
4223 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4224 // CATEGORY: TEXT_CONTROLS
4225 // OS: O
4226 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4227
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004228 // OPEN: Settings > Security > Managed Device Info > Apps installed
4229 // CATEGORY: SETTINGS
4230 // OS: O
4231 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4232
4233 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4234 // CATEGORY: SETTINGS
4235 // OS: O
4236 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4237
4238 // OPEN: Settings > Security > Managed Device Info > Default apps
4239 // CATEGORY: SETTINGS
4240 // OS: O
4241 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4242
Julia Reynolds80b18072017-04-23 12:27:07 -04004243 // OPEN: Settings > Notifications > An app > A channel > Importance
4244 // CATEGORY: SETTINGS
4245 // OS: O
4246 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4247
4248 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4249 // CATEGORY: SETTINGS
4250 // OS: O
4251 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4252
Chris Wren4d6b54d2017-04-27 16:56:54 -04004253 // This value should never appear in log outputs - it is reserved for
4254 // internal platform metrics use.
4255 RESERVED_FOR_LOGBUILDER_UID = 943;
4256
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004257 // OPEN: Running background apps notification > List of background apps
4258 // CATEGORY: GLOBAL_SYSTEM_UI
4259 // OS: O
4260 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4261
Jorim Jaggi515dd682017-05-05 15:05:07 +02004262 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4263 // client.
4264 // OS: O
4265 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4266
Chris Wrenb3921792017-06-01 13:34:46 -04004267 // FIELD - The group ID of a notification.
4268 // Type: string
4269 // OS: O
4270 FIELD_NOTIFICATION_GROUP_ID = 946;
4271
4272 // FIELD - If the notification is a group summary: 1.
4273 // Type: int encoded boolean
4274 // OS: O
4275 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4276
Felipe Leme637e05e2017-12-06 12:09:37 -08004277 // An app attempted to forge a different component name in the AssisStructure that would be
4278 // passed to the autofill service.
4279 // OS: O (security patch)
4280 // Package: Real package of the app being autofilled
4281 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4282 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004283 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004284 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004285 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4286
4287 // FIELD - The component that an app tried tro forged.
4288 // Type: string
4289 // OS: O (security patch)
4290 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4291
Chris Wren26ca65d2016-11-29 10:43:28 -05004292 // ---- End O Constants, all O constants go above this line ----
4293
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004294 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4295 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4296
jackqdyulei92e492e2017-04-28 13:04:42 -07004297 // OPEN: Settings > Battery > High Usage > Abnormal app page
4298 // CATEGORY: SETTINGS
4299 FUELGAUGE_ANOMALY_DETAIL = 987;
4300
4301 // OPEN: Settings > Battery > High Usage
4302 DIALOG_HANDLE_ANOMALY = 988;
4303
Jonathan Solnita4138162017-05-10 21:06:04 -07004304 // ACTION: Camera lift gesture
4305 // CATEGORY: GLOBAL_SYSTEM_UI
4306 // OS: O
4307 ACTION_CAMERA_LIFT_TRIGGER = 989;
4308
Maurice Lam76ae09c2017-05-05 12:03:49 -07004309 // OPEN: Choose screen lock dialog in Settings
4310 // CATEGORY: SETTINGS
4311 // OS: O DR
4312 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4313
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004314 // OPEN: Assist Gesture training intro in Settings
4315 // CATEGORY: SETTINGS
4316 // OS: O DR
4317 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4318
4319 // OPEN: Assist Gesture training enrolling in Settings
4320 // CATEGORY: SETTINGS
4321 // OS: O DR
4322 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4323
4324 // OPEN: Assist Gesture training finished in Settings
4325 // CATEGORY: SETTINGS
4326 // OS: O DR
4327 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4328
Fan Zhangc666a202017-05-18 17:50:20 -07004329 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4330 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4331
4332 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4333 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4334
Philip Quinn0f9566d2017-05-23 10:32:08 -07004335 // OPEN: Settings > System > Languages & input > Assist gesture
4336 // CATEGORY: SETTINGS
4337 // OS: O DR
4338 SETTINGS_ASSIST_GESTURE = 996;
4339
4340 // ACTION: Assist gesture released without triggering
4341 // CATEGORY: GLOBAL_SYSTEM_UI
4342 // OS: O DR
4343 ASSIST_GESTURE_RELEASED = 997;
4344
4345 // ACTION: Assist gesture primed
4346 // CATEGORY: GLOBAL_SYSTEM_UI
4347 // OS: O DR
4348 ASSIST_GESTURE_PRIMED = 998;
4349
4350 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004351 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004352 // CATEGORY: GLOBAL_SYSTEM_UI
4353 // OS: O DR
4354 ASSIST_GESTURE_TRIGGERED = 999;
4355
Fan Zhang238162b2017-05-25 14:01:41 -07004356 // ACTION: Update default app from Settings
4357 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4358
4359 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004360 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004361
4362 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004363 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004364
Adrian Roos1c81d772017-05-25 18:00:21 -07004365 // OPEN: Settings > Display > Ambient Display
4366 // CATEGORY: SETTINGS
4367 // OS: O DR
4368 AMBIENT_DISPLAY_SETTINGS = 1003;
4369
Hugo Benichi11da42b2017-05-31 11:11:37 +09004370 // ACTION: CaptivePortalLoginActivity starts
4371 // CATEGORY: GLOBAL_SYSTEM_UI
4372 // OS: O DR
4373 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4374
4375 // ACTION: CaptivePortalLoginActivity auto-closes
4376 // CATEGORY: GLOBAL_SYSTEM_UI
4377 // OS: O DR
4378 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4379
4380 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4381 // CATEGORY: GLOBAL_SYSTEM_UI
4382 // OS: O DR
4383 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4384
4385 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4386 // CATEGORY: GLOBAL_SYSTEM_UI
4387 // OS: O DR
4388 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4389
4390 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4391 // CATEGORY: SETTINGS
4392 // OS: O DR
4393 ACTION_WIFI_SIGNIN = 1008;
4394
Antony Sargentf3cc3172017-05-04 14:58:06 -07004395 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4396 // CATEGORY: SETTINGS
4397 // OS: O DR
4398 BLUETOOTH_DEVICE_DETAILS = 1009;
4399
fanzhang172255759d2017-06-05 21:43:47 -07004400 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4401 CONFIGURE_KEYGUARD_DIALOG = 1010;
4402
Fan Zhange33c70d2017-06-06 12:37:13 -07004403 // Open: Settings > Search > No Result View
4404 SETTINGS_SEARCH_NO_RESULT = 1011;
4405
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004406 // OPEN: Assist Gesture before training
4407 // CATEGORY: SETTINGS
4408 // OS: O DR
4409 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4410
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004411 // CaptivePortalLoginActivity displays SSL error page
4412 // CATEGORY: GLOBAL_SYSTEM_UI
4413 // OS: O DR
4414 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4415
Fan Zhang1a0fc992017-06-13 13:45:21 -07004416 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4417 WIFI_TETHER_SETTINGS = 1014;
4418
Antony Sargentc3b5da62017-06-16 11:50:13 -07004419 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4420 // -> Edit name button.
4421 // CATEGORY: SETTINGS
4422 // OS: O DR
4423 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4424
Fan Zhang543587d2017-06-19 12:32:14 -07004425 // ACTION: Settings > Notification Settings > Open application notification
4426 // CATEGORY: SETTINGS
4427 // OS: O DR
4428 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4429
4430 // ACTION: Settings > App Info > Open app settings
4431 // CATEGORY: SETTINGS
4432 // OS: O DR
4433 ACTION_OPEN_APP_SETTING = 1017;
4434
jackqdyulei2f1a3592017-06-19 13:11:05 -07004435 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4436 // CATEGORY: SETTINGS
4437 // OS: O DR
4438 BLUETOOTH_PAIRING = 1018;
4439
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004440 // ACTION: Collect PSD Signals
4441 // CATEGORY: SETTINGS
4442 // OS: O DR
4443 ACTION_PSD_LOADER = 1019;
4444
jackqdyulei602bcc92017-06-21 15:17:53 -07004445 // ACTION: Background check action on an app
4446 // CATEGORY: SETTINGS
4447 // OS: O DR
4448 ACTION_APP_BACKGROUND_CHECK = 1020;
4449
4450 // ACTION: Location check action on an app
4451 // CATEGORY: SETTINGS
4452 // OS: O DR
4453 ACTION_APP_LOCATION_CHECK = 1021;
4454
Charlie Wang15a36ed2017-06-14 14:46:39 -07004455 // Device headset status
4456 // CATEGORY: OTHER
4457 // SUBTYPE: 1 is DON, 2 is DOFF
4458 // OS: O DR
4459 ACTION_HEADSET_STATUS = 1022;
4460
4461 // Device Headset Plug status
4462 // CATEGORY: OTHER
4463 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4464 // OS: O DR
4465 ACTION_HEADSET_PLUG = 1023;
4466
4467 // Device Headset battery level on Plug
4468 // CATEGORY: OTHER
4469 // FIELD - The battery percentage when the user decided to plug in
4470 // Type: integer
4471 // OS: O DR
4472 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4473
Charlie Wang566ec702017-06-26 15:30:03 -07004474 // Device Headset battery level on Plug
4475 // CATEGORY: OTHER
4476 // FIELD - The battery percentage when the user decided to plug in
4477 // Type: integer
4478 // OS: O DR
4479 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4480
Charlie Wang15a36ed2017-06-14 14:46:39 -07004481 // Device Headset Pose status
4482 // CATEGORY: OTHER
4483 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4484 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004485 ACTION_HEADSET_POSE_STATUS = 1026;
4486
4487 // Device Headset Usage session time
4488 // CATEGORY: OTHER
4489 // FIELD - The time the headset was used in a session
4490 // OS: O DR
4491 FIELD_SESSION_TIME_MS = 1027;
4492
4493 // Device Headset Idle time
4494 // CATEGORY: OTHER
4495 // FIELD - The time in between each session
4496 // OS: O DR
4497 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4498
4499 // Device Headset charge session time
4500 // CATEGORY: OTHER
4501 // FIELD - The time taken for each charge
4502 // OS: O DR
4503 FIELD_TIME_OF_CHARGE_MS = 1029;
4504
4505 // Device Headset time between charge
4506 // CATEGORY: OTHER
4507 // FIELD - The time in between each charge
4508 // OS: O DR
4509 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004510
Antony Sargentca701a22017-07-05 17:02:00 -07004511 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4512 // -> Forget button.
4513 // CATEGORY: SETTINGS
4514 // OS: O DR
4515 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4516
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004517 // An event from the camera service
4518 // CATEGORY: OTHER
4519 // SUBTYPE: CameraEvent
4520 // OS: O DR
4521 ACTION_CAMERA_EVENT = 1032;
4522
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004523 // OPEN: Settings > Trampoline Intent > Settings page
4524 // CATEGORY: SETTINGS
4525 // OS: O DR
4526 TRAMPOLINE_SETTINGS_EVENT = 1033;
4527
Chris Wren9a4f2662017-06-29 10:10:02 -04004528 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4529
Malcolm Chen21062542017-06-20 11:36:01 -07004530 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4531 // CATEGORY: SETTINGS
4532 // OS: O MR
4533 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4534
4535 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4536 // CATEGORY: SETTINGS
4537 // OS: O MR
4538 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4539
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004540 // FIELD - State of asynchronous ranking when Settings search result is clicked
4541 // CATEGORY: SETTINGS
4542 // OS: O MR
4543 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4544
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004545 // ACTION: Settings > Connected devices > SMS Mirroring
4546 // CATEGORY: SETTINGS
4547 // OS: O MR
4548 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4549
Kang Li2c571892017-07-05 14:47:32 -07004550 // ACTION: Chooser picked a ranked target.
4551 // CATEGORY: GLOBAL_SYSTEM_UI
4552 // OS: O MR
4553 ACTION_TARGET_SELECTED = 1085;
4554
4555 // FIELD - is category used in Chooser: 1.
4556 // Type: int encoded boolean
4557 // CATEGORY: GLOBAL_SYSTEM_UI
4558 // OS: O MR
4559 FIELD_IS_CATEGORY_USED = 1086;
4560
4561 // FIELD - ranked position of selected target for Chooser.
4562 // CATEGORY: GLOBAL_SYSTEM_UI
4563 // OS: O MR
4564 FIELD_RANKED_POSITION = 1087;
4565
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004566 // OPEN: Settings > Data plan usage
4567 // CATEGORY: SETTINGS
4568 // OS: O MR
4569 DATA_PLAN_USAGE_SUMMARY = 1088;
4570
Doris Lingce007eb2017-08-09 13:59:46 -07004571 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4572 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4573
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004574 // ACTION: Logged when the app has notified that it has fully drawn. See
4575 // Activity.reportFullyDrawn().
4576 APP_TRANSITION_REPORTED_DRAWN = 1090;
4577
4578 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4579 // the app transition.
4580 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4581
Daniel Nishia86115f2017-08-23 10:27:08 -07004582 // OPEN: Settings > Storage > Photos & Videos
4583 // CATEGORY: SETTINGS
4584 // OS: O MR
4585 APPLICATIONS_STORAGE_PHOTOS = 1092;
4586
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004587 // ACTION: Logged when the status bar icons change.
4588 // OS: O MR
4589 STATUS_BAR_ICONS_CHANGED = 1093;
4590
4591 // FIELD: Bitfield indicating which icons are shown.
4592 // OS: O MR
4593 FIELD_STATUS_ICONS = 1094;
4594
4595 // FIELD: Number of status icons currently shown.
4596 // OS: O MR
4597 FIELD_NUM_STATUS_ICONS = 1095;
4598
Jack He4b605792017-09-01 11:48:30 -07004599 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4600 // CATEGORY: SETTINGS
4601 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004602 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004603
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004604 // FIELD - Whether smart suggestion ranking was enabled or not
4605 // Type: int encoded boolean
4606 // CATEGORY: SETTINGS
4607 // OS: O MR
4608 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4609
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004610 // ACTION: The device boots
4611 ACTION_BOOT = 1098;
4612
4613 // FIELD: A string value representing some state of the platform, e.g., boot reason
4614 FIELD_PLATFORM_REASON = 1099;
4615
Jan Althaus786a39d2017-09-15 10:41:16 +02004616 // CATEGORY: The category for all actions relating to selection session logging.
4617 // OS: O MR
4618 TEXT_SELECTION_SESSION = 1100;
4619
4620 // ACTION: A selection session started (i.e. the selection handles appeared)
4621 // CATEGORY: TEXT_SELECTION_SESSION
4622 // OS: O MR
4623 ACTION_TEXT_SELECTION_START = 1101;
4624
4625 // ACTION: The user modified the selection (e.g. by dragging the handles)
4626 // CATEGORY: TEXT_SELECTION_SESSION
4627 // OS: O MR
4628 ACTION_TEXT_SELECTION_MODIFY = 1102;
4629
4630 // ACTION: The user modified the selection by pressing the "select all" button.
4631 // CATEGORY: TEXT_SELECTION_SESSION
4632 // OS: O MR
4633 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4634
4635 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4636 // CATEGORY: TEXT_SELECTION_SESSION
4637 // OS: O MR
4638 ACTION_TEXT_SELECTION_RESET = 1104;
4639
4640 // ACTION: Smart selection made a single word prediction
4641 // CATEGORY: TEXT_SELECTION_SESSION
4642 // OS: O MR
4643 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4644
4645 // ACTION: Smart selection made a multi word prediction
4646 // CATEGORY: TEXT_SELECTION_SESSION
4647 // OS: O MR
4648 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4649
4650 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4651 // CATEGORY: TEXT_SELECTION_SESSION
4652 // OS: O MR
4653 ACTION_TEXT_SELECTION_AUTO = 1107;
4654
4655 // ACTION: A selection session ended with the user typing over the text
4656 // CATEGORY: TEXT_SELECTION_SESSION
4657 // OS: O MR
4658 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4659
4660 // ACTION: A selection session ended with the user copying the text
4661 // CATEGORY: TEXT_SELECTION_SESSION
4662 // OS: O MR
4663 ACTION_TEXT_SELECTION_COPY = 1109;
4664
4665 // ACTION: A selection session ended with the user pasting over the text
4666 // CATEGORY: TEXT_SELECTION_SESSION
4667 // OS: O MR
4668 ACTION_TEXT_SELECTION_PASTE = 1110;
4669
4670 // ACTION: A selection session ended with the user cutting the text
4671 // CATEGORY: TEXT_SELECTION_SESSION
4672 // OS: O MR
4673 ACTION_TEXT_SELECTION_CUT = 1111;
4674
4675 // ACTION: A selection session ended with the user pressing the share button
4676 // CATEGORY: TEXT_SELECTION_SESSION
4677 // OS: O MR
4678 ACTION_TEXT_SELECTION_SHARE = 1112;
4679
4680 // ACTION: A selection session ended with the user pressing the smart share button
4681 // CATEGORY: TEXT_SELECTION_SESSION
4682 // OS: O MR
4683 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4684
4685 // ACTION: A selection session ended with the user dragging the text
4686 // CATEGORY: TEXT_SELECTION_SESSION
4687 // OS: O MR
4688 ACTION_TEXT_SELECTION_DRAG = 1114;
4689
4690 // ACTION: A selection session ended with the user abandoning the selection
4691 // CATEGORY: TEXT_SELECTION_SESSION
4692 // OS: O MR
4693 ACTION_TEXT_SELECTION_ABANDON = 1115;
4694
4695 // ACTION: A selection session ended with the user picking an unhandled action bar item
4696 // CATEGORY: TEXT_SELECTION_SESSION
4697 // OS: O MR
4698 ACTION_TEXT_SELECTION_OTHER = 1116;
4699
4700 // FIELD: Time in milliseconds from the start of the session to this event
4701 // CATEGORY: TEXT_SELECTION_SESSION
4702 // OS: O MR
4703 FIELD_SELECTION_SINCE_START = 1117;
4704
4705 // FIELD: time in milliseconds between the last event in the session and this one
4706 // CATEGORY: TEXT_SELECTION_SESSION
4707 // OS: O MR
4708 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4709
4710 // FIELD: a random uid for a selection session (lasting from select start to end)
4711 // CATEGORY: TEXT_SELECTION_SESSION
4712 // OS: O MR
4713 FIELD_SELECTION_SESSION_ID = 1119;
4714
4715 // FIELD: the sequence number of the event in the session
4716 // CATEGORY: TEXT_SELECTION_SESSION
4717 // OS: O MR
4718 FIELD_SELECTION_SESSION_INDEX = 1120;
4719
4720 // FIELD: a concatenation of the widget type and ML model version.
4721 // CATEGORY: TEXT_SELECTION_SESSION
4722 // OS: O MR
4723 FIELD_SELECTION_VERSION_TAG = 1121;
4724
4725 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4726 // packed 16bit integers. (start in MSBs, end in LSBs)
4727 // CATEGORY: TEXT_SELECTION_SESSION
4728 // OS: O MR
4729 FIELD_SELECTION_RANGE = 1122;
4730
4731 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4732 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4733 // CATEGORY: TEXT_SELECTION_SESSION
4734 // OS: O MR
4735 FIELD_SELECTION_SMART_RANGE = 1123;
4736
Felipe Lemeb22d6352017-09-08 20:03:53 -07004737 // The value of an autofillable and savable view was reset
4738 // Package: Package of app that was autofilled
4739 // OS: O MR
4740 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4741 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004742 // NOTE: starting on OS P, it also added the following fields:
4743 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004744 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004745 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004746 AUTOFILL_VALUE_RESET = 1124;
4747
4748 // Tag of AUTOFILL_VALUE_RESET
4749 // OS: O MR
4750 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4751
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004752 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004753 // Package: Package of app that was autofilled
4754 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004755 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004756 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4757
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004758 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004759 // Package: Package of app that was autofilled
4760 // OS: O MR
4761 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004762 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004763 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4764
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004765 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004766 // Package: Package of app that was autofilled
4767 // OS: O MR
4768 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004769 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004770 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4771
Felipe Leme2c888422017-10-26 12:46:35 -07004772 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004773 // Package: Package of app that is autofilled
4774 // OS: O MR
4775 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4776 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004777 // NOTE: starting on OS P, it also added the following fields:
4778 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004779 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004780 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004781 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4782
4783 // FIELD - Type of save object passed by the service when the Save UI is shown
4784 // OS: O MR
4785 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4786
Felipe Leme2c888422017-10-26 12:46:35 -07004787 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004788 // Package: Package of app that is autofilled
4789 // OS: O MR
4790 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4791 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004792 // NOTE: starting on OS P, it also added the following fields:
4793 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004794 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004795 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004796 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4797
Felipe Leme2c888422017-10-26 12:46:35 -07004798 // 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 -07004799 // Package: Package of app that is autofilled
4800 // OS: O MR
4801 // Type TYPE_UNKNOWN: The link was not properly set by the service
4802 // Type TYPE_OPEN: The link launched an activity
4803 // Type TYPE_FAILURE: The link could not launc an activity
4804 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4805 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004806 // NOTE: starting on OS P, it also added the following fields:
4807 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004808 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004809 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004810 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4811
4812 // Result of the validation on save when an autofill service provided a validator
4813 // Package: Package of app that is autofilled
4814 // OS: O MR
4815 // Type TYPE_FAILURE: The validation could not be performed due to an error
4816 // Type TYPE_SUCCESS: The validation passed
4817 // Type TYPE_DISMISS: The validation failed
4818 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4819 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004820 // NOTE: starting on OS P, it also added the following fields:
4821 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004822 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004823 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004824 AUTOFILL_SAVE_VALIDATION = 1133;
4825
Felipe Leme2c888422017-10-26 12:46:35 -07004826 // 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 -07004827 // provided by the autofill service
4828 // Package: Package of app that is autofilled
4829 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004830 // Type TYPE_OPEN: The autofill save UI was restored
4831 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004832 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004833 // NOTE: starting on OS P, it also added the following fields:
4834 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004835 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004836 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004837 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4838
Felipe Leme9d414492017-09-20 13:55:28 -07004839 // Autofill service called API that disables itself
4840 // Package: Package of the autofill service
4841 // OS: O MR
4842 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4843
Felipe Leme21fb1a32018-05-21 11:18:46 -07004844 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004845 // Reports how long it took to show the autofill UI after a field was focused
4846 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004847 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4848 // Package: Package of the autofill service
4849 // OS: O MR
4850 AUTOFILL_UI_LATENCY = 1136;
4851
Chris Wren21a2e722017-10-02 17:44:53 -04004852 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4853 // OS: O MR
4854 NOTIFICATION_SNOOZE_CLICKED = 1137;
4855
4856 // Action: user selected a notification snooze duration from the drop down
4857 // OS: O MR
4858 NOTIFICATION_SELECT_SNOOZE = 1138;
4859
4860 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4861 // OS: O MR
4862 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4863
4864 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4865 // OS: O MR
4866 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4867
4868 // Action: user tapped undo on the notification snooze leave-behind
4869 // OS: O MR
4870 NOTIFICATION_UNDO_SNOOZE = 1141;
4871
4872 // Action: user togged the visibility of the notification snooze options drop down
4873 // OS: O MR
4874 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4875
Romain Guy62e8c172017-10-24 21:37:34 +01004876 // OPEN: Settings > Display > Colors
4877 // CATEGORY: SETTINGS
4878 // OS: O MR
4879 COLOR_MODE_SETTINGS = 1143;
4880
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004881 // Enclosing category for group of APP_TRANSITION_FOO events,
4882 // logged when we cancel an app transition.
4883 APP_TRANSITION_CANCELLED = 1144;
4884
Felipe Lemeb659adb2018-01-18 15:21:36 -08004885 // Tag of a field representing a duration on autofill-related metrics.
4886 FIELD_AUTOFILL_DURATION = 1145;
4887
Doris Lingce007eb2017-08-09 13:59:46 -07004888 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4889
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004890 // OPEN: Settings > Network & Internet > Mobile network
4891 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004892 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004893
4894 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4895 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004896 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004897
4898 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4899 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004900 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004901
4902 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4903 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004904 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004905
4906 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4907 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004908 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004909
4910 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4911 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004912 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004913
4914 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4915 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004916 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004917
4918 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4919 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004920 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004921
4922 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4923 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004924 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004925
4926 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4927 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004928 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004929
4930 // ACTION: Settings > Network & Internet > Mobile network > Network
4931 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004932 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004933
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004934 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004935 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004936
4937 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4938 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004939 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004940
4941 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4942 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004943 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004944
4945 // OPEN: Settings > Network & Internet > Mobile network > System select
4946 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004947 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004948
4949 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4950 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004951 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004952
4953 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4954 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004955 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004956
Fan Zhanga2f2c912017-08-15 17:20:37 -07004957 // OPEN: Settings > Developer Options > Experiment dashboard
4958 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004959 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004960
Julia Reynolds005c8b92017-08-24 10:35:53 -04004961 // OPEN: Settings > Notifications > [App] > Topic Notifications
4962 // CATEGORY: SETTINGS
4963 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004964 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004965
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004966 // OPEN: Settings > Developer options > Enable > Info dialog
4967 // CATEGORY: SETTINGS
4968 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004969 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004970
jeffreyhuang57359c02017-09-18 11:34:00 -07004971 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4972 // CATEGORY: SETTINGS
4973 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004974 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004975
Kevin Chyn60eea712017-09-26 16:03:05 -07004976 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4977 // CATEGORY: SETTINGS
4978 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004979 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004980
jeffreyhuang37c4b132017-09-21 14:09:20 -07004981 // OPEN: Settings > Developer options > USB debugging > Info dialog
4982 // CATEGORY: SETTINGS
4983 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004984 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004985
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004986 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4987 // CATEGORY: SETTINGS
4988 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004989 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004990
Fan Zhange5b34302017-10-09 15:58:38 -07004991 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004992 // CATEGORY: SETTINGS
4993 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004994 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4995
jeffreyhuang49de1252017-10-05 15:25:14 -07004996 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4997 // CATEGORY: SETTINGS
4998 // OS: P
4999 DIALOG_LOG_PERSIST = 1225;
5000
Beverly04216872017-09-28 10:55:32 -04005001 // ACTION: DND Settings > Priority only allows > Alarms toggle
5002 // SUBTYPE: 0 is off, 1 is on
5003 // CATEGORY: SETTINGS
5004 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005005 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04005006
5007 // ACTION: DND Settings > Priority only allows > Media toggle
5008 // SUBTYPE: 0 is off, 1 is on
5009 // CATEGORY: SETTINGS
5010 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005011 ACTION_ZEN_ALLOW_MEDIA = 1227;
5012
5013 // An autofill service explicitly defined which view should commit the autofill context
5014 // Package: Package of app that is autofilled
5015 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005016 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005017 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07005018 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005019 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005020 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
5021
5022 // The autofill context was commited when the user clicked a view explicitly marked by the
5023 // service as committing it
5024 // Package: Package of app that is autofilled
5025 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005026 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07005027 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005028 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005029 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04005030
Malcolm Chen4f17b172017-10-19 13:54:07 -07005031 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
5032 // CATEGORY: SETTINGS
5033 // OS: P
5034 WIFI_CALLING_FOR_SUB = 1230;
5035
Felipe Leme17292d12017-10-24 14:03:10 -07005036 // An autofill service asked to disable autofill for a given application.
5037 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005038 // OS: P
5039 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08005040 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005041 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005042 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005043 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5044
5045 // An autofill service asked to disable autofill for a given activity.
5046 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005047 // OS: P
5048 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5049 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005050 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005051 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005052 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005053 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5054
jackqdyuleide3b7af2017-10-24 16:32:58 -07005055 // ACTION: Stop an app and turn on background check
5056 // CATEGORY: SETTINGS
5057 // OS: P
5058 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5059
5060 // FIELD: The action type for each anomaly
5061 // CATEGORY: SETTINGS
5062 // OS: P
5063 FIELD_ANOMALY_ACTION_TYPE = 1234;
5064
5065 // OPEN: Settings -> Battery -> Wakelock anomaly
5066 // CATEGORY: SETTINGS
5067 // OS: P
5068 ANOMALY_TYPE_WAKELOCK = 1235;
5069
5070 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5071 // CATEGORY: SETTINGS
5072 // OS: P
5073 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5074
5075 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5076 // CATEGORY: SETTINGS
5077 // OS: P
5078 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5079
Fan Zhanga4a01722017-10-30 17:54:24 -07005080 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5081 // OS: P
5082 DIALOG_OEM_LOCK_INFO = 1238;
5083
jackqdyulei331fafb2017-11-01 14:01:24 -07005084 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5085 // CATEGORY: SETTINGS
5086 // OS: P
5087 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5088
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005089 // Open: Settings > System > About phone > IMEI
5090 // CATEGORY: SETTINGS
5091 // OS: P
5092 DIALOG_IMEI_INFO = 1240;
5093
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005094 // In permission action fields tagged like this reference the permission affected
5095 FIELD_PERMISSION = 1241;
5096
5097 // ACTION: An app requested a permission and we asked to user to approve the request
5098 // PACKAGE: The package name of the app requesting the permission
5099 // Tag FIELD_PERMISSION: Name of the permission requested
5100 ACTION_PERMISSION_REQUESTED = 1242;
5101
5102 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5103 // or automatically. In the second case there will not be an
5104 // ACTION_PERMISSION_REQUESTED.
5105 // PACKAGE: The package name of the app that was granted the permission
5106 // Tag FIELD_PERMISSION: Name of the permission granted
5107 ACTION_PERMISSION_GRANTED = 1243;
5108
5109 // ACTION: An app requested the a permission and the request was denied by the user or a device
5110 // policy
5111 // PACKAGE: The package name of the app requesting the permission
5112 // Tag FIELD_PERMISSION: Name of the permission denied
5113 ACTION_PERMISSION_DENIED = 1244;
5114
5115 // ACTION: A permission was revoked
5116 // PACKAGE: The package name of the app the permission was revoked for
5117 // Tag FIELD_PERMISSION: Name of the permission revoked
5118 ACTION_PERMISSION_REVOKED = 1245;
5119
jeffreyhuang594314c2017-11-01 10:26:15 -07005120 // OPEN: Settings > System > About Phone > Sim status
5121 // CATEGORY: SETTINGS
5122 // OS: P
5123 DIALOG_SIM_STATUS = 1246;
5124
jeffreyhuang3bd59782017-11-02 11:08:28 -07005125 // OPEN: Settings > System > About Phone > Android Version
5126 // CATEGORY: SETTINGS
5127 // OS: P
5128 DIALOG_FIRMWARE_VERSION = 1247;
5129
jackqdyulei8fe97542017-11-08 16:23:43 -08005130 // OPEN: Settings > Network & internet > Menu > Private DNS
5131 // CATEGORY: SETTINGS
5132 // OS: P
5133 DIALOG_PRIVATE_DNS = 1248;
5134
5135 // ACTION: A private dns mode been selected by user
5136 // CATEGORY: SETTINGS
5137 // OS: P
5138 ACTION_PRIVATE_DNS_MODE = 1249;
5139
Jan Althausae5eb832017-11-06 12:31:59 +01005140 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5141 // CATEGORY: TEXT_SELECTION_SESSION
5142 // OS: P
5143 FIELD_SELECTION_RANGE_START = 1250;
5144
5145 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5146 // CATEGORY: TEXT_SELECTION_SESSION
5147 // OS: P
5148 FIELD_SELECTION_RANGE_END = 1251;
5149
5150 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5151 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5152 // CATEGORY: TEXT_SELECTION_SESSION
5153 // OS: P
5154 FIELD_SELECTION_SMART_RANGE_START = 1252;
5155
5156 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5157 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5158 // CATEGORY: TEXT_SELECTION_SESSION
5159 // OS: P
5160 FIELD_SELECTION_SMART_RANGE_END = 1253;
5161
5162 // FIELD: the entity type of the text currently selected.
5163 // CATEGORY: TEXT_SELECTION_SESSION
5164 // OS: P
5165 FIELD_SELECTION_ENTITY_TYPE = 1254;
5166
5167 // FIELD: the type of widget the selection was made in.
5168 // CATEGORY: TEXT_SELECTION_SESSION
5169 // OS: P
5170 FIELD_SELECTION_WIDGET_TYPE = 1255;
5171
5172 // FIELD: the name of the text classifier model used.
5173 // CATEGORY: TEXT_SELECTION_SESSION
5174 // OS: P
5175 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5176
Beverly625442d2017-11-03 17:27:02 -04005177 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5178 // CATEGORY: SETTINGS
5179 // OS: P
5180 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5181
5182 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5183 // CATEGORY: SETTINGS
5184 // OS: P
5185 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5186
5187 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5188 // CATEGORY: SETTINGS
5189 // OS: P
5190 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5191
5192 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5193 // CATEGORY: SETTINGS
5194 // OS: P
5195 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5196
5197 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5198 // CATEGORY: SETTINGS
5199 // OS: P
5200 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5201
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005202 // FIELD: the version of the widget the selection was made in.
5203 // CATEGORY: TEXT_SELECTION_SESSION
5204 // OS: P
5205 FIELD_SELECTION_WIDGET_VERSION = 1262;
5206
jackqdyulei63193602017-11-27 13:46:48 -08005207 // OPEN: Settings > Battery(version 2)
5208 // CATEGORY: SETTINGS
5209 // OS: P
5210 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5211
jackqdyulei6139eab2017-11-29 14:38:32 -08005212 // OPEN: Settings > Connected devices > Connection preferences
5213 // CATEGORY: SETTINGS
5214 // OS: P
5215 CONNECTION_DEVICE_ADVANCED = 1264;
5216
Fan Zhang5235c052017-12-05 13:49:35 -08005217 // OPEN: Settings > Security > Screen lock gear icon
5218 // CATEGORY: SETTINGS
5219 // OS: P
5220 SCREEN_LOCK_SETTINGS = 1265;
5221
Beverlybf16c142017-11-27 16:21:34 -05005222 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5223 // CATEGORY: SETTINGS
5224 // OS: P
5225 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005226
Beverlybf16c142017-11-27 16:21:34 -05005227 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5228 // CATEGORY: SETTINGS
5229 // OS: P
5230 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5231
5232 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5233 // CATEGORY: SETTINGS
5234 // OS: P
5235 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5236
5237 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5238 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5239 // CATEGORY: SETTINGS
5240 // OS: P
5241 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5242
5243 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5244 // CATEGORY: SETTINGS
5245 // OS: P
5246 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5247
Felipe Leme5e047202017-12-05 16:30:06 -08005248 // Tag of a field for the number of ids in an autofill field classification request.
5249 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5250
5251 // An autofill service updated its user data
5252 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005253 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5254 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005255 // OS: P
5256 AUTOFILL_USERDATA_UPDATED = 1272;
5257
5258 // Some data entered by the user matched the field classification requested by the service.
5259 // Package: Package of app that is autofilled
5260 // Counter: number of matches found
5261 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005262 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005263 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5264 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005265 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005266 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005267 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5268
5269 // Tag used to report autofill field classification scores
5270 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5271
Jerry Zhang18be8db2017-12-15 15:24:41 -08005272 // ACTION: Usb config has been changed to charging
5273 // CATEGORY: SETTINGS
5274 // OS: P
5275 ACTION_USB_CONFIG_CHARGING = 1275;
5276
5277 // ACTION: Usb config has been changed to mtp (file transfer)
5278 // CATEGORY: SETTINGS
5279 // OS: P
5280 ACTION_USB_CONFIG_MTP = 1276;
5281
5282 // ACTION: Usb config has been changed to ptp (photo transfer)
5283 // CATEGORY: SETTINGS
5284 // OS: P
5285 ACTION_USB_CONFIG_PTP = 1277;
5286
5287 // ACTION: Usb config has been changed to rndis (usb tethering)
5288 // CATEGORY: SETTINGS
5289 // OS: P
5290 ACTION_USB_CONFIG_RNDIS = 1278;
5291
5292 // ACTION: Usb config has been changed to midi
5293 // CATEGORY: SETTINGS
5294 // OS: P
5295 ACTION_USB_CONFIG_MIDI = 1279;
5296
5297 // ACTION: Usb config has been changed to accessory
5298 // CATEGORY: SETTINGS
5299 // OS: P
5300 ACTION_USB_CONFIG_ACCESSORY = 1280;
5301
jackqdyuleie04138d2018-01-08 17:51:57 -08005302 // OPEN: Settings > Battery > Smart Battery
5303 // CATEGORY: SETTINGS
5304 // OS: P
5305 FUELGAUGE_SMART_BATTERY = 1281;
5306
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005307 // ACTION: User tapped Screenshot in the power menu.
5308 // CATEGORY: GLOBAL_SYSTEM_UI
5309 // OS: P
5310 ACTION_SCREENSHOT_POWER_MENU = 1282;
5311
Felipe Leme3e099112018-01-18 12:57:45 -08005312 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005313 // CATEGORY: SETTINGS
5314 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005315 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005316
Felipe Leme3e099112018-01-18 12:57:45 -08005317 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005318 // CATEGORY: SETTINGS
5319 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005320 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005321
jackqdyuleid9821242018-01-09 17:42:52 -08005322 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5323 // CATEGORY: SETTINGS
5324 // OS: P
5325 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5326
Beverly92c25682018-01-22 09:27:19 -05005327 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5328 // CATEGORY: SETTINGS
5329 // OS: P
5330 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5331
Mike Digmanc94759d2018-01-23 11:01:21 -08005332 // ACTION: Rotate suggestion accepted in rotation locked mode
5333 // CATEGORY: GLOBAL_SYSTEM_UI
5334 // OS: P
5335 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5336
5337 // OPEN: Rotation suggestion shown in rotation locked mode
5338 // CATEGORY: GLOBAL_SYSTEM_UI
5339 // OS: P
5340 ROTATION_SUGGESTION_SHOWN = 1288;
5341
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005342 // An autofill service was bound using an unofficial(but still supported) permission.
5343 // Package: Package of the autofill service
5344 // OS: P
5345 AUTOFILL_INVALID_PERMISSION = 1289;
5346
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005347 // OPEN: QS Alarm tile shown
5348 // ACTION: QS Alarm tile tapped
5349 // SUBTYPE: 0 is off, 1 is on
5350 // CATEGORY: QUICK_SETTINGS
5351 // OS: P
5352 QS_ALARM = 1290;
5353
Jerry Zhang79147972018-01-31 16:04:06 -08005354 // OPEN: Settings->Connected Devices->USB->(click on details link)
5355 // CATEGORY: SETTINGS
5356 // OS: P
5357 USB_DEVICE_DETAILS = 1291;
5358
Michael Wright98bdc512018-01-26 19:15:57 +00005359 // OPEN: Settings > Accessibility > Vibration
5360 // CATEGORY: SETTINGS
5361 // OS: P
5362 ACCESSIBILITY_VIBRATION = 1292;
5363
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00005364 // OPEN: Settings > Accessibility > Vibration > Notification vibration
Michael Wright98bdc512018-01-26 19:15:57 +00005365 // CATEGORY: SETTINGS
5366 // OS: P
5367 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5368
5369 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5370 // CATEGORY: SETTINGS
5371 // OS: P
5372 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5373
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005374 // OPEN: Volume panel > output chooser dialog
5375 // OS: P
5376 OUTPUT_CHOOSER = 1295;
5377
5378 // Action: Volume panel > output chooser dialog > tap on device
5379 // OS: P
5380 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5381
5382 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5383 // OS: P
5384 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5385
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005386 // OPEN: TV Settings > Home theater control
5387 // OS: P
5388 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5389
5390 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5391 // OS: P
5392 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5393
5394 // OPEN: TV Settings > Device
5395 // OS: P
5396 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5397
5398 // OPEN: TV Settings > Network > Proxy settings
5399 // OS: P
5400 DIALOG_TV_NETWORK_PROXY = 1301;
5401
Makoto Onuki698f7a02018-02-13 15:02:23 -08005402 // Events for battery saver turning on/off and/or the interactive state changes.
5403 // OS: P
5404 BATTERY_SAVER = 1302;
5405
5406 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5407 // OS: P
5408 FIELD_INTERACTIVE = 1303;
5409
5410 // Time spent in milliseconds in the current mode.
5411 // OS: P
5412 FIELD_DURATION_MILLIS = 1304;
5413
Chris Wren8f7a1442018-05-14 17:16:31 -04005414 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005415 // OS: P
5416 FIELD_START_BATTERY_UA = 1305;
5417
Chris Wren8f7a1442018-05-14 17:16:31 -04005418 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005419 // OS: P
5420 FIELD_END_BATTERY_UA = 1306;
5421
5422 // Battery level in % (0-100) when the current "mode" started.
5423 // OS: P
5424 FIELD_START_BATTERY_PERCENT = 1307;
5425
5426 // Battery level in % (0-100) when this event was created.
5427 // OS: P
5428 FIELD_END_BATTERY_PERCENT = 1308;
5429
Christine Frankse257e452018-01-18 11:06:54 -08005430 // ACTION: Settings > Display > Night Light
5431 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5432 // CATEGORY: SETTINGS
5433 // OS: P
5434 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5435
5436 // ACTION: Settings > Display > Night Light
5437 // CATEGORY: SETTINGS
5438 // SUBTYPE: 0 is starting time, 1 is ending time
5439 // OS: P
5440 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5441
5442 // FIELD: Current mode corresponding to a QS tile
5443 // CATEGORY: QUICK SETTINGS
5444 // OS: P
5445 FIELD_QS_MODE = 1311;
5446
Jerry Zhang92306d82018-02-12 18:12:41 -08005447 // OPEN: Settings->Developer Options->Default USB
5448 // CATEGORY: SETTINGS
5449 // OS: P
5450 USB_DEFAULT = 1312;
5451
Jan Althaus31efdc32018-02-19 22:23:13 +01005452 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5453 // OS: P
5454 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5455
5456 // FIELD: milliseconds spent generating links.
5457 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5458 // OS: P
5459 FIELD_LINKIFY_LATENCY = 1314;
5460
5461 // FIELD: length of the input text in characters.
5462 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5463 // OS: P
5464 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5465
5466 // FIELD: number of links detected.
5467 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5468 // OS: P
5469 FIELD_LINKIFY_NUM_LINKS = 1316;
5470
5471 // FIELD: length of all links in characters.
5472 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5473 // OS: P
5474 FIELD_LINKIFY_LINK_LENGTH = 1317;
5475
5476 // FIELD: the type of entity the stats are for.
5477 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5478 // OS: P
5479 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5480
5481 // FIELD: a random uid for a single call to generateLinks
5482 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5483 // OS: P
5484 FIELD_LINKIFY_CALL_ID = 1319;
5485
Calin Juravle759fbda2018-02-20 19:52:30 +00005486 // FIELD: The compiler filter used when when optimizing the package.
5487 // Logged together with app transition events.
5488 // OS: P
5489 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5490
5491 // FIELD: The reason for optimizing the package.
5492 // Logged together with app transition events.
5493 // OS: P
5494 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5495
Emilian Peev6bf0a552018-02-10 02:15:49 +00005496 // FIELD: The camera API level used.
5497 // CATEGORY: CAMERA
5498 // OS: P
5499 FIELD_CAMERA_API_LEVEL = 1322;
5500
jackqdyulei73e6b342018-02-26 14:44:50 -08005501 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5502 // CATEGORY: SETTINGS
5503 // OS: P
5504 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5505
jackqdyuleibb60ea22018-02-26 17:18:12 -08005506 // OPEN: Settings > Battery > Battery tip
5507 // CATEGORY: SETTINGS
5508 // OS: P
5509 ACTION_BATTERY_TIP_SHOWN = 1324;
5510
Maggieb9d76322018-02-16 18:00:30 -08005511 // OPEN: Settings > Security & Location > Location > See all
5512 // CATEGORY: SETTINGS
5513 // OS: P
5514 RECENT_LOCATION_REQUESTS_ALL = 1325;
5515
Evan Laird404a85c2018-02-28 15:31:29 -05005516 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5517 // CATEGORY: GLOBAL_SYSTEM_UI
5518 // OS: P
5519 FIELD_GESTURE_X_PERCENT = 1326;
5520
5521 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5522 // CATEGORY: GLOBAL_SYSTEM_UI
5523 // OS: P
5524 FIELD_GESTURE_Y_PERCENT = 1327;
5525
5526 // ACTION: Expand the notification panel while unlocked
5527 // CATEGORY: GLOBAL_SYSTEM_UI
5528 // OS: P
5529 ACTION_PANEL_VIEW_EXPAND = 1328;
5530
Evan Laird404a85c2018-02-28 15:31:29 -05005531 // FIELD: Rotation of the device
5532 // CATEGORY: GLOBAL_SYSTEM_UI
5533 // OS: P
5534 FIELD_DEVICE_ROTATION = 1329;
5535
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005536 // OPEN: TV Settings > Inputs > Input Options
5537 // CATEGORY: SETTINGS
5538 // OS: P
5539 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5540
5541 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5542 // CATEGORY: SETTINGS
5543 // OS: P
5544 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5545
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005546 // ACTION: DND Settings > What to block > full screen intents
5547 // SUBTYPE: false is allowed, true is blocked
5548 // CATEGORY: SETTINGS
5549 // OS: 6.0
5550 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5551
5552 // ACTION: DND Settings > What to block
5553 // SUBTYPE: false is allowed, true is blocked
5554 // OS: P
5555 ACTION_ZEN_BLOCK_LIGHT = 1333;
5556
5557 // ACTION: DND Settings > What to block
5558 // SUBTYPE: false is allowed, true is blocked
5559 // OS: P
5560 ACTION_ZEN_BLOCK_PEEK = 1334;
5561
5562 // ACTION: DND Settings > What to block
5563 // SUBTYPE: false is allowed, true is blocked
5564 // OS: P
5565 ACTION_ZEN_BLOCK_STATUS = 1335;
5566
5567 // ACTION: DND Settings > What to block
5568 // SUBTYPE: false is allowed, true is blocked
5569 // OS: P
5570 ACTION_ZEN_BLOCK_BADGE = 1336;
5571
5572 // ACTION: DND Settings > What to block
5573 // SUBTYPE: false is allowed, true is blocked
5574 // OS: P
5575 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5576
5577 // ACTION: DND Settings > What to block
5578 // SUBTYPE: false is allowed, true is blocked
5579 // OS: P
5580 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5581
5582 // OPEN: DND Settings > What to block
5583 // OS: P
5584 ZEN_WHAT_TO_BLOCK = 1339;
5585
Beverly8fe33ba2018-03-05 14:32:35 -05005586 // ACTION: DND Settings > Priority only allows > System toggle
5587 // SUBTYPE: 0 is off, 1 is on
5588 // CATEGORY: SETTINGS
5589 // OS: P
5590 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5591
5592 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5593 // CATEGORY: SETTINGS
5594 // OS: P
5595 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5596
5597 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5598 // CATEGORY: SETTINGS
5599 // OS: P
5600 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5601
5602 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5603 // CATEGORY: SETTINGS
5604 // OS: P
5605 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5606
5607 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5608 // CATEGORY: SETTINGS
5609 // OS: P
5610 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5611
Julia Reynolds8dff1862018-03-06 14:20:40 -05005612 // Notification Guts, active app ops variant
5613 // OS: P
5614 APP_OPS_GUTS = 1345;
5615
5616 // ACTION: Notification Guts, active app ops variant > Settings button
5617 // OS: P
5618 ACTION_OPS_GUTS_SETTINGS = 1346;
5619
Lei Yu5674d2d2018-03-08 10:19:43 -08005620 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5621 // OS: P
5622 ACTION_APP_RESTRICTION_TIP = 1347;
5623
5624 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5625 // OS: P
5626 ACTION_HIGH_USAGE_TIP = 1348;
5627
Lei Yue93e5602018-03-08 12:15:38 -08005628 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5629 // OS: P
5630 ACTION_SUMMARY_TIP = 1349;
5631
5632 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5633 // OS: P
5634 ACTION_SMART_BATTERY_TIP = 1350;
5635
5636 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5637 // OS: P
5638 ACTION_EARLY_WARNING_TIP = 1351;
5639
5640 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5641 // OS: P
5642 ACTION_LOW_BATTERY_TIP = 1352;
5643
5644 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5645 // OS: P
5646 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5647
5648 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5649 // OS: P
5650 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5651
Victor Chang76817b82018-03-09 17:22:52 +00005652 // OPEN: Settings > Date & time > Select time zone -> Region
5653 // CATEGORY: SETTINGS
5654 // OS: P
5655 SETTINGS_ZONE_PICKER_REGION = 1355;
5656
5657 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5658 // CATEGORY: SETTINGS
5659 // OS: P
5660 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5661
5662 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5663 // CATEGORY: SETTINGS
5664 // OS: P
5665 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5666
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005667 // Action: notification shade > manage notifications
5668 // OS: P
5669 ACTION_MANAGE_NOTIFICATIONS = 1358;
5670
Chris Wrenaa571c62018-03-14 12:16:04 -04005671 // This value should never appear in log outputs - it is reserved for
5672 // internal platform metrics use.
5673 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5674
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005675 // OPEN: Settings > Gestures > Prevent Ringing
5676 // OS: P
5677 SETTINGS_PREVENT_RINGING = 1360;
5678
Lei Yue92285a2018-03-12 11:28:40 -07005679 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5680 // CATEGORY: SETTINGS
5681 // OS: P
5682 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5683
5684 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5685 // CATEGORY: SETTINGS
5686 // OS: P
5687 ACTION_TIP_RESTRICT_APP = 1362;
5688
5689 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5690 // CATEGORY: SETTINGS
5691 // OS: P
5692 ACTION_TIP_UNRESTRICT_APP = 1363;
5693
5694 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5695 // CATEGORY: SETTINGS
5696 // OS: P
5697 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5698
5699 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5700 // CATEGORY: SETTINGS
5701 // OS: P
5702 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5703
5704 // FIELD: type of anomaly in settings app
5705 // CATEGORY: SETTINGS
5706 // OS: P
5707 FIELD_ANOMALY_TYPE = 1366;
5708
Lei Yu4f704772018-03-20 10:51:58 -07005709 // ACTION: Settings > Anomaly receiver > Anomaly received
5710 // CATEGORY: SETTINGS
5711 // OS: P
5712 ACTION_ANOMALY_TRIGGERED = 1367;
5713
Fan Zhanga85b4872018-03-26 16:52:53 -07005714 // ACTION: Settings > Condition > Device muted
5715 // CATEGORY: SETTINGS
5716 // OS: P
5717 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5718
5719 // ACTION: Settings > Condition > Device vibrate
5720 // CATEGORY: SETTINGS
5721 // OS: P
5722 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5723
hughchen226196b2018-03-27 12:04:59 +08005724 // OPEN: Settings > Connected devices > previously connected devices
5725 // CATEGORY: SETTINGS
5726 // OS: P
5727 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005728
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005729 // ACTION: A Settings Slice is requested
5730 // CATEGORY: SETTINGS
5731 // OS: P
5732 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5733
5734 // ACTION: A Settings Slice is updated with new value
5735 // CATEGORY: SETTINGS
5736 // OS: P
5737 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5738
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005739 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5740 // note: Wifi Scanning must be off for this dialog to show
5741 // CATEGORY: SETTINGS
5742 // OS: P
5743 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5744
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005745 // OPEN: Settings > System > Gestures > Swipe up gesture
5746 // CATEGORY: SETTINGS
5747 // OS: P
5748 SETTINGS_GESTURE_SWIPE_UP = 1374;
5749
Jeff Sharkey46270712018-04-02 09:53:21 -06005750 // OPEN: Settings > Storage > Dialog to format a storage volume
5751 // CATEGORY: SETTINGS
5752 // OS: P
5753 DIALOG_VOLUME_FORMAT = 1375;
5754
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005755 // OPEN: DND onboarding activity > screen on checkbox
5756 // CATEGORY: SETTINGS
5757 // OS: P
5758 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5759
5760 // OPEN: DND onboarding activity > screen off checkbox
5761 // CATEGORY: SETTINGS
5762 // OS: P
5763 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5764
5765 // OPEN: DND onboarding activity > Ok button
5766 // CATEGORY: SETTINGS
5767 // OS: P
5768 ACTION_ZEN_ONBOARDING_OK = 1378;
5769
5770 // OPEN: DND onboarding activity > Settings link
5771 // CATEGORY: SETTINGS
5772 // OS: P
5773 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5774
5775 // OPEN: DND onboarding activity
5776 // CATEGORY: SETTINGS
5777 // OS: P
5778 SETTINGS_ZEN_ONBOARDING = 1380;
5779
Fan Zhanga496b122018-04-10 12:57:56 -07005780 // OPEN: Settings > Display > Auto brightness
5781 // CATEGORY: SETTINGS
5782 // OS: P
5783 SETTINGS_AUTO_BRIGHTNESS = 1381;
5784
Kenny Guy23991102018-04-05 21:18:38 +01005785 // OPEN: Smart replies in a notification seen at least once
5786 // CATEGORY: NOTIFICATION
5787 // PACKAGE: App that posted the notification
5788 // SUBTYPE: Number of smart replies.
5789 // OS: P
5790 SMART_REPLY_VISIBLE = 1382;
5791
5792 // ACTION: Smart reply in a notification clicked.
5793 // CATEGORY: NOTIFICATION
5794 // PACKAGE: App that posted the notification
5795 // SUBTYPE: Index of smart reply clicked.
5796 // OS: P
5797 SMART_REPLY_ACTION = 1383;
5798
5799 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5800 // OS: P
5801 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5802
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005803 // Volume dialog > ringer toggle
5804 // OS: P
5805 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5806
5807 // Volume dialog > settings button
5808 // OS: P
5809 ACTION_VOLUME_SETTINGS = 1386;
5810
Lei Yufc59a572018-04-10 10:52:08 -07005811 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5812 // CATEGORY: SETTINGS
5813 // OS: P
5814 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005815
Lei Yu97a13212018-04-11 15:45:31 -07005816 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5817 // CATEGORY: SETTINGS
5818 // OS: P
5819 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5820
5821 // FIELD: the version code of an app
5822 // CATEGORY: SETTINGS
5823 // OS: P
5824 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005825
Salvador Martinez8e899682018-04-04 14:42:59 -07005826 // OPEN: Settings > Connected Devices > Bluetooth
5827 // CATEGORY: SETTINGS
5828 // OS: P
5829 BLUETOOTH_FRAGMENT = 1390;
5830
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005831 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5832 // an app uses a hidden API.
5833 ACTION_HIDDEN_API_ACCESSED = 1391;
5834
5835 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5836 // access; see enum HiddenApiAccessMethod
5837 // OS: P
5838 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5839
5840 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5841 // denied to the API.
5842 // OS: P
5843 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5844
5845 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5846 // API that was accessed.
5847 // OS: P
5848 FIELD_HIDDEN_API_SIGNATURE = 1394;
5849
Chris Wren8f7a1442018-05-14 17:16:31 -04005850 // The number of items in the shade when this notification event was logged.
5851 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005852 NOTIFICATION_SHADE_COUNT = 1395;
5853
Julia Reynolds5da746a2018-04-23 09:41:21 -04005854 // ACTION: DND Settings > What to block
5855 // OS: P
5856 ACTION_ZEN_SOUND_ONLY = 1396;
5857
5858 // ACTION: DND Settings > Notifications
5859 // OS: P
5860 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5861
5862 // ACTION: DND Settings > Notifications
5863 // OS: P
5864 ACTION_ZEN_SHOW_CUSTOM = 1398;
5865
5866 // ACTION: DND Settings > Notifications
5867 // OS: P
5868 ACTION_ZEN_CUSTOM = 1399;
5869
5870 // Screen: DND Settings > Notifications
5871 // OS: P
5872 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5873
Chris Wrend63dffd2018-04-19 11:12:46 -04005874 // An event category for slices.
5875 // OPEN: Slice became visible.
5876 // CLOSE: Slice became invisible.
5877 // ACTION: Slice was tapped.
5878 SLICE = 1401;
5879
5880 // The authority part of the slice URI
5881 FIELD_SLICE_AUTHORITY = 1402;
5882
5883 // The path part of the slice URI
5884 FIELD_SLICE_PATH = 1403;
5885
5886 // The authority part of the subslice URI
5887 FIELD_SUBSLICE_AUTHORITY = 1404;
5888
5889 // The path part of the subslice URI
5890 FIELD_SUBSLICE_PATH = 1405;
5891
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005892 // OPEN: DND onboarding activity > don't update button
5893 // CATEGORY: SETTINGS
5894 // OS: P
5895 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5896
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005897 // ACTION: Storage initialization wizard initialization choice of external/portable
5898 // CATEGORY: SETTINGS
5899 // OS: P
5900 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5901
5902 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5903 // CATEGORY: SETTINGS
5904 // OS: P
5905 ACTION_STORAGE_INIT_INTERNAL = 1408;
5906
5907 // ACTION: Storage initialization wizard benchmark fast choice of continue
5908 // CATEGORY: SETTINGS
5909 // OS: P
5910 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5911
5912 // ACTION: Storage initialization wizard benchmark slow choice of continue
5913 // CATEGORY: SETTINGS
5914 // OS: P
5915 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5916
5917 // ACTION: Storage initialization wizard benchmark slow choice of abort
5918 // CATEGORY: SETTINGS
5919 // OS: P
5920 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5921
5922 // ACTION: Storage initialization wizard migration choice of now
5923 // CATEGORY: SETTINGS
5924 // OS: P
5925 ACTION_STORAGE_MIGRATE_NOW = 1412;
5926
5927 // ACTION: Storage initialization wizard migration choice of later
5928 // CATEGORY: SETTINGS
5929 // OS: P
5930 ACTION_STORAGE_MIGRATE_LATER = 1413;
5931
Felipe Leme11166522018-05-07 10:18:47 -07005932 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005933 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005934 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5935
hughchen2bde4092018-05-10 18:04:25 +08005936 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005937 // CATEGORY: SETTINGS
5938 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005939 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5940
5941 // OPEN: Settings > Sound > Switch hfp devices dialog
5942 // CATEGORY: SETTINGS
5943 // OS: P
5944 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005945
Beverlyc4eb9342018-05-10 15:46:03 -04005946 // ACTION: User has started or ended charging
5947 // Type TYPE_DISMISS: Charging has ended
5948 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5949 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5950 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5951 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5952 // Tag FIELD_PLUG_TYPE: Charging plug type
5953 ACTION_CHARGE = 1417;
5954
5955 // Tag used to determine battery level when device started charging
5956 FIELD_BATTERY_LEVEL_START = 1418;
5957
5958 // Tag used to determine battery level when device ended charging
5959 FIELD_BATTERY_LEVEL_END = 1419;
5960
5961 // Tag used to determine length of charging
5962 FIELD_CHARGING_DURATION_MILLIS = 1420;
5963
5964 // Tag used to determine what type of charging was started/ended
5965 // 1 = Plugged AC
5966 // 2 = Plugged USB
Beverlyc47ba512018-09-24 14:02:23 -05005967 // 4 = Wireless
Beverlyc4eb9342018-05-10 15:46:03 -04005968 FIELD_PLUG_TYPE = 1421;
5969
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005970 // ACTION: USB-C Connector connected.
5971 // CATEGORY: OTHER
5972 // OS: P
5973 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5974
5975 // ACTION: USB-C Connector disconnected.
5976 // CATEGORY: OTHER
5977 // OS: P
5978 // uses FIELD_DURATION_MILLIS for connected duration
5979 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5980
5981 // ACTION: USB-C Audio device connected
5982 // CATEGORY: OTHER
5983 // OS: P
5984 ACTION_USB_AUDIO_CONNECTED = 1424;
5985
5986 // FIELD: VIDPID of connected USB Audio device
5987 // CATEGORY: OTHER
5988 // OS: P
5989 FIELD_USB_AUDIO_VIDPID = 1425;
5990
5991 // ACTION: USB-C Audio device disconnected
5992 // CATEGORY: OTHER
5993 // OS: P
5994 // use FIELD_DURATION_MILLIS for time
5995 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5996
5997 // ACTION: Hardware failure event
5998 // CATEGORY: OTHER
5999 // OS: P
6000 ACTION_HARDWARE_FAILED = 1427;
6001
6002 // FIELD: Hardware failure category
6003 // CATEGORY: OTHER
6004 // OS: P
6005 // Uses enum HardwareType
6006 FIELD_HARDWARE_TYPE = 1428;
6007
6008 // FIELD: Hardware failure category
6009 // CATEGORY: OTHER
6010 // OS: P
6011 // Uses enum HardwareFailureCode
6012 FIELD_HARDWARE_FAILURE_CODE = 1429;
6013
6014 // ACTION: Physical drop event
6015 // CATEGORY: OTHER
6016 // OS: P
6017 // use FIELD_DURATION_MILLIS for time
6018 ACTION_PHYSICAL_DROP = 1430;
6019
6020 // FIELD: Confidence in detection of drop, in integer percentage.
6021 // CATEGORY: OTHER
6022 // OS: P
6023 FIELD_CONFIDENCE_PERCENT = 1431;
6024
6025 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
6026 // CATEGORY: OTHER
6027 // OS: P
6028 FIELD_ACCEL_MILLI_G = 1432;
6029
6030 // ACTION: Battery health snapshot
6031 // CATEGORY: OTHER
6032 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006033 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006034 ACTION_BATTERY_HEALTH = 1433;
6035
6036 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
6037 // CATEGORY: OTHER
6038 // OS: P
6039 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
6040
Andrew Chantc03bc632018-05-18 10:52:00 -07006041 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006042 // CATEGORY: OTHER
6043 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006044 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006045
Andrew Chantc03bc632018-05-18 10:52:00 -07006046 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006047 // CATEGORY: OTHER
6048 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006049 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006050
Andrew Chantc03bc632018-05-18 10:52:00 -07006051 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006052 // CATEGORY: OTHER
6053 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006054 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006055
Andrew Chantc03bc632018-05-18 10:52:00 -07006056 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006057 // fractional threshold of full capacity.
6058 // CATEGORY: OTHER
6059 // OS: P
6060 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6061
Andrew Chantc03bc632018-05-18 10:52:00 -07006062 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6063 // beyond a fractional threshold of full
6064 // capacity. A comma-separated string of
6065 // buckets. If there are eight buckets,
6066 // each bucket represents charging to n/8
6067 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006068 // CATEGORY: OTHER
6069 // OS: P
6070 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6071
Beverly019d6f62018-05-15 16:16:54 -04006072 // ACTION: Hush gesture - volume up + power button
6073 // CATEGORY: GLOBAL_SYSTEM_UI
6074 // OS: P
6075 ACTION_HUSH_GESTURE = 1440;
6076
Petri Gynther778facb2018-05-18 22:59:50 -07006077 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6078 // offload
6079 // CATEGORY: SETTINGS
6080 // OS: P
6081 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6082
Andrew Chantc03bc632018-05-18 10:52:00 -07006083 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6084 // reported aggregated per day when > 0.
6085 // CATEGORY: OTHER
6086 // OS: P
6087 ACTION_SLOW_IO = 1442;
6088
6089 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6090 // The value is an integer from the enum IoOperation.
6091 // CATEGORY: OTHER
6092 // OS: P
6093 FIELD_IO_OPERATION_TYPE = 1443;
6094
6095 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6096 // over the past 24hr (reported only if > 0).
6097 // CATEGORY: OTHER
6098 // OS: P
6099 FIELD_IO_OPERATION_COUNT = 1444;
6100
6101 // ACTION: Speaker Imedance - last recorded speaker impedance.
6102 // reported max once per 24hr.
6103 // CATEGORY: OTHER
6104 // OS: P
6105 ACTION_SPEAKER_IMPEDANCE = 1445;
6106
6107 // FIELD: Speaker Impedance in milliohms.
6108 // CATEGORY: OTHER
6109 // OS: P
6110 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6111
6112 // FIELD: Speaker Location - identifies one of several speakers on a device.
6113 // CATEGORY: OTHER
6114 // OS: P
6115 FIELD_SPEAKER_LOCATION = 1447;
6116
6117 // FIELD: Instantaneous battery resistance in microohms.
6118 // CATEGORY: OTHER
6119 // OS: P
6120 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6121
6122 // FIELD: Instantaneous battery current - in microamps.
6123 // CATEGORY: OTHER
6124 // OS: P
6125 FIELD_BATTERY_CURRENT_UA = 1449;
6126
6127 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6128 // board.
6129 // CATEGORY: OTHER
6130 // OS: P
6131 FIELD_HARDWARE_LOCATION = 1450;
6132
6133 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6134 // action is logged after the subsequent boot.
6135 // CATEGORY: OTHER
6136 // OS: P
6137 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6138
Felipe Leme21fb1a32018-05-21 11:18:46 -07006139 // FIELD: Flags used on autofill-related metrics
6140 // OS: P
6141 FIELD_AUTOFILL_FLAGS = 1452;
6142
6143 // Tag used when the service returned an authenticated dataset or response.
6144 // Used to replace the following individual metrics, which now are logged as the value of this
6145 // field in the AUTOFILL_REQUEST metric:
6146 // - AUTOFILL_AUTHENTICATED;
6147 // - AUTOFILL_DATASET_AUTHENTICATED
6148 // - AUTOFILL_INVALID_AUTHENTICATION
6149 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6150 // OS: P
6151 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6152
6153 // FIELD: Index of the autofill request inside of a session.
6154 // OS: P
6155 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6156
6157 // FIELD: Number of requests made to an autofill service during a session.
6158 // OS: P
6159 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6160
Felipe Leme833c99b2018-05-24 10:41:48 -07006161 // FIELD: Id of the autofill session associated with this metric.
6162 // OS: P
6163 FIELD_AUTOFILL_SESSION_ID = 1456;
6164
Chris Wren77781d32016-01-11 14:49:26 -05006165 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006166
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006167 // Time since this notification last interrupted (visibly or audible) the user
6168 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6169
6170 // OPEN: Notification interrupted the user, either audibly or visually.
6171 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6172 // CATEGORY: NOTIFICATION
6173 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006174
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006175 // OPEN: Settings
6176 // CATEGORY: SETTINGS
6177 // OS: Q
6178 SETTINGS_HOMEPAGE = 1502;
6179
Fan Zhang0b6bc412018-06-21 17:19:02 -07006180 // OPEN: Settings > Create shortcut(widget)
6181 // CATEGORY: SETTINGS
6182 // OS: Q
6183 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006184
6185 // ACTION: Authenticate using fingerprint
6186 // CATEGORY: SETTINGS
6187 // OS: Q
6188 ACTION_FACE_AUTH = 1504;
6189
6190 // ACTION: Add fingerprint > Enroll fingerprint
6191 // CATEGORY: SETTINGS
6192 // OS: Q
6193 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006194
6195 // OPEN: Face Enroll introduction
6196 // CATEGORY: SETTINGS
6197 // OS: Q
6198 FACE_ENROLL_INTRO = 1506;
6199
6200 // OPEN: Face Enroll introduction
6201 // CATEGORY: SETTINGS
6202 // OS: Q
6203 FACE_ENROLL_ENROLLING = 1507;
6204
6205 // OPEN: Face Enroll introduction
6206 // CATEGORY: SETTINGS
6207 // OS: Q
6208 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006209
6210 // OPEN: Face Enroll sidecar
6211 // CATEGORY: SETTINGS
6212 // OS: Q
6213 FACE_ENROLL_SIDECAR = 1509;
6214
6215 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006216 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006217 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006218
6219 // OPEN: Settings > Security > Face
6220 // CATEGORY: SETTINGS
6221 // OS: Q
6222 FACE = 1511;
6223
timhypeng8c6885d2018-07-30 16:44:36 +08006224 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6225 // CATEGORY: SETTINGS
6226 // OS: Q
6227 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6228
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006229 // ACTION: Activity start
6230 // CATEGORY: OTHER
6231 // OS: Q (will also ship in PQ1A)
6232 ACTION_ACTIVITY_START = 1513;
6233
6234 // Tagged data for ACTION_ACTIVITY_START.
6235 // FIELD: Calling UID
6236 // CATEGORY: OTHER
6237 // OS: Q (will also ship in PQ1A)
6238 FIELD_CALLING_UID = 1514;
6239
6240 // Tagged data for ACTION_ACTIVITY_START.
6241 // FIELD: Calling package name
6242 // CATEGORY: OTHER
6243 // OS: Q (will also ship in PQ1A)
6244 FIELD_CALLING_PACKAGE_NAME = 1515;
6245
6246 // Tagged data for ACTION_ACTIVITY_START.
6247 // FIELD: Calling UID proc state
6248 // CATEGORY: OTHER
6249 // OS: Q (will also ship in PQ1A)
6250 FIELD_CALLING_UID_PROC_STATE = 1516;
6251
6252 // Tagged data for ACTION_ACTIVITY_START.
6253 // FIELD: Calling UID has any visible window
6254 // CATEGORY: OTHER
6255 // OS: Q (will also ship in PQ1A)
6256 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6257
6258 // Tagged data for ACTION_ACTIVITY_START.
6259 // FIELD: Real calling UID
6260 // CATEGORY: OTHER
6261 // OS: Q (will also ship in PQ1A)
6262 FIELD_REAL_CALLING_UID = 1518;
6263
6264 // Tagged data for ACTION_ACTIVITY_START.
6265 // FIELD: Real calling UID proc state
6266 // CATEGORY: OTHER
6267 // OS: Q (will also ship in PQ1A)
6268 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6269
6270 // Tagged data for ACTION_ACTIVITY_START.
6271 // FIELD: Real calling UID has any visible window
6272 // CATEGORY: OTHER
6273 // OS: Q (will also ship in PQ1A)
6274 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6275
6276 // Tagged data for ACTION_ACTIVITY_START.
6277 // FIELD: Target UID
6278 // CATEGORY: OTHER
6279 // OS: Q (will also ship in PQ1A)
6280 FIELD_TARGET_UID = 1521;
6281
6282 // Tagged data for ACTION_ACTIVITY_START.
6283 // FIELD: Target UID package name
6284 // CATEGORY: OTHER
6285 // OS: Q (will also ship in PQ1A)
6286 FIELD_TARGET_PACKAGE_NAME = 1522;
6287
6288 // Tagged data for ACTION_ACTIVITY_START.
6289 // FIELD: Target UID proc state
6290 // CATEGORY: OTHER
6291 // OS: Q (will also ship in PQ1A)
6292 FIELD_TARGET_UID_PROC_STATE = 1523;
6293
6294 // Tagged data for ACTION_ACTIVITY_START.
6295 // FIELD: Target UID has any visible window
6296 // CATEGORY: OTHER
6297 // OS: Q (will also ship in PQ1A)
6298 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6299
6300 // Tagged data for ACTION_ACTIVITY_START.
6301 // FIELD: Target doze whitelist tag
6302 // CATEGORY: OTHER
6303 // OS: Q (will also ship in PQ1A)
6304 FIELD_TARGET_WHITELIST_TAG = 1525;
6305
6306 // Tagged data for ACTION_ACTIVITY_START.
6307 // FIELD: Target short component name
6308 // CATEGORY: OTHER
6309 // OS: Q (will also ship in PQ1A)
6310 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6311
6312 // Tagged data for ACTION_ACTIVITY_START.
6313 // FIELD: Coming from pending intent
6314 // CATEGORY: OTHER
6315 // OS: Q (will also ship in PQ1A)
6316 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6317
6318 // Tagged data for ACTION_ACTIVITY_START.
6319 // FIELD: Intent action
6320 // CATEGORY: OTHER
6321 // OS: Q (will also ship in PQ1A)
6322 FIELD_INTENT_ACTION = 1528;
6323
6324 // Tagged data for ACTION_ACTIVITY_START.
6325 // FIELD: Caller app process record process name
6326 // CATEGORY: OTHER
6327 // OS: Q (will also ship in PQ1A)
6328 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6329
6330 // Tagged data for ACTION_ACTIVITY_START.
6331 // FIELD: Caller app process record current proc state
6332 // CATEGORY: OTHER
6333 // OS: Q (will also ship in PQ1A)
6334 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6335
6336 // Tagged data for ACTION_ACTIVITY_START.
6337 // FIELD: Caller app process record has client activities
6338 // CATEGORY: OTHER
6339 // OS: Q (will also ship in PQ1A)
6340 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6341
6342 // Tagged data for ACTION_ACTIVITY_START.
6343 // FIELD: Caller app process record has foreground services
6344 // CATEGORY: OTHER
6345 // OS: Q (will also ship in PQ1A)
6346 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6347
6348 // Tagged data for ACTION_ACTIVITY_START.
6349 // FIELD: Caller app process record has foreground activities
6350 // CATEGORY: OTHER
6351 // OS: Q (will also ship in PQ1A)
6352 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6353
6354 // Tagged data for ACTION_ACTIVITY_START.
6355 // FIELD: Caller app process record has top UI
6356 // CATEGORY: OTHER
6357 // OS: Q (will also ship in PQ1A)
6358 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6359
6360 // Tagged data for ACTION_ACTIVITY_START.
6361 // FIELD: Caller app process record has overlay UI
6362 // CATEGORY: OTHER
6363 // OS: Q (will also ship in PQ1A)
6364 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6365
6366 // Tagged data for ACTION_ACTIVITY_START.
6367 // FIELD: Caller app process record pending UI clean
6368 // CATEGORY: OTHER
6369 // OS: Q (will also ship in PQ1A)
6370 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6371
6372 // Tagged data for ACTION_ACTIVITY_START.
6373 // FIELD: Millis since caller app's process record last interaction event
6374 // CATEGORY: OTHER
6375 // OS: Q (will also ship in PQ1A)
6376 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6377
6378 // Tagged data for ACTION_ACTIVITY_START.
6379 // FIELD: Millis since caller app's process record fg interaction
6380 // CATEGORY: OTHER
6381 // OS: Q (will also ship in PQ1A)
6382 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6383
6384 // Tagged data for ACTION_ACTIVITY_START.
6385 // FIELD: Millis since caller app's process record last became unimportant
6386 // CATEGORY: OTHER
6387 // OS: Q (will also ship in PQ1A)
6388 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6389
6390 // Tagged data for ACTION_ACTIVITY_START.
6391 // FIELD: Activity record launch mode
6392 // CATEGORY: OTHER
6393 // OS: Q (will also ship in PQ1A)
6394 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6395
6396 // Tagged data for ACTION_ACTIVITY_START.
6397 // FIELD: Activity record target activity
6398 // CATEGORY: OTHER
6399 // OS: Q (will also ship in PQ1A)
6400 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6401
6402 // Tagged data for ACTION_ACTIVITY_START.
6403 // FIELD: Activity record flags
6404 // CATEGORY: OTHER
6405 // OS: Q (will also ship in PQ1A)
6406 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6407
6408 // Tagged data for ACTION_ACTIVITY_START.
6409 // FIELD: Activity record real activity
6410 // CATEGORY: OTHER
6411 // OS: Q (will also ship in PQ1A)
6412 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6413
6414 // Tagged data for ACTION_ACTIVITY_START.
6415 // FIELD: Activity record short component name
6416 // CATEGORY: OTHER
6417 // OS: Q (will also ship in PQ1A)
6418 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6419
6420 // Tagged data for ACTION_ACTIVITY_START.
6421 // FIELD: Activity record process name
6422 // CATEGORY: OTHER
6423 // OS: Q (will also ship in PQ1A)
6424 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6425
6426 // Tagged data for ACTION_ACTIVITY_START.
6427 // FIELD: Activity record is fullscreen
6428 // CATEGORY: OTHER
6429 // OS: Q (will also ship in PQ1A)
6430 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6431
6432 // Tagged data for ACTION_ACTIVITY_START.
6433 // FIELD: Activity record is no display
6434 // CATEGORY: OTHER
6435 // OS: Q (will also ship in PQ1A)
6436 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6437
6438 // Tagged data for ACTION_ACTIVITY_START.
6439 // FIELD: Millis since activity was last visible
6440 // CATEGORY: OTHER
6441 // OS: Q (will also ship in PQ1A)
6442 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6443
6444 // Tagged data for ACTION_ACTIVITY_START.
6445 // FIELD: Activity record's resultTo packageName
6446 // CATEGORY: OTHER
6447 // OS: Q (will also ship in PQ1A)
6448 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6449
6450 // Tagged data for ACTION_ACTIVITY_START.
6451 // FIELD: Activity record's resultTo shortComponentName
6452 // CATEGORY: OTHER
6453 // OS: Q (will also ship in PQ1A)
6454 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6455
6456 // Tagged data for ACTION_ACTIVITY_START.
6457 // FIELD: Activity record is visible
6458 // CATEGORY: OTHER
6459 // OS: Q (will also ship in PQ1A)
6460 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6461
6462 // Tagged data for ACTION_ACTIVITY_START.
6463 // FIELD: Activity record is visible ignoring keyguard
6464 // CATEGORY: OTHER
6465 // OS: Q (will also ship in PQ1A)
6466 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6467
6468 // Tagged data for ACTION_ACTIVITY_START.
6469 // FIELD: Millis since activity's last launch
6470 // CATEGORY: OTHER
6471 // OS: Q (will also ship in PQ1A)
6472 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006473
Kevin Chyn2c94a292018-08-09 15:00:06 -07006474 // OPEN: Settings > Add face
6475 // OS: Q
6476 FACE_ENROLL_PREVIEW = 1554;
6477
Felipe Lemec9f32592018-08-02 14:57:11 -07006478 // Field used to indicate whether a save request was used to update existing user data.
6479 FIELD_AUTOFILL_UPDATE = 1555;
6480
tmfangf391da12018-08-15 17:01:40 +08006481 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6482 // CATEGORY: SETTINGS
6483 // OS: Q
6484 SETTINGS_WIFI_ADD_NETWORK = 1556;
6485
Lucas Dupinc81702e2018-08-09 15:41:55 -07006486 // OPEN: Settings > System > Input & Gesture > Reach up gesture
6487 // OS: Q
Lucas Dupin13b0cb92018-09-28 09:27:46 -07006488 SETTINGS_GESTURE_WAKE_LOCK_SCREEN = 1557;
Lucas Dupinc81702e2018-08-09 15:41:55 -07006489
Shaotang Li4187f7a62018-07-04 14:03:25 +08006490 // OPEN: Emergency dialer opened
6491 // CLOSE: Emergency dialer closed
6492 // SUBTYPE: The entry type that user opened emergency dialer
6493 // CATEGORY: EMERGENCY_DIALER
6494 // OS: Q
6495 EMERGENCY_DIALER = 1558;
6496
6497 // FIELD: The screen is currently locked
6498 // CATEGORY: EMERGENCY_DIALER
6499 // OS: Q
6500 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559;
6501
6502 // FIELD: Bit flag indicating the actions performed by user
6503 // CATEGORY: EMERGENCY_DIALER
6504 // OS: Q
6505 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560;
6506
6507 // FIELD: The duration user stayed at emergency dialer
6508 // CATEGORY: EMERGENCY_DIALER
6509 // OS: Q
6510 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561;
6511
6512 // ACTION: Making call via emergency dialer
6513 // SUBTYPE: The UI that user made phone call
6514 // CATEGORY: EMERGENCY_DIALER
6515 // OS: Q
6516 EMERGENCY_DIALER_MAKE_CALL = 1562;
6517
6518 // FIELD: The phone number type of a call user made
6519 // CATEGORY: EMERGENCY_DIALER
6520 // OS: Q
6521 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6522
6523 // FIELD: There is a shortcut for the phone number
6524 // CATEGORY: EMERGENCY_DIALER
6525 // OS: Q
6526 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564;
6527
6528 // FIELD: The phone is in pocket while using emergency dialer
6529 // CATEGORY: EMERGENCY_DIALER
6530 // OS: Q
6531 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565;
6532
6533 // ACTION: The second tap on emergency shortcut to make a phone call
6534 // CATEGORY: EMERGENCY_DIALER
6535 // OS: Q
6536 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566;
6537
6538 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6539 // CATEGORY: EMERGENCY_DIALER
6540 // OS: Q
6541 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567;
6542
Shaotang Li786da902018-08-02 11:18:00 +08006543 // OPEN: Power menu is opened
6544 // CATEGORY: GLOBAL_SYSTEM_UI
6545 // OS: Q
6546 POWER_MENU = 1568;
6547
6548 // ACTION: User tapped emergency dialer icon in the power menu.
6549 // CATEGORY: GLOBAL_SYSTEM_UI
6550 // OS: Q
6551 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569;
6552
Lucas Dupin323f9ff2018-08-27 16:55:56 -07006553 // OPEN: Settings > System > Input & Gesture > Wake screen
6554 // OS: Q
6555 SETTINGS_GESTURE_WAKE_SCREEN = 1570;
6556
jackqdyulei2cc9b4b2018-09-07 13:12:43 -07006557 // OPEN: Settings > Network & internet > Mobile network
6558 // CATEGORY: SETTINGS
6559 // OS: Q
6560 MOBILE_NETWORK = 1571;
6561
Felipe Lemed9dc9542018-09-19 11:54:28 -07006562 // Tag of a field for the length of a text
6563 FIELD_AUTOFILL_TEXT_LEN = 1572;
6564
Julia Reynolds23a46352018-09-25 15:31:47 -04006565 // Action: the notification assistant is changing a notification
6566 // OS: Q
6567 NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
6568
6569 // Subtype: The people attached to a notification was changed
6570 ADJUSTMENT_KEY_PEOPLE = 1574;
6571
6572 // Subtype: The snooze options attached to a notification was changed
6573 ADJUSTMENT_KEY_SNOOZE_CRITERIA = 1575;
6574
6575 // Subtype: The group of a notification was changed
6576 ADJUSTMENT_KEY_GROUP_KEY = 1576;
6577
6578 // Subtype: The user sentiment of a notification was changed
6579 ADJUSTMENT_KEY_USER_SENTIMENT = 1577;
6580
6581 // Subtype: New actions have been added to a notification
6582 ADJUSTMENT_KEY_SMART_ACTIONS = 1578;
6583
6584 // Subtype: New smart replies have been added to a notification
6585 ADJUSTMENT_KEY_SMART_REPLIES = 1579;
6586
6587 // Subtype: The importance of a notification has been changed
6588 ADJUSTMENT_KEY_IMPORTANCE = 1580;
6589
jackqdyuleidb71d282018-10-10 10:37:19 -07006590 // OPEN: Settings > Network & internet > Mobile network > Choose network
6591 // CATEGORY: SETTINGS
6592 // OS: Q
6593 MOBILE_NETWORK_SELECT = 1581;
6594
6595 // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog
6596 // CATEGORY: SETTINGS
6597 // OS: Q
6598 MOBILE_DATA_DIALOG = 1582;
6599
6600 // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog
6601 // CATEGORY: SETTINGS
6602 // OS: Q
6603 MOBILE_ROAMING_DIALOG = 1583;
6604
Fan Zhang916c13b2018-10-16 22:49:45 -07006605 // OPEN: Settings > Display > Lock screen display > On lock screen
6606 // CATEGORY: SETTINGS
6607 // OS: Q
6608 LOCK_SCREEN_NOTIFICATION_CONTENT = 1584;
6609
Kevin Chynf589b6c2018-10-26 08:10:37 -07006610 // ConfirmDeviceCredentials > BiometricPrompt
6611 // CATEGORY: SETTINGS
6612 // OS: Q
6613 BIOMETRIC_FRAGMENT = 1585;
6614
Kevin Chynb879f512018-10-31 17:56:26 -07006615 // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent)
6616 // CATEGORY: SETTINGS
6617 // OS: Q
6618 BIOMETRIC_ENROLL_ACTIVITY = 1586;
6619
tmfanga3f63a92018-11-05 19:05:18 +08006620 // OPEN: Settings > Privacy
6621 // CATEGORY: SETTINGS
6622 // OS: Q
6623 TOP_LEVEL_PRIVACY = 1587;
6624
Beverlyd58cc772018-11-09 16:23:11 -05006625 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6626 // Allow apps to override
6627 // CATEGORY: SETTINGS
6628 // OS: Q
6629 NOTIFICATION_ZEN_MODE_OVERRIDING_APPS = 1588;
6630
6631 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6632 // Allow apps to override > Choose app
6633 // CATEGORY: SETTINGS
6634 // OS: Q
6635 NOTIFICATION_ZEN_MODE_OVERRIDING_APP = 1589;
6636
Esteban Talaveraf9c53b62018-11-14 18:20:29 +00006637 // ACTION: User sent a direct reply
6638 // PACKAGE: App that posted the notification
6639 // CATEGORY: NOTIFICATION
6640 // OS: Q
6641 NOTIFICATION_DIRECT_REPLY_ACTION = 1590;
6642
Chienyuane7a535c2018-11-30 16:01:48 +08006643 // OPEN: Settings > Developer options > Disable > Info dialog
6644 // CATEGORY: SETTINGS
6645 // OS: Q
6646 DIALOG_DISABLE_DEVELOPMENT_OPTIONS = 1591;
6647
Susi Kharraz-Post9b033672018-11-28 08:14:07 -05006648 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6649 // indicating the StatusBarState when menu was pulled down
6650 // CATEGORY: QUICK_SETTINGS
6651 // OS: Q
6652 FIELD_STATUS_BAR_STATE = 1592;
6653
6654 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6655 // indicating whether current state is full QS
6656 // CATEGORY: QUICK_SETTINGS
6657 // OS: Q
6658 FIELD_IS_FULL_QS = 1593;
6659
Issei Suzuki9e5ff4b2018-12-04 14:23:24 +01006660 // ACTION: Display folding state was changed
6661 // CATEGORY: OTHER
6662 // SUBTYPE: 1 if display is folded, 0 if not.
6663 // OS: Q
6664 ACTION_DISPLAY_FOLD = 1594;
6665
Arc Wangb16327a2018-11-30 14:15:52 +08006666 // OPEN: WifiDppConfiguratorActivity (android.settings.WIFI_DPP_CONFIGURATOR_XXX action intents)
6667 // CATEGORY: SETTINGS
6668 // OS: Q
6669 SETTINGS_WIFI_DPP_CONFIGURATOR = 1595;
6670
6671 // OPEN: WifiDppEnrolleeActivity (android.settings.WIFI_DPP_ENROLLEE_XXX action intents)
6672 // CATEGORY: SETTINGS
6673 // OS: Q
6674 SETTINGS_WIFI_DPP_ENROLLEE = 1596;
6675
Hongming Jin5172ec12018-12-13 11:02:42 -08006676 // OPEN: Settings > Apps & Notifications -> Special app access -> Financial Apps Sms Access
6677 // CATEGORY: SETTINGS
6678 // OS: Q
6679 SETTINGS_FINANCIAL_APPS_SMS_ACCESS = 1597;
6680
Chad Brubaker90f391f2018-10-19 10:26:19 -07006681 // OPEN: QS Sensor Privacy Mode tile shown
6682 // ACTION: QS Sensor Privacy Mode tile tapped
6683 // SUBTYPE: 0 is off, 1 is on
6684 // CATEGORY: QUICK_SETTINGS
6685 // OS: Q
6686 QS_SENSOR_PRIVACY = 1598;
6687
Gustav Sennton6f65fc32018-12-12 17:40:28 +00006688 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart actions.
6689 // OS: Q
6690 NOTIFICATION_SMART_ACTION_COUNT = 1599;
6691
6692 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6693 // Whether the notification has notification-assistant generated
6694 // actions/replies.
6695 // OS: Q
6696 NOTIFICATION_SMART_SUGGESTION_ASSISTANT_GENERATED = 1600;
6697
6698 // Tagged data for NOTIFICATION_ITEM_ACTION. Whether the action is a smart
6699 // action.
6700 // OS: Q
6701 NOTIFICATION_ACTION_IS_SMART = 1601;
6702
Beverlyf3c2c862018-12-21 09:57:31 -05006703 // FIELD: true if the associated ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* allows/blocks
6704 // the effect/sound when DND is on. false if set to disallow/show.
6705 // OS: Q
6706 FIELD_ZEN_TOGGLE_EXCEPTION = 1602;
6707
6708 // FIELD: rule id an ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* is associated with
6709 // OS: Q
6710 FIELD_ZEN_RULE_ID = 1603;
6711
6712 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6713 // > Do Not Disturb behavior
6714 // CATEGORY: SETTINGS
6715 // OS: Q
6716 ZEN_CUSTOM_RULE_SETTINGS = 1604;
6717
6718 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6719 // > Do Not Disturb behavior > Custom
6720 // CATEGORY: SETTINGS
6721 // OS: Q
6722 ZEN_CUSTOM_RULE_SOUND_SETTINGS = 1605;
6723
6724 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6725 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6726 // CATEGORY: SETTINGS
6727 // OS: Q
6728 ZEN_CUSTOM_RULE_DEFAULT_SETTINGS = 1606;
6729
6730 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6731 // > Do Not Disturb behavior > Custom
6732 // CATEGORY: SETTINGS
6733 // OS: Q
6734 ZEN_CUSTOM_RULE_CUSTOM_SETTINGS = 1607;
6735
6736 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6737 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6738 // > Notification restriction
6739 // CATEGORY: SETTINGS
6740 // OS: Q
6741 ZEN_CUSTOM_RULE_NOTIFICATION_RESTRICTIONS = 1608;
6742
6743 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6744 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6745 // > Notification restriction > Custom
6746 // CATEGORY: SETTINGS
6747 // OS: Q
6748 ZEN_CUSTOM_RULE_VIS_EFFECTS = 1609;
6749
6750 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6751 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6752 // > Notification restriction > Custom > Allow messages
6753 // CATEGORY: SETTINGS
6754 // OS: Q
6755 ZEN_CUSTOM_RULE_MESSAGES = 1610;
6756
6757 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6758 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6759 // > Notification restriction > Custom > Allow calls
6760 // CATEGORY: SETTINGS
6761 // OS: Q
6762 ZEN_CUSTOM_RULE_CALLS = 1611;
6763
6764 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
6765 // CATEGORY: SETTINGS
6766 // OS: Q
6767 ZEN_CUSTOM_SETTINGS_DIALOG = 1612;
6768
Yiwei Zhang71434b72018-12-28 11:32:42 +08006769 // OPEN: Settings > Developer Options > Game Update Packages
6770 // CATEGORY: SETTINGS
6771 // OS: Q
6772 SETTINGS_GUP_DASHBOARD = 1613;
6773
Tony Mak5a5f0d52019-01-08 11:07:23 +00006774 // CATEGORY: The category for all actions relating to language detection logging.
6775 // OS: Q
6776 LANGUAGE_DETECTION = 1614;
6777
6778 // CATEGORY: The category for all actions relating to conversation actions logging.
6779 // OS: Q
6780 CONVERSATION_ACTIONS = 1615;
6781
6782 // ACTION: Actions from a text classifier are shown to user.
Tony Mak03a1d032019-01-24 15:12:00 +00006783 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006784 // OS: Q
6785 ACTION_TEXT_CLASSIFIER_ACTIONS_SHOWN = 1616;
6786
Tony Mak03a1d032019-01-24 15:12:00 +00006787 // FIELD: Event time of a text classifier event in unix timestamp.
6788 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006789 // OS: Q
6790 FIELD_TEXT_CLASSIFIER_EVENT_TIME = 1617;
6791
6792 // ACTION: Users compose their own replies instead of using suggested ones.
Tony Mak03a1d032019-01-24 15:12:00 +00006793 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006794 // OS: Q
6795 ACTION_TEXT_CLASSIFIER_MANUAL_REPLY = 1618;
6796
6797 // ACTION: Text classifier generates an action.
Tony Mak03a1d032019-01-24 15:12:00 +00006798 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006799 // OS: Q
6800 ACTION_TEXT_CLASSIFIER_ACTIONS_GENERATED = 1619;
6801
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00006802 // OPEN: Settings > Accessibility > Vibration > Ring vibration
6803 // CATEGORY: SETTINGS
6804 // OS: Q
6805 ACCESSIBILITY_VIBRATION_RING = 1620;
6806
Eyal Posenera9cf9c72018-12-18 16:23:54 +02006807 // ACTION: Notification blocking helper view, which helps the user to block
6808 // application or channel from showing notifications.
6809 // SUBTYPE: NotificationBlockingHelper enum.
6810 // CATEGORY: NOTIFICATION
6811 // OS: Q
6812 NOTIFICATION_BLOCKING_HELPER = 1621;
6813
Ruchi Kandoi6513d9d2019-01-09 13:23:04 -08006814 // ACTION: Tap & Pay -> Default Application Setting -> Use Forground
6815 // OS: Q
6816 ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622;
6817
6818 // ACTION: Tap & Pay -> Default Application Setting -> Use Default
6819 // OS: Q
6820 ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623;
Chris Wren6c109522018-03-12 10:00:12 -04006821
Beverly5015ac82019-01-10 16:33:02 -05006822 // OPEN: Settings > System > Input & Gesture > Skip song gesture
6823 // OS: Q
6824 SETTINGS_GESTURE_SKIP_SONG = 1624;
6825
6826 // OPEN: Settings > System > Input & Gesture > Silence gesture
6827 // OS: Q
6828 SETTINGS_GESTURE_SILENCE = 1625;
6829
Lucas Dupind43bf702019-01-15 13:40:42 -08006830 // OPEN: Settings > System > Input & Gesture > Tap screen gesture
6831 // OS: Q
6832 SETTINGS_GESTURE_TAP_SCREEN = 1626;
6833
Antony Sargent29932062019-01-10 15:59:11 -08006834 // OPEN: Settings > Network & internet > Click Mobile network to land on a page with a list of
6835 // SIM/eSIM subscriptions.
6836 // CATEGORY: SETTINGS
6837 // OS: Q
6838 MOBILE_NETWORK_LIST = 1627;
6839
Alex Salo1dea1e62019-01-18 14:17:20 -08006840 // OPEN: Settings > Display > Adaptive sleep
6841 // OS: Q
6842 SETTINGS_ADAPTIVE_SLEEP = 1628;
Tony Mak03a1d032019-01-24 15:12:00 +00006843
Felipe Leme479294a2019-01-22 17:23:07 -08006844 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6845 // The UI location of the notification containing the smart suggestions.
6846 // This is a NotificationLocation object (see the NotificationLocation
6847 // enum).
6848 // OS: Q
6849 NOTIFICATION_LOCATION = 1629;
6850
Felipe Lemea3033852019-01-18 16:32:33 -08006851 // The autofill system made request to the system-provided augmented autofill service.
6852 // OS: Q
6853 // Package: Package of app that is autofilled
6854 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
6855 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
6856 // request
6857 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
6858 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme479294a2019-01-22 17:23:07 -08006859 AUTOFILL_AUGMENTED_REQUEST = 1630;
Felipe Lemea3033852019-01-18 16:32:33 -08006860
6861 // Tag of a field for the number of augmented autofill requests in a session
6862 // OS: Q
Felipe Leme479294a2019-01-22 17:23:07 -08006863 FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS = 1631;
Gustav Sennton3757d852019-01-21 12:11:40 +00006864
Edgar Wang5ee81542019-01-11 19:30:12 +08006865 // OPEN: Settings > System > Aware
6866 // OS: Q
6867 SETTINGS_AWARE = 1632;
6868
6869 // OPEN: Settings > System > Aware > Disable > Dialog
6870 // OS: Q
6871 DIALOG_AWARE_DISABLE = 1633;
6872
Tony Mak03a1d032019-01-24 15:12:00 +00006873 // FIELD: Session ID of TextClassifierEvent.
6874 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6875 // OS: Q
6876 FIELD_TEXT_CLASSIFIER_SESSION_ID = 1634;
6877
6878 // FIELD: First entity type.
6879 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6880 // OS: Q
6881 FIELD_TEXT_CLASSIFIER_FIRST_ENTITY_TYPE = 1635;
6882 // FIELD: Second entity type.
6883 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6884 // OS: Q
6885 FIELD_TEXT_CLASSIFIER_SECOND_ENTITY_TYPE = 1636;
6886
6887 // FIELD: Third entity type.
6888 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6889 // OS: Q
6890 FIELD_TEXT_CLASSIFIER_THIRD_ENTITY_TYPE = 1637;
6891
6892 // FIELD: Score of the suggestion.
6893 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6894 // OS: Q
6895 FIELD_TEXT_CLASSIFIER_SCORE = 1638;
6896
6897 // FIELD: widget type, e.g: notification, textview
6898 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6899 // OS: Q
6900 FIELD_TEXT_CLASSIFIER_WIDGET_TYPE = 1639;
6901
6902 // FIELD: version of the widget.
6903 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6904 // OS: Q
6905 FIELD_TEXT_CLASSIFIER_WIDGET_VERSION = 1640;
6906
Beverly5015ac82019-01-10 16:33:02 -05006907 // ---- End Q Constants, all Q constants go above this line ----
Chris Wren77781d32016-01-11 14:49:26 -05006908 // Add new aosp constants above this line.
6909 // END OF AOSP CONSTANTS
6910 }
6911}