blob: 9673a84018e4f0a5e9384e7553fea54051532d72 [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
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -0500250 // Subtypes for profile logging
251 enum ActiveUserProfile {
252 PARENT_PROFILE = 1;
253 MANAGED_PROFILE = 2;
254 }
255
Susi Kharraz-Postfcec9932019-03-01 16:46:26 -0500256 // Subtypes for showing direct sharing targets
257 enum DirectShareTargetPreviousState {
258 PREVIOUSLY_UNKNOWN = 0;
259 PREVIOUSLY_HIDDEN = 1;
260 PREVIOUSLY_VISIBLE = 2;
261 }
262
Chris Wren77781d32016-01-11 14:49:26 -0500263 // Known visual elements: views or controls.
264 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500265 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500266 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500269 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Accessibility
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Accessibility > Captions
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > Accessibility > [Service]
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OPEN: Settings > Accessibility > Color correction
287 // CATEGORY: SETTINGS
288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500289 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OPEN: Settings > Accessibility > Accessibility shortcut
292 // CATEGORY: SETTINGS
293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500294 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500295
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700296 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
297 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
298 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500299 // CATEGORY: SETTINGS
300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500301 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500302
303 // OPEN: Settings > Accounts
304 // CATEGORY: SETTINGS
305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500306 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500307
308 // OPEN: Settings > Accounts > [Single Account Sync Settings]
309 // CATEGORY: SETTINGS
310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500311 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Accounts > Add an account
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OPEN: Settings > Accounts > [List of accounts when more than one]
319 // CATEGORY: SETTINGS
320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500321 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500322
323 // OPEN: Settings > Cellular network settings > APNs
324 // CATEGORY: SETTINGS
325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500326 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500327
328 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
329 // CATEGORY: SETTINGS
330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500331 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500332
333 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500334 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500337 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500340 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Apps > Configure apps > App links > [App]
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500348 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500349
350 // OPEN: Settings > Internal storage > Apps storage > [App]
351 // CATEGORY: SETTINGS
352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500353 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > Apps > [App info]
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > Memory > App usage > [App Memory usage]
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500366 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500367
368 // OPEN: Settings > Memory > App usage
369 // CATEGORY: SETTINGS
370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500371 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500372
373 // OPEN: Settings > Bluetooth
374 // CATEGORY: SETTINGS
375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500376 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500377
378 // OPEN: Choose Bluetooth device (ex: when sharing)
379 // CATEGORY: SETTINGS
380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500381 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500382
383 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500384 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500385
386 // OPEN: Settings > Security > Choose screen lock
387 // CATEGORY: SETTINGS
388 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500389 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500390
391 // OPEN: Settings > Security > Choose screen lock > Choose your password
392 // CATEGORY: SETTINGS
393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500394 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500395
396 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
397 // CATEGORY: SETTINGS
398 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500399 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500400
401 // OPEN: Settings > Security > Choose screen lock > Confirm your password
402 // CATEGORY: SETTINGS
403 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500404 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500405
406 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
407 // CATEGORY: SETTINGS
408 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500409 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500410
411 // OPEN: Settings > Security > Encrypt phone
412 // CATEGORY: SETTINGS
413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500414 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500415
416 // OPEN: Settings > Security > Encrypt phone > Confirm
417 // CATEGORY: SETTINGS
418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500419 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500420
421 // OPEN: Settings > Search results
422 // CATEGORY: SETTINGS
423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500424 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500425
426 // OPEN: Settings (Root page)
427 // CATEGORY: SETTINGS
428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500429 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500432 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500433
434 // OPEN: Settings > Data usage
435 // CATEGORY: SETTINGS
436 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500437 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500438
439 // OPEN: Settings > Date & time
440 // CATEGORY: SETTINGS
441 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500442 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500443
444 // OPEN: Settings > Developer options
445 // CATEGORY: SETTINGS
446 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500447 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500448
449 // OPEN: Settings > About phone
450 // CATEGORY: SETTINGS
451 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500452 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500453
454 // OPEN: Settings > About phone > Status > IMEI information
455 // CATEGORY: SETTINGS
456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500457 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500458
459 // OPEN: Settings > Internal storage
460 // CATEGORY: SETTINGS
461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500462 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500463
464 // OPEN: Settings > About phone > Status > SIM status
465 // CATEGORY: SETTINGS
466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500467 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > About phone > Status
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500475 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500476
477 // OPEN: Settings > Display
478 // CATEGORY: SETTINGS
479 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500480 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500481
482 // OPEN: Settings > Display > Daydream
483 // CATEGORY: SETTINGS
484 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500485 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500486
487 // OPEN: Settings > Security > Screen lock > Secure start-up
488 // CATEGORY: SETTINGS
489 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500490 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500491
492 // OPEN: Settings > Security > Nexus Imprint
493 // CATEGORY: SETTINGS
494 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500495 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500496
497 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500498 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500499
500 // OPEN: Settings > Battery > History details
501 // CATEGORY: SETTINGS
502 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500503 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500504
505 // OPEN: Settings > Battery > Battery saver
506 // CATEGORY: SETTINGS
507 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500508 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500509
510 // OPEN: Settings > Battery > [App Use details]
511 // CATEGORY: SETTINGS
512 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500513 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500514
515 // OPEN: Settings > Battery
516 // CATEGORY: SETTINGS
517 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500518 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500519
520 // OPEN: Settings > Home
521 // CATEGORY: SETTINGS
522 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500523 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500524
525 // OPEN: Settings > Security > SIM card lock settings
526 // CATEGORY: SETTINGS
527 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500528 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500529
530 // OPEN: Settings > Language & input
531 // CATEGORY: SETTINGS
532 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500533 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500534
535 // OPEN: Settings > Language & input > Physical keyboard
536 // CATEGORY: SETTINGS
537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500538 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Settings > Language & input > Spell checker
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500546 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500547
548 // OPEN: Settings > Language & input > Personal dictionary
549 // CATEGORY: SETTINGS
550 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500551 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500552
553 // OPEN: Settings > Language & input > Add word
554 // CATEGORY: SETTINGS
555 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500556 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500557
558 // OPEN: Settings > Location
559 // CATEGORY: SETTINGS
560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500561 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > Location > Location mode
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OPEN: Settings > Apps
569 // CATEGORY: SETTINGS
570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500571 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OPEN: Settings > Backup & reset > Factory data reset
574 // CATEGORY: SETTINGS
575 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500576 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500577
578 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
579 // CATEGORY: SETTINGS
580 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500581 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OPEN: Settings > Data usage > Network restrictions
584 // CATEGORY: SETTINGS
585 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500586 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Settings > More > Android Beam
589 // CATEGORY: SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: Settings > Tap & pay
594 // CATEGORY: SETTINGS
595 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500596 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500597
598 // OPEN: Settings > Sound & notification
599 // CATEGORY: SETTINGS
600 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500601 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings > Sound & notification > App notifications > [App]
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: Settings > Sound & notification > Other sounds
609 // CATEGORY: SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500614 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Settings Widget > Notification log
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Sound & notification > Do not disturb
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500627 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500628
629 // OPEN: Print job notification > Print job settings
630 // CATEGORY: SETTINGS
631 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500632 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500633
634 // OPEN: Settings > Printing > [Print Service]
635 // CATEGORY: SETTINGS
636 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500637 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500638
639 // OPEN: Settings > Printing
640 // CATEGORY: SETTINGS
641 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500642 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: Settings > Backup & reset
645 // CATEGORY: SETTINGS
646 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500647 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500650 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500651
652 // OPEN: Settings > Backup & reset > Network settings reset
653 // CATEGORY: SETTINGS
654 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500655 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500656
657 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
658 // CATEGORY: SETTINGS
659 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500660 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500661
662 // OPEN: Settings > Developer Options > Running Services
663 // CATEGORY: SETTINGS
664 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500665 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500666
667 // OPEN: Settings > Security > Screen pinning
668 // CATEGORY: SETTINGS
669 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500670 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: Settings > Security
673 // CATEGORY: SETTINGS
674 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500675 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500676
677 // OPEN: Settings > SIM cards
678 // CATEGORY: SETTINGS
679 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500680 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500681
682 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500683 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // OPEN: Settings > More > Tethering & portable hotspot
686 // CATEGORY: SETTINGS
687 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500688 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500689
690 // OPEN: Settings > Security > Trust agents
691 // CATEGORY: SETTINGS
692 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500693 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500694
695 // OPEN: Settings > Security > Trusted credentials
696 // CATEGORY: SETTINGS
697 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500698 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500699
700 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
701 // CATEGORY: SETTINGS
702 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500703 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // OPEN: Settings > Language & input > Text-to-speech output
706 // CATEGORY: SETTINGS
707 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500708 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500709
710 // OPEN: Settings > Security > Apps with usage access
711 // CATEGORY: SETTINGS
712 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500713 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500714
715 // OPEN: Settings > Users
716 // CATEGORY: SETTINGS
717 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500718 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500719
720 // OPEN: Settings > Users > [Restricted profile app & content access]
721 // CATEGORY: SETTINGS
722 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500723 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500724
725 // OPEN: Settings > Users > [User settings]
726 // CATEGORY: SETTINGS
727 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500728 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500729
730 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500731 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // OPEN: Settings > More > VPN
734 // CATEGORY: SETTINGS
735 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500736 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500737
738 // OPEN: Settings > Display > Choose wallpaper from
739 // CATEGORY: SETTINGS
740 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500741 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500742
743 // OPEN: Settings > Display > Cast
744 // CATEGORY: SETTINGS
745 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500746 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500747
748 // OPEN: Settings > Wi-Fi
749 // CATEGORY: SETTINGS
750 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500751 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500752
753 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
754 // CATEGORY: SETTINGS
755 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500756 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500757
758 // OPEN: Settings > More > Wi-Fi Calling
759 // CATEGORY: SETTINGS
760 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500761 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500762
763 // OPEN: Settings > Wi-Fi > Saved networks
764 // CATEGORY: SETTINGS
765 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500766 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500767
768 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500769 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500770
771 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500772 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500773
774 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
775 // CATEGORY: SETTINGS
776 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500777 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // OPEN: Settings > More
780 // CATEGORY: SETTINGS
781 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500782 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500783
784 // OPEN: Quick Settings Panel
785 // CATEGORY: QUICK_SETTINGS
786 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500787 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500788
789 // OPEN: QS Airplane mode tile shown
790 // ACTION: QS Airplane mode tile tapped
791 // SUBTYPE: 0 is off, 1 is on
792 // CATEGORY: QUICK_SETTINGS
793 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500794 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OPEN: QS Bluetooth tile shown
797 // ACTION: QS Bluetooth tile tapped
798 // SUBTYPE: 0 is off, 1 is on
799 // CATEGORY: QUICK_SETTINGS
800 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500801 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500802
803 // OPEN: QS Cast tile shown
804 // ACTION: QS Cast tile tapped
805 // CATEGORY: QUICK_SETTINGS
806 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500807 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // OPEN: QS Cellular tile shown
810 // ACTION: QS Cellular tile tapped
811 // CATEGORY: QUICK_SETTINGS
812 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500813 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500814
815 // OPEN: QS Color inversion tile shown
816 // ACTION: QS Color inversion tile tapped
817 // SUBTYPE: 0 is off, 1 is on
818 // CATEGORY: QUICK_SETTINGS
819 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500820 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500821
822 // OPEN: QS Cellular tile > Cellular detail panel
823 // CATEGORY: QUICK_SETTINGS
824 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500825 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500826
827 // OPEN: QS Do not disturb tile shown
828 // ACTION: QS Do not disturb tile tapped
829 // SUBTYPE: 0 is off, 1 is on
830 // CATEGORY: QUICK_SETTINGS
831 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500832 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500833
834 // OPEN: QS Flashlight tile shown
835 // ACTION: QS Flashlight tile tapped
836 // SUBTYPE: 0 is off, 1 is on
837 // CATEGORY: QUICK_SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: QS Hotspot tile shown
842 // ACTION: QS Hotspot 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_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // OPEN: QS 3P tile shown
849 // ACTION: QS 3P tile tapped
850 // CATEGORY: QUICK_SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // OPEN: QS Location tile shown
855 // ACTION: QS Location tile tapped
856 // SUBTYPE: 0 is off, 1 is on
857 // CATEGORY: QUICK_SETTINGS
858 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OPEN: QS Rotation tile shown
862 // ACTION: QS Rotation tile tapped
863 // SUBTYPE: 0 is off, 1 is on
864 // CATEGORY: QUICK_SETTINGS
865 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500866 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500867
868 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500869 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OPEN: QS User list panel
872 // CATEGORY: QUICK_SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // OPEN: QS WiFi tile shown
877 // ACTION: QS WiFi tile tapped
878 // SUBTYPE: 0 is off, 1 is on
879 // CATEGORY: QUICK_SETTINGS
880 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500881 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500882
883 // OPEN: Notification Panel (including lockscreen)
884 // CATEGORY: NOTIFICATION
885 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500886 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500887
888 // OPEN: Notification in panel became visible.
889 // PACKAGE: App that posted the notification.
890 // ACTION: Notification is tapped.
891 // PACKAGE: App that posted the notification
892 // DETAIL: Notification is expanded by user.
893 // PACKAGE: App that posted the notification
Esteban Talaveraf9c53b62018-11-14 18:20:29 +0000894 // COLLAPSE: Notification is collapsed by user.
895 // PACKAGE: App that posted the notification
Chris Wren7c516842016-03-01 16:44:32 -0500896 // DISMISS: Notification is dismissed.
897 // PACKAGE: App that posted the notification
898 // SUBTYPE: Dismiss reason from NotificationManagerService.java
899 // CATEGORY: NOTIFICATION
900 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500901 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500902
903 // ACTION: User tapped notification action
904 // PACKAGE: App that posted the notification
905 // SUBTYPE: Index of action on notification
906 // CATEGORY: NOTIFICATION
907 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500908 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500909
910 // OPEN: Settings > Apps > Configure apps > App permissions
911 // CATEGORY: SETTINGS
912 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500913 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500914
915 // OPEN: Settings > Location > Scanning
916 // CATEGORY: SETTINGS
917 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500918 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500919
920 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500921 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500922
923 // OPEN: Settings > Sound & notification > App notifications
924 // CATEGORY: SETTINGS
925 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500926 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500927
928 // ACTION: Settings > Wi-Fi > Overflow > Add Network
929 // CATEGORY: SETTINGS
930 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500931 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500932
933 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700934 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // ACTION: Settings > Wi-Fi > Overflow > Refresh
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
945 // CATEGORY: SETTINGS
946 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500947 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700950 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500951 // CATEGORY: SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // ACTION: Settings > Wi-Fi > Toggle on
956 // CATEGORY: SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500961 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500962
963 // OPEN: Settings > Sound & notification > DND > Priority only allows
964 // CATEGORY: SETTINGS
965 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500966 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500967
968 // OPEN: Settings > Sound & notification > DND > Automatic rules
969 // CATEGORY: SETTINGS
970 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500971 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500972
973 // OPEN: Settings > Apps > Configure apps > App links
974 // CATEGORY: SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // OPEN: Settings > Sound & notification > DND > [Time based rule]
979 // CATEGORY: SETTINGS
980 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500981 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // OPEN: Settings > Sound & notification > DND > [External rule]
984 // CATEGORY: SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // OPEN: Settings > Sound & notification > DND > [Event rule]
989 // CATEGORY: SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500992
Howard Ro8b56f752018-08-07 15:44:25 -0700993 // ACTION: App notification settings > Block Notifications or long press on
994 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -0500995 // CATEGORY: SETTINGS
Howard Ro8b56f752018-08-07 15:44:25 -0700996 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -0500997 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500998
999 // ACTION: Notification shade > Dismiss all button
1000 // CATEGORY: NOTIFICATION
1001 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001002 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -05001003
1004 // OPEN: QS Do Not Disturb detail panel
1005 // CATEGORY: QUICK_SETTINGS
1006 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001007 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -05001008
1009 // OPEN: QS Bluetooth detail panel
1010 // CATEGORY: QUICK_SETTINGS
1011 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001012 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -05001013
1014 // OPEN: QS Cast detail panel
1015 // CATEGORY: QUICK_SETTINGS
1016 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001017 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -05001018
1019 // OPEN: QS Wi-Fi detail panel
1020 // CATEGORY: QUICK_SETTINGS
1021 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001022 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -05001023
1024 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
1025 // SUBTYPE: 0 is off, 1 is on
1026 // CATEGORY: QUICK_SETTINGS
1027 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001028 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -05001029
1030 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
1031 // SUBTYPE: 0 is off, 1 is on
1032 // CATEGORY: QUICK_SETTINGS
1033 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001034 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -05001035
1036 // ACTION: QS Cellular detail panel > Cellular toggle
1037 // SUBTYPE: 0 is off, 1 is on
1038 // CATEGORY: QUICK_SETTINGS
1039 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001040 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -05001041
1042 // ACTION: QS User list panel > Select different user
1043 // CATEGORY: QUICK_SETTINGS
1044 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001045 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -05001046
1047 // ACTION: QS Cast detail panel > Select cast device
1048 // CATEGORY: QUICK_SETTINGS
1049 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001050 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001051
1052 // ACTION: QS Cast detail panel > Disconnect cast device
1053 // CATEGORY: QUICK_SETTINGS
1054 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001055 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001056
1057 // ACTION: Settings > Bluetooth > Toggle
1058 // SUBTYPE: 0 is off, 1 is on
1059 // CATEGORY: SETTINGS
1060 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001061 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001062
1063 // ACTION: Settings > Bluetooth > Overflow > Refresh
1064 // CATEGORY: SETTINGS
1065 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001066 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001067
1068 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1069 // CATEGORY: SETTINGS
1070 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001071 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001072
1073 // ACTION: Settings > Bluetooth > Overflow > Show received files
1074 // CATEGORY: SETTINGS
1075 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001076 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001077
1078 // ACTION: QS DND details panel > Increase / Decrease exit time
1079 // SUBTYPE: true is increase, false is decrease
1080 // CATEGORY: QUICK_SETTINGS
1081 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001082 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001083
1084 // ACTION: QS DND details panel > [Exit condition]
1085 // CATEGORY: QUICK_SETTINGS
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // ACTION: QS DND details panel > [DND mode]
1090 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1091 // CATEGORY: QUICK_SETTINGS
1092 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001093 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001094
1095 // ACTION: QS DND detail panel > DND toggle
1096 // SUBTYPE: 0 is off, 1 is on
1097 // CATEGORY: QUICK_SETTINGS
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: DND Settings > Priority only allows > Reminder toggle
1102 // SUBTYPE: 0 is off, 1 is on
1103 // CATEGORY: SETTINGS
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: DND Settings > Priority only allows > Event toggle
1108 // SUBTYPE: 0 is off, 1 is on
1109 // CATEGORY: SETTINGS
1110 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001111 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001112
1113 // ACTION: DND Settings > Priority only allows > Messages
1114 // SUBTYPE: 0 is off, 1 is on
1115 // CATEGORY: SETTINGS
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // ACTION: DND Settings > Priority only allows > Calls
1120 // SUBTYPE: 0 is off, 1 is on
1121 // CATEGORY: SETTINGS
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1126 // SUBTYPE: 0 is off, 1 is on
1127 // CATEGORY: SETTINGS
1128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001129 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001130
1131 // ACTION: DND Settings > Automatic rules > Add rule
1132 // CATEGORY: SETTINGS
1133 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001134 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001135
1136 // ACTION: DND Settings > Automatic rules > Add rule > OK
1137 // CATEGORY: SETTINGS
1138 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001139 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001140
1141 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1142 // CATEGORY: SETTINGS
1143 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001144 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001145
1146 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1147 // CATEGORY: SETTINGS
1148 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001149 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001150
1151 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1152 // SUBTYPE: 0 is off, 1 is on
1153 // CATEGORY: SETTINGS
1154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // ACTION: Settings > More > Airplane mode toggle
1158 // SUBTYPE: 0 is off, 1 is on
1159 // CATEGORY: SETTINGS
1160 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001161 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001162
1163 // ACTION: Settings > Data usage > Cellular data toggle
1164 // SUBTYPE: 0 is off, 1 is on
1165 // CATEGORY: SETTINGS
1166 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001167 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001168
1169 // OPEN: Settings > Sound & notification > Notification access
1170 // CATEGORY: SETTINGS
1171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001172 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // OPEN: Settings > Sound & notification > Do Not Disturb access
1175 // CATEGORY: SETTINGS
1176 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001177 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001178
1179 // OPEN: Settings > Apps > Configure apps > Default Apps
1180 // CATEGORY: SETTINGS
1181 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001182 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001183
1184 // OPEN: Settings > Internal storage > Apps storage
1185 // CATEGORY: SETTINGS
1186 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001187 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001188
1189 // OPEN: Settings > Security > Usage access
1190 // CATEGORY: SETTINGS
1191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001192 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001193
1194 // OPEN: Settings > Battery > Battery optimization
1195 // CATEGORY: SETTINGS
1196 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001197 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001198
1199 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001200 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // ACTION: Lockscreen > Unlock gesture
1203 // CATEGORY: GLOBAL_SYSTEM_UI
1204 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001205 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001206
1207 // ACTION: Lockscreen > Pull shade open
1208 // CATEGORY: GLOBAL_SYSTEM_UI
1209 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001210 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001211
1212 // ACTION: Lockscreen > Tap on lock, shows hint
1213 // CATEGORY: GLOBAL_SYSTEM_UI
1214 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001215 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001216
1217 // ACTION: Lockscreen > Camera
1218 // CATEGORY: GLOBAL_SYSTEM_UI
1219 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001220 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001221
1222 // ACTION: Lockscreen > Dialer
1223 // CATEGORY: GLOBAL_SYSTEM_UI
1224 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001225 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001226
1227 // ACTION: Lockscreen > Tap on lock, locks phone
1228 // CATEGORY: GLOBAL_SYSTEM_UI
1229 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001230 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001231
1232 // ACTION: Lockscreen > Tap on notification, false touch rejection
1233 // CATEGORY: GLOBAL_SYSTEM_UI
1234 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001235 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001236
1237 // ACTION: Lockscreen > Swipe down to open quick settings
1238 // CATEGORY: GLOBAL_SYSTEM_UI
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Swipe down to open quick settings when unlocked
1243 // CATEGORY: GLOBAL_SYSTEM_UI
1244 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001245 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001246
1247 // ACTION: Notification shade > Tap to open quick settings
1248 // CATEGORY: GLOBAL_SYSTEM_UI
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // OPEN: Lockscreen
1253 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1254 // CATEGORY: GLOBAL_SYSTEM_UI
1255 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001256 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1259 // CATEGORY: GLOBAL_SYSTEM_UI
1260 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001261 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001262
1263 // OPEN: Screen turned on
1264 // SUBTYPE: 2 is user action
1265 // CATEGORY: GLOBAL_SYSTEM_UI
1266 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001267 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001268
1269 // OPEN: Notification caused sound, vibration, and/or LED blink
1270 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1271 // CATEGORY: NOTIFICATION
1272 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001273 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // ACTION: Lockscreen > Emergency Call button
1276 // CATEGORY: GLOBAL_SYSTEM_UI
1277 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001278 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1281 // CATEGORY: SETTINGS
1282 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001283 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001284
1285 // OPEN: Settings > Memory
1286 // CATEGORY: SETTINGS
1287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001288 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001289
1290 // ACTION: Settings > Display > When device is rotated
1291 // CATEGORY: SETTINGS
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // ACTION: Long press on notification to view controls
1296 // CATEGORY: NOTIFICATION
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // ACTION: Notificatoin controls > Info button
1301 // CATEGORY: NOTIFICATION
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // ACTION: Notification controls > Settings button
1306 // CATEGORY: NOTIFICATION
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // OPEN: Volume Dialog (with hardware buttons)
1311 // CATEGORY: GLOBAL_SYSTEM_UI
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1316 // CATEGORY: GLOBAL_SYSTEM_UI
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // ACTION: Volume dialog > Adjust volume slider
1321 // SUBTYPE: volume level (0-7)
1322 // CATEGORY: GLOBAL_SYSTEM_UI
1323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001324 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001325
1326 // ACTION: Volume dialog > Select non-active stream
1327 // SUBTYPE: stream (defined in AudioSystem.java)
1328 // CATEGORY: GLOBAL_SYSTEM_UI
1329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001330 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001331
1332 // ACTION: Adjust volume with hardware key
1333 // SUBTYPE: volume level (0-7)
1334 // CATEGORY: GLOBAL_SYSTEM_UI
1335 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001336 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001337
1338 // ACTION: Volume dialog > Mute a stream by tapping icon
1339 // SUBTYPE: mute is 1, audible is 2
1340 // CATEGORY: GLOBAL_SYSTEM_UI
1341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001342 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001343
1344 // ACTION: Volume dialog > Change ringer mode by tapping icon
1345 // SUBTYPE: 2 is audible, 3 is vibrate
1346 // CATEGORY: GLOBAL_SYSTEM_UI
1347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001348 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001349
1350 // ACTION: Chooser shown (share target, file open, etc.)
1351 // CATEGORY: GLOBAL_SYSTEM_UI
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // ACTION: Chooser > User taps an app target
1356 // SUBTYPE: Index of target
1357 // CATEGORY: GLOBAL_SYSTEM_UI
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // ACTION: Chooser > User taps a service target
1362 // SUBTYPE: Index of target
1363 // CATEGORY: GLOBAL_SYSTEM_UI
1364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001365 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // ACTION: Chooser > User taps a standard target
1368 // SUBTYPE: Index of target
1369 // CATEGORY: GLOBAL_SYSTEM_UI
1370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001371 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // ACTION: QS Brightness Slider (with auto brightness disabled)
1374 // SUBTYPE: slider value
1375 // CATEGORY: QUICK_SETTINGS
1376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001377 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001378
1379 // ACTION: QS Brightness Slider (with auto brightness enabled)
1380 // SUBTYPE: slider value
1381 // CATEGORY: QUICK_SETTINGS
1382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001383 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // OPEN: Settings > Display > Brightness Slider
1386 // CATEGORY: SETTINGS
1387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001388 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001389
Christine Franks47175c32017-03-14 10:21:25 -07001390 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001391 // CATEGORY: SETTINGS
1392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001393 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001394
1395 // OPEN: Display has entered dream mode
1396 // CATEGORY: GLOBAL_SYSTEM_UI
1397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001398 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001399
1400 // OPEN: Display has entered ambient notification mode
1401 // CATEGORY: GLOBAL_SYSTEM_UI
1402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001403 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001404
1405 // OPEN: Overview
1406 // CATEGORY: GLOBAL_SYSTEM_UI
1407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001408 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001409
1410 // OPEN: Settings > About phone > Legal information
1411 // CATEGORY: SETTINGS
1412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001413 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001414
1415 // OPEN: Settings > Search > Perform search
1416 // CATEGORY: SETTINGS
1417 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001418 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001419
1420 // OPEN: Settings > System UI Tuner
1421 // CATEGORY: SETTINGS
1422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001423 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001424
1425 // OPEN: Settings > System UI Tuner > Quick Settings
1426 // CATEGORY: SETTINGS
1427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001428 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001429
1430 // OPEN: Settings > System UI Tuner > Demo mode
1431 // CATEGORY: SETTINGS
1432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001433 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001434
1435 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1436 // PACKAGE: Tile
1437 // CATEGORY: SETTINGS
1438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001439 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001440
1441 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1442 // PACKAGE: Tile
1443 // CATEGORY: SETTINGS
1444 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001445 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001446
1447 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1448 // PACKAGE: Tile
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1454 // PACKAGE: Icon
1455 // CATEGORY: SETTINGS
1456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001457 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001458
1459 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1460 // PACKAGE: Icon
1461 // CATEGORY: SETTINGS
1462 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001463 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001464
1465 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1466 // SUBTYPE: false is disabled, true is enabled
1467 // CATEGORY: SETTINGS
1468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001469 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001470
1471 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1472 // SUBTYPE: false is disabled, true is enabled
1473 // CATEGORY: SETTINGS
1474 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001475 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001476
1477 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1478 // SUBTYPE: 0 is disabled, 1 is enabled
1479 // CATEGORY: SETTINGS
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: Settings > Developer options > Inactive apps
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // ACTION: Long press home to bring up assistant
1489 // CATEGORY: GLOBAL_SYSTEM_UI
1490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001491 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1494 // CATEGORY: SETTINGS
1495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001496 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001497
1498 // OPEN: Fingerprint Enroll > Find Sensor
1499 // CATEGORY: SETTINGS
1500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001501 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001502
1503 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1504 // CATEGORY: SETTINGS
1505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001506 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001507
1508 // OPEN: Fingerprint Enroll introduction
1509 // CATEGORY: SETTINGS
1510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001511 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001512
1513 // OPEN: Fingerprint Enroll onboarding
1514 // CATEGORY: SETTINGS
1515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001516 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001517
1518 // OPEN: Fingerprint Enroll > Let's Start!
1519 // CATEGORY: SETTINGS
1520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001521 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001522
1523 // OPEN: Fingerprint Enroll SUW > Let's Start!
1524 // CATEGORY: SETTINGS
1525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001526 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001527
1528 // OPEN: Fingerprint Enroll SUW > Find Sensor
1529 // CATEGORY: SETTINGS
1530 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001531 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001532
1533 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1534 // CATEGORY: SETTINGS
1535 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001536 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001537
1538 // OPEN: Fingerprint Enroll SUW introduction
1539 // CATEGORY: SETTINGS
1540 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001541 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001542
1543 // OPEN: Fingerprint Enroll SUW onboarding
1544 // CATEGORY: SETTINGS
1545 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001546 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001547
1548 // ACTION: Add fingerprint > Enroll fingerprint
1549 // CATEGORY: SETTINGS
1550 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001551 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001552
1553 // ACTION: Authenticate using fingerprint
1554 // CATEGORY: SETTINGS
1555 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001556 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001557
1558 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1559 // CATEGORY: SETTINGS
1560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001561 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001562
1563 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1564 // CATEGORY: SETTINGS
1565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001566 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001567
1568 // ACTION: Double tap camera shortcut
1569 // CATEGORY: GLOBAL_SYSTEM_UI
1570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001571 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001572
1573 // ACTION: Double twist camera shortcut
1574 // CATEGORY: GLOBAL_SYSTEM_UI
1575 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001576 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001577
1578 // OPEN: QS Work Mode tile shown
1579 // ACTION: QS Work Mode tile tapped
1580 // SUBTYPE: 0 is off, 1 is on
1581 // CATEGORY: QUICK_SETTINGS
1582 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001583 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001584
1585 // OPEN: Settings > Developer Options > Background Check
1586 // CATEGORY: SETTINGS
1587 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001588 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001589
1590 // OPEN: QS Lock tile shown
1591 // ACTION: QS Lock tile tapped
1592 // SUBTYPE: 0 is off, 1 is on
1593 // CATEGORY: QUICK_SETTINGS
1594 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001595 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001596
1597 // OPEN: QS User Tile shown
1598 // CATEGORY: QUICK_SETTINGS
1599 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001600 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001601
1602 // OPEN: QS Battery tile shown
1603 // CATEGORY: QUICK_SETTINGS
1604 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001605 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001606
1607 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1608 // CATEGORY: SETTINGS
1609 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001610 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001611
1612 // ACTION: Visual interruptions > No screen interuptions toggle
1613 // SUBTYPE: 0 is off, 1 is on
1614 // CATEGORY: SETTINGS
1615 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001616 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001617
1618 // ACTION: Visual interruptions > No notification light toggle
1619 // SUBTYPE: 0 is off, 1 is on
1620 // CATEGORY: SETTINGS
1621 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001622 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001623
Julia Reynolds005c8b92017-08-24 10:35:53 -04001624 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001625 // CATEGORY: SETTINGS
1626 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001627 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001628
1629 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1630 // PACKAGE: Selected SMS app
1631 // CATEGORY: SETTINGS
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001634
1635 // OPEN: QS Color modification tile shown
1636 // ACTION: QS Color modification tile tapped
1637 // SUBTYPE: 0 is off, 1 is on
1638 // CATEGORY: QUICK_SETTINGS
1639 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001640 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001641
1642 // OPEN: QS Custom tile shown
1643 // ACTION: QS Work Mode tile tapped
1644 // CATEGORY: QUICK_SETTINGS
1645 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001646 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001647
1648 // ACTION: Visual interruptions > Never turn off the screen toggle
1649 // SUBTYPE: 0 is off, 1 is on
1650 // CATEGORY: SETTINGS
1651 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001652 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001653
Chris Wren7c516842016-03-01 16:44:32 -05001654 // ACTION: Overview > Long-press task, drag to enter split-screen
1655 // CATEGORY: GLOBAL_SYSTEM_UI
1656 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001657 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1658
Chris Wren7c516842016-03-01 16:44:32 -05001659 // ACTION: In App > Long-press Overview button to enter split-screen
1660 // CATEGORY: GLOBAL_SYSTEM_UI
1661 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001662 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1663
Chris Wren7c516842016-03-01 16:44:32 -05001664 // ACTION: In App > Swipe Overview button to enter split-screen
1665 // CATEGORY: GLOBAL_SYSTEM_UI
1666 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001667 ACTION_WINDOW_DOCK_SWIPE = 272;
1668
Chris Wren7c516842016-03-01 16:44:32 -05001669 // ACTION: Launch profile-specific app > Confirm credentials
1670 // CATEGORY: GLOBAL_SYSTEM_UI
1671 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001672 PROFILE_CHALLENGE = 273;
1673
Chris Wren7c516842016-03-01 16:44:32 -05001674 // OPEN: QS Battery detail panel
1675 // CATEGORY: GLOBAL_SYSTEM_UI
1676 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001677 QS_BATTERY_DETAIL = 274;
1678
Chris Wren7c516842016-03-01 16:44:32 -05001679 // OPEN: Overview > History
1680 // CATEGORY: GLOBAL_SYSTEM_UI
1681 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001682 OVERVIEW_HISTORY = 275;
1683
Chris Wren7c516842016-03-01 16:44:32 -05001684 // ACTION: Overview > Page by tapping Overview button
1685 // CATEGORY: GLOBAL_SYSTEM_UI
1686 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001687 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001688
Chris Wren7c516842016-03-01 16:44:32 -05001689 // ACTION: Overview > Select app
1690 // CATEGORY: GLOBAL_SYSTEM_UI
1691 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001692 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001693
Chris Wren7c516842016-03-01 16:44:32 -05001694 // ACTION: View emergency info
1695 // CATEGORY: GLOBAL_SYSTEM_UI
1696 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001697 ACTION_VIEW_EMERGENCY_INFO = 278;
1698
Chris Wren7c516842016-03-01 16:44:32 -05001699 // ACTION: Edit emergency info activity
1700 // CATEGORY: SETTINGS
1701 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001702 ACTION_EDIT_EMERGENCY_INFO = 279;
1703
Chris Wren7c516842016-03-01 16:44:32 -05001704 // ACTION: Edit emergency info field
1705 // CATEGORY: SETTINGS
1706 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001707 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1708
Chris Wren7c516842016-03-01 16:44:32 -05001709 // ACTION: Add emergency contact
1710 // CATEGORY: SETTINGS
1711 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001712 ACTION_ADD_EMERGENCY_CONTACT = 281;
1713
Chris Wren7c516842016-03-01 16:44:32 -05001714 // ACTION: Delete emergency contact
1715 // CATEGORY: SETTINGS
1716 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001717 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1718
Chris Wren7c516842016-03-01 16:44:32 -05001719 // ACTION: Call emergency contact
1720 // CATEGORY: SETTINGS
1721 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001722 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001723
Chris Wren7c516842016-03-01 16:44:32 -05001724 // OPEN: QS Data Saver tile shown
1725 // ACTION: QS Data Saver tile tapped
1726 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001727 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001728
Robin Lee8c1306e2016-02-01 11:37:02 +00001729 // OPEN: Settings > Security > User credentials
1730 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001731 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001732 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001733
Chris Wren7c516842016-03-01 16:44:32 -05001734 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1735 // CATEGORY: GLOBAL_SYSTEM_UI
1736 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001737 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001738
1739 // Logged when the user scrolls through overview manually
1740 OVERVIEW_SCROLL = 287;
1741
1742 // Logged when the overview times out automatically selecting an app
1743 OVERVIEW_SELECT_TIMEOUT = 288;
1744
1745 // Logged when a user dismisses a task in overview
1746 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001747
1748 // Logged when the user modifying the notification importance slider.
1749 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1750
1751 // Logged when the user saves a modification to notification importance. Negative numbers
1752 // indicate the user lowered the importance; positive means they increased it.
1753 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001754
Chris Wren7c516842016-03-01 16:44:32 -05001755 // ACTION: Long-press power button, then tap "Take bug report" option.
1756 // CATEGORY: GLOBAL_SYSTEM_UI
1757 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001758 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1759
Chris Wren7c516842016-03-01 16:44:32 -05001760 // ACTION: Long-press power button, then long-press "Take bug report" option.
1761 // CATEGORY: GLOBAL_SYSTEM_UI
1762 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001763 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1764
Chris Wren7c516842016-03-01 16:44:32 -05001765 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1766 // CATEGORY: SETTINGS
1767 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001768 // Interactive bug report initiated from Settings.
1769 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1770
Chris Wren7c516842016-03-01 16:44:32 -05001771 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1772 // CATEGORY: SETTINGS
1773 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001774 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001775 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1776
Chris Wren7c516842016-03-01 16:44:32 -05001777 // ACTION: User tapped notification action to cancel a bug report
1778 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001779 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001780 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1781
Chris Wren7c516842016-03-01 16:44:32 -05001782 // ACTION: User tapped notification action to launch bug report details screen
1783 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001784 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001785 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1786
Chris Wren7c516842016-03-01 16:44:32 -05001787 // ACTION: User tapped notification action to take adition screenshot on bug report
1788 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001789 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001790 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1791
Chris Wren7c516842016-03-01 16:44:32 -05001792 // ACTION: User tapped notification to share bug report
1793 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001794 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001795 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1796
Chris Wren7c516842016-03-01 16:44:32 -05001797 // ACTION: User changed bug report name using the details screen
1798 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001799 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001800 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1801
Chris Wren7c516842016-03-01 16:44:32 -05001802 // ACTION: User changed bug report title using the details screen
1803 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001804 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001805 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1806
Chris Wren7c516842016-03-01 16:44:32 -05001807 // ACTION: User changed bug report description using the details screen
1808 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001809 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001810 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1811
Chris Wren7c516842016-03-01 16:44:32 -05001812 // ACTION: User tapped Save in the bug report details screen.
1813 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001814 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001815 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1816
Chris Wren7c516842016-03-01 16:44:32 -05001817 // ACTION: User tapped Cancel in the bug report details screen.
1818 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001819 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001820 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001821
1822 // Tuner: Open/close calibrate dialog.
1823 TUNER_CALIBRATE_DISPLAY = 305;
1824
1825 // Tuner: Open/close color and appearance.
1826 TUNER_COLOR_AND_APPEARANCE = 306;
1827
1828 // Tuner: Apply calibrate dialog.
1829 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1830
1831 // Tuner: Open/close night mode.
1832 TUNER_NIGHT_MODE = 308;
1833
1834 // Tuner: Change night mode.
1835 ACTION_TUNER_NIGHT_MODE = 309;
1836
1837 // Tuner: Change night mode auto.
1838 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1839
1840 // Tuner: Change night mode adjust dark theme.
1841 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1842
1843 // Tuner: Change night mode adjust tint.
1844 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1845
1846 // Tuner: Change night mode adjust brightness.
1847 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1848
1849 // Tuner: Change do not disturb in volume panel.
1850 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1851
1852 // Tuner: Change do not disturb volume buttons shortcut.
1853 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001854
1855 // Logs the action the user takes when an app crashed.
1856 ACTION_APP_CRASH = 316;
1857
1858 // Logs the action the user takes when an app ANR'd.
1859 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001860
1861 // Logged when a user double taps the overview button to launch the previous task
1862 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001863
1864 // Logged when we execute an app transition. This indicates the total delay from startActivity
1865 // until the app transition is starting to animate, in milliseconds.
1866 APP_TRANSITION_DELAY_MS = 319;
1867
1868 // Logged when we execute an app transition. This indicates the reason why the transition
1869 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1870 APP_TRANSITION_REASON = 320;
1871
1872 // Logged when we execute an app transition and we drew a starting window. This indicates the
1873 // delay from startActivity until the starting window was drawn.
1874 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1875
1876 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1877 // the delay from startActivity until all windows have been drawn.
1878 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1879
1880 // Logged when we execute an app transition. This indicates the component name of the current
1881 // transition.
1882 APP_TRANSITION_COMPONENT_NAME = 323;
1883
1884 // Logged when we execute an app transition. This indicates whether the process was already
1885 // running.
1886 APP_TRANSITION_PROCESS_RUNNING = 324;
1887
1888 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1889 // the transition was executed.
1890 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001891
Chris Wren38f98812016-07-13 14:28:40 -04001892 // ACTION: app requested access to a scoped directory, user granted it.
1893 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1894 // CATEGORY: GLOBAL_SYSTEM_UI
1895 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001896 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1897
Chris Wren38f98812016-07-13 14:28:40 -04001898 // ACTION: app requested access to a scoped directory, user denied it.
1899 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1900 // CATEGORY: GLOBAL_SYSTEM_UI
1901 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001902 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1903
Chris Wren38f98812016-07-13 14:28:40 -04001904 // ACTION: app requested access to a scoped directory, user granted it.
1905 // PACKAGE: app that requested access
1906 // CATEGORY: GLOBAL_SYSTEM_UI
1907 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001908 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1909
Chris Wren38f98812016-07-13 14:28:40 -04001910 // ACTION: app requested access to a scoped directory, user denied it.
1911 // PACKAGE: app that requested access.
1912 // CATEGORY: GLOBAL_SYSTEM_UI
1913 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001914 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1915
Chris Wren38f98812016-07-13 14:28:40 -04001916 // ACTION: app requested access to a directory user has already been granted
1917 // access before.
1918 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1919 // CATEGORY: GLOBAL_SYSTEM_UI
1920 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001921 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1922
Chris Wren38f98812016-07-13 14:28:40 -04001923 // ACTION: app requested access to a directory user has already been granted
1924 // access before.
1925 // PACKAGE: app that requested access.
1926 // CATEGORY: GLOBAL_SYSTEM_UI
1927 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001928 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001929
Chris Wren38f98812016-07-13 14:28:40 -04001930 // ACTION: Logged when the user slides a notification and reveals the gear
1931 // beneath it.
1932 // CATEGORY: NOTIFICATION
1933 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001934 ACTION_REVEAL_GEAR = 332;
1935
Chris Wren38f98812016-07-13 14:28:40 -04001936 // ACTION: Logged when the user taps on the gear beneath a notification.
1937 // CATEGORY: NOTIFICATION
1938 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001939 ACTION_TOUCH_GEAR = 333;
1940
Ruben Brunke24b9a62016-02-16 21:38:24 -08001941 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001942 // CATEGORY: SETTINGS
1943 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001944 VR_MANAGE_LISTENERS = 334;
1945
Jason Monk6f5354d2016-03-08 14:18:08 -05001946 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001947 // CATEGORY: SETTINGS
1948 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001949 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001950
Jason Monk6f5354d2016-03-08 14:18:08 -05001951 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001952 // CATEGORY: SETTINGS
1953 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001954 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001955
Jason Monk6f5354d2016-03-08 14:18:08 -05001956 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001957 // CATEGORY: SETTINGS
1958 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001959 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001960
Jason Monk6f5354d2016-03-08 14:18:08 -05001961 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001962 // CATEGORY: SETTINGS
1963 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001964 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001965
Jason Monk6f5354d2016-03-08 14:18:08 -05001966 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001967 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001968 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001969
Jason Monk6f5354d2016-03-08 14:18:08 -05001970 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001971 // CATEGORY: SETTINGS
1972 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001973 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001974
Jason Monk6f5354d2016-03-08 14:18:08 -05001975 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001976 // CATEGORY: SETTINGS
1977 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001978 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001979
Jason Monk6f5354d2016-03-08 14:18:08 -05001980 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001981 // CATEGORY: SETTINGS
1982 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001983 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001984
Jason Monk6f5354d2016-03-08 14:18:08 -05001985 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001986 // CATEGORY: SETTINGS
1987 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001988 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001989
Jason Monk6f5354d2016-03-08 14:18:08 -05001990 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001991 // CATEGORY: SETTINGS
1992 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001993 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001994
Jason Monk6f5354d2016-03-08 14:18:08 -05001995 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001996 // CATEGORY: SETTINGS
1997 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001998 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001999
Jason Monk6f5354d2016-03-08 14:18:08 -05002000 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04002001 // CATEGORY: SETTINGS
2002 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002003 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04002004
Jason Monk6f5354d2016-03-08 14:18:08 -05002005 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04002006 // CATEGORY: SETTINGS
2007 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002008 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04002009
Jason Monk6f5354d2016-03-08 14:18:08 -05002010 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04002011 // CATEGORY: SETTINGS
2012 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002013 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04002014
Jason Monk6f5354d2016-03-08 14:18:08 -05002015 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04002016 // CATEGORY: SETTINGS
2017 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002018 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
2019
2020 // Used for generic logging of Settings Preference Persistence, should not be used
2021 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04002022 // CATEGORY: SETTINGS
2023 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002024 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04002025
Jason Monk6f5354d2016-03-08 14:18:08 -05002026 // Settings -> Apps -> Gear -> Special access
2027 SPECIAL_ACCESS = 351;
2028
Muyuan Lia2129992016-03-03 18:30:39 -08002029 // Logs that the user docks window via shortcut key.
2030 WINDOW_DOCK_SHORTCUTS = 352;
2031
Felipe Lemeadccb992016-03-09 17:40:49 -08002032 // User already denied access to the request folder; action takes an integer
2033 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002034 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002035 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
2036
2037 // User already denied access to the request folder; action pass package name
2038 // of calling package.
2039 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
2040
2041 // User denied access to the request folder and checked 'Do not ask again';
2042 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002043 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002044 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
2045
2046 // User denied access to the request folder and checked 'Do not ask again';
2047 // action pass package name of calling package.
2048 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2049
Winson3b6ba1a2016-03-22 15:37:54 -07002050 // Logged when a user dismisses all task in overview
2051 OVERVIEW_DISMISS_ALL = 357;
2052
Jason Monk96defbe2016-03-29 16:51:03 -04002053 // Quick Settings -> Edit
2054 QS_EDIT = 358;
2055
2056 // Quick Settings -> Edit -> Overflow -> Reset
2057 ACTION_QS_EDIT_RESET = 359;
2058
2059 // QS -> Edit - Drag a tile out of the active tiles.
2060 // The _SPEC contains either the spec of the tile or
2061 // the package of the 3rd party app in the PKG field.
2062 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2063 ACTION_QS_EDIT_REMOVE = 361;
2064
2065 // QS -> Edit - Drag a tile into the active tiles.
2066 // The _SPEC contains either the spec of the tile or
2067 // the package of the 3rd party app in the PKG field.
2068 ACTION_QS_EDIT_ADD_SPEC = 362;
2069 ACTION_QS_EDIT_ADD = 363;
2070
2071 // QS -> Edit - Drag a tile within the active tiles.
2072 // The _SPEC contains either the spec of the tile or
2073 // the package of the 3rd party app in the PKG field.
2074 ACTION_QS_EDIT_MOVE_SPEC = 364;
2075 ACTION_QS_EDIT_MOVE = 365;
2076
2077 // Long-press on a QS tile. Tile spec in package field.
2078 ACTION_QS_LONG_PRESS = 366;
2079
Anna Galuszadad131f2016-03-22 13:49:02 -07002080 // OPEN: SUW Welcome Screen -> Vision Settings
2081 // CATEGORY: SETTINGS
2082 // OS: N
2083 SUW_ACCESSIBILITY = 367;
2084
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002085 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2086 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2087 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002088 // ACTION: New magnification gesture configuration is chosen
2089 // SUBTYPE: 0 is off, 1 is on
2090 // CATEGORY: SETTINGS
2091 // OS: N
2092 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2093
2094 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2095 // ACTION: New font size is chosen
2096 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2097 // CATEGORY: SETTINGS
2098 // OS: N
2099 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2100
2101 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2102 // ACTION: New display size is chosen
2103 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2104 // CATEGORY: SETTINGS
2105 // OS: N
2106 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2107
2108 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2109 // ACTION: New screen reader configuration is chosen
2110 // SUBTYPE: 0 is off, 1 is on
2111 // CATEGORY: SETTINGS
2112 // OS: N
2113 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2114
Jason Monkc3620392016-03-30 15:46:03 -04002115 // ------- Begin N Settings conditionals -----
2116 // Conditionals are the green bars at the top of the settings dashboard
2117 // All conditionals will have visible/hide events onResume/onPause
2118 // but they will also be used as extra ints in the
2119 // dismiss/expand/collapse/click/button events
2120
2121 // swipe away conditional
2122 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2123
2124 // click on collapsed conditional or clicks expand button
2125 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2126
2127 // click collapse button on expanded conditional
2128 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2129
2130 // click main area of expanded conditional
2131 ACTION_SETTINGS_CONDITION_CLICK = 375;
2132
2133 // click a direct button on expanded conditional
2134 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2135
2136 // Airplane mode on
2137 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2138 // AKA Data saver on
2139 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2140 // Battery saver on
2141 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2142 // Cellular data off
2143 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2144 // Do not disturb on
2145 SETTINGS_CONDITION_DND = 381;
2146 // Hotspot on
2147 SETTINGS_CONDITION_HOTSPOT = 382;
2148 // Work profile off
2149 SETTINGS_CONDITION_WORK_MODE = 383;
2150
Jason Monk1b5d87b2016-03-30 16:03:15 -04002151 // ------- Begin N Settings suggestions -----
2152 // Since suggestions come from system apps, suggestions will
2153 // have generic constants and the package providing the suggestion
2154 // will be put in the package field. For suggestions in the Settings
2155 // package, the class name will be filled in instead (since settings
2156 // provides several suggetions).
2157
2158 // Settings shown/hidden on main settings dashboard.
2159 // These are actually visibility events, but visible/hidden doesn't
2160 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002161 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2162 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002163
2164 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002165 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002166
2167 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002168 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002169
Jason Monk397df682016-03-28 15:48:34 -04002170 // Settings > Apps > Gear > Special Access > Premium SMS access
2171 PREMIUM_SMS_ACCESS = 388;
2172
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002173 // Logged when the user resizes the docked stack. Arguments:
2174 // 0: Split 50:50
2175 // 1: Docked smaller
2176 // 2: Docked larger
2177 ACTION_WINDOW_DOCK_RESIZE = 389;
2178
2179 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2180 // 0: Docked gets maximized
2181 // 1: Fullscreen gets maximized
2182 ACTION_WINDOW_UNDOCK_MAX = 390;
2183
2184 // User tried to dock an unresizable app.
2185 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2186
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002187 // System UI Tuner > Other > Power notification controls
2188 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2189
2190 // System UI Tuner > Other > Power notification controls > Toggle on/off
2191 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2192
Chris Wren38f98812016-07-13 14:28:40 -04002193 // Action: user enable / disabled data saver using Settings
2194 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2195 // VALUE: 1 for enabled, 0 for disabled
2196 // CATEGORY: SETTINGS
2197 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002198 ACTION_DATA_SAVER_MODE = 394;
2199
Chris Wren38f98812016-07-13 14:28:40 -04002200 // User whitelisted an app for Data Saver mode; action pass package name of app
2201 // Action: user enable / disabled data saver using Settings
2202 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2203 // or
2204 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2205 // VALUE: package name of APP
2206 // CATEGORY: SETTINGS
2207 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002208 ACTION_DATA_SAVER_WHITELIST = 395;
2209
Chris Wren38f98812016-07-13 14:28:40 -04002210 // User blacklisted an app for Data Saver mode; action pass package name of app
2211 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2212 // VALUE: package name of APP
2213 // CATEGORY: SETTINGS
2214 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002215 ACTION_DATA_SAVER_BLACKLIST = 396;
2216
Adrian Roosceeb04c2016-04-25 14:00:54 -07002217 // User opened 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_OPEN = 397;
2221
2222 // User attempt to send data through a remote input view associated with a notification.
2223 // Passes package name of app that posted the notification. May succeed or fail.
2224 ACTION_REMOTE_INPUT_SEND = 398;
2225
2226 // Failed attempt to send data through a remote input view associated with a
2227 // notification. Passes package name of app that posted the notification.
2228 ACTION_REMOTE_INPUT_FAIL = 399;
2229
2230 // User closed a remote input view associated with a notification. Passes package name of app
2231 // that posted the notification. Note that this can also happen transiently during notification
2232 // reinflation.
2233 ACTION_REMOTE_INPUT_CLOSE = 400;
2234
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002235 // OPEN: Settings > Accounts > Work profile settings
2236 // CATEGORY: SETTINGS
2237 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2238
Jason Monk25118d12016-05-10 13:25:50 -04002239 // Settings -> Dev options -> Convert to file encryption
2240 CONVERT_FBE = 402;
2241
2242 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2243 CONVERT_FBE_CONFIRM = 403;
2244
2245 // Settings -> Dev options -> Running services
2246 RUNNING_SERVICES = 404;
2247
Jason Monka1f697f2016-05-06 15:09:44 -04002248 // The dialog shown by 3P intent to change current webview implementation.
2249 WEBVIEW_IMPLEMENTATION = 405;
2250
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002251 // Settings launched from expanded quick settings.
2252 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2253
Chris Wren698b1702016-05-23 11:16:32 -04002254 // Notification expansion state toggled by the expand affordance.
2255 ACTION_NOTIFICATION_EXPANDER = 407;
2256
2257 // Notification group expansion state toggled by the expand affordance.
2258 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2259
Chris Wren7ee84182016-05-27 13:34:02 -04002260
Chris Wren6abeeb92016-05-26 14:44:38 -04002261 // Notification expansion state toggled by the expand gesture.
2262 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2263
2264 // Notification group expansion state toggled by the expand gesture.
2265 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2266
Bhavik Singh3451da42016-06-01 18:25:59 -07002267 // User performs gesture that activates the ambient display
2268 // 1: Gesture performed is Nudge
2269 // 2: Gesture performed is Pickup
2270 // 4: Gesture performed is Double Tap
Lucas Dupinc81702e2018-08-09 15:41:55 -07002271 // 6: Gesture performed is Reach
Bhavik Singh3451da42016-06-01 18:25:59 -07002272 ACTION_AMBIENT_GESTURE = 411;
2273
Jason Monk9fa5f822016-05-11 10:26:31 -04002274 // ---- End N Constants, all N constants go above this line ----
2275
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002276 // ------- Begin N App Disambig Shade -----
2277 // Application disambig shade opened or closed with a featured app.
2278 // These are actually visibility events, but visible/hidden doesn't
2279 // take a package, so these are being logged as actions.
2280 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002281 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2282 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002283
2284 // Application disambig shade opened or closed without a featured app.
2285 // These are actually visibility events, but visible/hidden doesn't
2286 // take a package, so these are being logged as actions.
2287 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002288 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2289 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002290
2291 // User opens in an app by pressing “Always” in the application disambig shade.
2292 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002293 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002294
2295 // User opens in an app by pressing “Just Once” in the application disambig shade.
2296 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002297 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002298
2299 // User opens in an app by tapping on its name in the application disambig shade.
2300 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002301 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002302
Daniel Nishi010aa492016-05-11 09:42:24 -07002303 // OPEN: Settings > Internal storage > Storage manager
2304 // CATEGORY: SETTINGS
2305 STORAGE_MANAGER_SETTINGS = 458;
2306
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002307 // OPEN: Settings -> Gestures
2308 // CATEGORY: SETTINGS
2309 SETTINGS_GESTURES = 459;
2310
Daniel Nishi597e67f2016-05-18 13:56:13 -07002311 // ------ Begin Deletion Helper ------
2312 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2313 // SUBTYPE: false is off, true is on
2314 // CATEGORY: SETTINGS
2315 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002316
Daniel Nishi597e67f2016-05-18 13:56:13 -07002317 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2318 // SUBTYPE: false is off, true is on
2319 // CATEGORY: SETTINGS
2320 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2321
2322 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2323 // CATEGORY: SETTINGS
2324 // PACKAGE: Unchecked app
2325 ACTION_DELETION_SELECTION_APP_ON = 462;
2326
2327 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2328 // CATEGORY: SETTINGS
2329 // PACKAGE: Checked app
2330 ACTION_DELETION_SELECTION_APP_OFF = 463;
2331
2332 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2333 // SUBTYPE: false is expanded, true is collapsed
2334 // CATEGORY: SETTINGS
2335 ACTION_DELETION_APPS_COLLAPSED = 464;
2336
2337 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2338 // SUBTYPE: false is off, true is on
2339 // CATEGORY: SETTINGS
2340 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2341
2342 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2343 // SUBTYPE: false is expanded, true is collapsed
2344 // CATEGORY: SETTINGS
2345 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2346
2347 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2348 // CATEGORY: SETTINGS
2349 ACTION_DELETION_HELPER_CLEAR = 467;
2350
2351 // ACTION: Settings > Storage > Free Up Space > Cancel
2352 // CATEGORY: SETTINGS
2353 ACTION_DELETION_HELPER_CANCEL = 468;
2354
2355 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2356 // CATEGORY: SETTINGS
2357 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2358
2359 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2360 // CATEGORY: SETTINGS
2361 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2362
2363 // Deletion helper encountered an error during package deletion.
2364 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2365
2366 // Deletion helper encountered an error during downloads folder deletion.
2367 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2368
2369 // Deletion helper encountered an error during photo and video deletion.
2370 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2371
Fan Zhang5e956e82016-05-06 10:51:47 -07002372 // OPEN: Settings (root page if there are multiple tabs)
2373 // CATEGORY: SETTINGS
2374 DASHBOARD_CONTAINER = 474;
2375
2376 // OPEN: Settings -> SUPPORT TAB
2377 // CATEGORY: SETTINGS
2378 SUPPORT_FRAGMENT = 475;
2379
2380 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002381 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002382 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002383
2384 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002385 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002386 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2387
Fan Zhanga1985502016-06-16 16:48:38 -07002388 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002389 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002390 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2391
2392 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002393 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002394 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2395
2396 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002397 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002398 ACTION_SUPPORT_SIGN_IN = 480;
2399
2400 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002401 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002402 ACTION_SUPPORT_PHONE = 481;
2403
2404 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002405 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002406 ACTION_SUPPORT_CHAT = 482;
2407
2408 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002409 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002410 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2411
2412 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002413 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002414 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2415
Fan Zhang80807212016-06-30 12:26:55 -07002416 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002417 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002418 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2419
2420 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002421 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002422 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2423
2424 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002425 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002426 ACTION_SUPPORT_DIAL_TOLLED = 487;
2427
Justin Klaassen19494272016-07-18 21:38:24 -07002428 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002429 // CATEGORY: SETTINGS
2430 NIGHT_DISPLAY_SETTINGS = 488;
2431
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002432 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002433 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002434 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2435
Jason Monk484fd362016-07-13 15:24:32 -04002436 // Settings launched from collapsed quick settings.
2437 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2438
Justin Klaassen19494272016-07-18 21:38:24 -07002439 // OPEN: QS Night Light tile shown
2440 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002441 // SUBTYPE: 0 is off, 1 is on
2442 // CATEGORY: QUICK_SETTINGS
2443 QS_NIGHT_DISPLAY = 491;
2444
Justin Klaassen19494272016-07-18 21:38:24 -07002445 // Night Light on
2446 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2447
Doris Ling3c00afb2016-07-19 17:04:21 -07002448 // System navigation key up.
2449 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2450
2451 // System navigation key down.
2452 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2453
Doris Ling6dd3e462016-08-04 13:17:27 -07002454 // OPEN: Settings > Display -> Ambient Display
2455 // CATEGORY: SETTINGS
2456 ACTION_AMBIENT_DISPLAY = 495;
2457
Adrian Roos159ef7b2016-02-25 11:58:32 -08002458 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2459
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002460 // ACTION: The lockscreen gets shown because the SIM card was removed
2461 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2462 // CATEGORY: GLOBAL_SYSTEM_UI
2463 // OS: N-MR2
2464 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2465
2466 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2467
Clara Bayarric17a5982016-04-15 12:26:47 +01002468 // ------- Begin N Keyboard Shortcuts Helper -----
2469 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002470 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002471
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002472 // OPEN: Print Preview screen
2473 // Package: Package of app where print job is from
2474 PRINT_PREVIEW = 501;
2475
2476 // OPEN: User expands full print job options shade in print preview.
2477 PRINT_JOB_OPTIONS = 502;
2478
2479 // OPEN: “All Printers” screen for selecting printer
2480 // Subtype: # of printers listed
2481 PRINT_ALL_PRINTERS = 503;
2482
2483 // OPEN: “Add Printers” screen for adding printers
2484 // Subtype: # of enabled print service listed
2485 PRINT_ADD_PRINTERS = 504;
2486
2487 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2488 // Package: Package of print service.
2489 ACTION_PRINT = 505;
2490
2491 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2492 // Count all ACTION_PRINTER_SELECT_ALL actions.
2493 // Package: Package of print service tied to printer
2494 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2495
2496 // ACTION: User selects a printer from the “All printers” screen.
2497 // Package: Package of print service tied to printer
2498 ACTION_PRINTER_SELECT_ALL = 507;
2499
2500 // ACTION: User changes an option for the print job from print preview.
2501 // Subtype: 1: Copies
2502 // 2: Color mode
2503 // 3: Duplex mode
2504 // 4: Media (==Paper) size
2505 // 5: Orientation
2506 // 6: Page range
2507 // Package: Package of print service tied to printer
2508 ACTION_PRINT_JOB_OPTIONS = 508;
2509
2510 // ACTION: User searches for printer from All Printers
2511 ACTION_PRINTER_SEARCH = 509;
2512
2513 // ACTION: User selects “Add print service” button from All Printers
2514 ACTION_PRINT_SERVICE_ADD = 510;
2515
2516 // ACTION: User Enables/Disables Print Service via any means.
2517 // Subtype: 0: Enabled
2518 // 1: Disabled
2519 ACTION_PRINT_SERVICE_TOGGLE = 511;
2520
2521 // ACTION: User installs print recommended print service
2522 // Package: Package of print service
2523 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2524
Doris Ling88a6b162016-08-08 16:17:43 -07002525 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2526 // SUBTYPE: sub settings classname
2527 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2528
Fan Zhang92c60382016-08-08 14:03:53 -07002529 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2530 USER_DICTIONARY_SETTINGS = 514;
2531
2532 // OPEN: Settings > Date & time > Select time zone
2533 ZONE_PICKER = 515;
2534
2535 // OPEN: Settings > Security > Device administrators
2536 DEVICE_ADMIN_SETTINGS = 516;
2537
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002538 // ACTION: Managed provisioning was launched to set this package as DPC app.
2539 // PACKAGE: DPC's package name.
2540 PROVISIONING_DPC_PACKAGE_NAME = 517;
2541
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002542 // ACTION: Managed provisioning triggered DPC installation.
2543 // PACKAGE: Package name of package which installed DPC.
2544 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2545
2546 // ACTION: Logged when provisioning activity finishes.
2547 // TIME: Indicates time taken by provisioning activity to finish in MS.
2548 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2549
2550 // ACTION: Logged when preprovisioning activity finishes.
2551 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2552 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2553
2554 // ACTION: Logged when encrypt device activity finishes.
2555 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2556 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2557
2558 // ACTION: Logged when web activity finishes.
2559 // TIME: Indicates total time taken by web activity to finish in MS.
2560 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2561
2562 // ACTION: Logged when trampoline activity finishes.
2563 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2564 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2565
2566 // ACTION: Logged when encryption activity finishes.
2567 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2568 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2569
2570 // ACTION: Logged when finalization activity finishes.
2571 // TIME: Indicates time taken by finalization activity to finish in MS.
2572 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002573
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002574 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002575 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002576
Fan Zhang95094182016-08-24 18:14:16 -07002577 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002578 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002579
2580 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002581 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002582
2583 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002584 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002585
2586 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002587 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002588
2589 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002590 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002591
Fan Zhangc1352ae2016-09-16 12:46:11 -07002592 // OPEN: Settings > Security > Use one lock dialog
2593 DIALOG_UNIFICATION_CONFIRMATION = 532;
2594
2595 // OPEN: Settings > Security > User Credential
2596 DIALOG_USER_CREDENTIAL = 533;
2597
2598 // OPEN: Settings > Accounts > Remove account
2599 DIALOG_REMOVE_USER = 534;
2600
2601 // OPEN: Settings > Accounts > Confirm auto sync dialog
2602 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2603
2604 // OPEN: Settings > Apps > Dialog for running service details
2605 DIALOG_RUNNIGN_SERVICE = 536;
2606
2607 // OPEN: Settings > Dialog for hiding home settings
2608 DIALOG_NO_HOME = 537;
2609
2610 // OPEN: Settings > Bluetooth > Rename this device
2611 DIALOG_BLUETOOTH_RENAME = 538;
2612
2613 // OPEN: Settings > Bluetooth > Paired device profile
2614 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2615
2616 // OPEN: Settings > Battery optimization > details for app
2617 DIALOG_HIGH_POWER_DETAILS = 540;
2618
2619 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2620 DIALOG_KEYBOARD_LAYOUT = 541;
2621
2622 // OPEN: Settings > Wifi > WPS Setup dialog
2623 DIALOG_WPS_SETUP = 542;
2624
2625 // OPEN: Settings > WIFI Scan permission dialog
2626 DIALOG_WIFI_SCAN_MODE = 543;
2627
2628 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2629 DIALOG_WIFI_SKIP = 544;
2630
2631 // OPEN: Settings > Wireless > VPN > Config dialog
2632 DIALOG_LEGACY_VPN_CONFIG = 545;
2633
2634 // OPEN: Settings > Wireless > VPN > Config dialog for app
2635 DIALOG_VPN_APP_CONFIG = 546;
2636
2637 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2638 DIALOG_VPN_CANNOT_CONNECT = 547;
2639
2640 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2641 DIALOG_VPN_REPLACE_EXISTING = 548;
2642
2643 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2644 DIALOG_BILLING_CYCLE = 549;
2645
2646 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2647 DIALOG_BILLING_BYTE_LIMIT = 550;
2648
2649 // OPEN: Settings > Billing cycle > turn on data limit dialog
2650 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2651
2652 // OPEN: Settings > Service > Turn off notification access dialog
2653 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2654
2655 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2656 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2657
2658 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2659 DIALOG_ZEN_ACCESS_GRANT = 554;
2660
2661 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2662 DIALOG_ZEN_ACCESS_REVOKE = 555;
2663
2664 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2665 DIALOG_ZEN_TIMEPICKER = 556;
2666
2667 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2668 DIALOG_SERVICE_ACCESS_WARNING = 557;
2669
2670 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2671 DIALOG_APP_INFO_ACTION = 558;
2672
2673 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2674 DIALOG_VOLUME_FORGET = 559;
2675
2676 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2677 DIALOG_VOLUME_SLOW_WARNING = 560;
2678
2679 // OPEN: Settings > Storage > Dialog for initializing a volume
2680 DIALOG_VOLUME_INIT = 561;
2681
2682 // OPEN: Settings > Storage > Dialog for unmounting a volume
2683 DIALOG_VOLUME_UNMOUNT = 562;
2684
2685 // OPEN: Settings > Storage > Dialog for renaming a volume
2686 DIALOG_VOLUME_RENAME = 563;
2687
2688 // OPEN: Settings > Storage > Dialog for clear cache
2689 DIALOG_STORAGE_CLEAR_CACHE = 564;
2690
2691 // OPEN: Settings > Storage > Dialog for system info
2692 DIALOG_STORAGE_SYSTEM_INFO = 565;
2693
2694 // OPEN: Settings > Storage > Dialog for other info
2695 DIALOG_STORAGE_OTHER_INFO = 566;
2696
2697 // OPEN: Settings > Storage > Dialog for user info
2698 DIALOG_STORAGE_USER_INFO = 567;
2699
2700 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2701 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2702
2703 // OPEN: Settings > Add fingerprint > Error dialog
2704 DIALOG_FINGERPINT_ERROR = 569;
2705
2706 // OPEN: Settings > Fingerprint > Rename or delete dialog
2707 DIALOG_FINGERPINT_EDIT = 570;
2708
2709 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2710 DIALOG_FINGERPINT_DELETE_LAST = 571;
2711
2712 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2713 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2714
2715 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2716 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2717
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002718 // OPEN: Settings > Proxy Selector error dialog
2719 DIALOG_PROXY_SELECTOR_ERROR = 574;
2720
2721 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2722 DIALOG_WIFI_P2P_DISCONNECT = 575;
2723
2724 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2725 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2726
2727 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2728 DIALOG_WIFI_P2P_RENAME = 577;
2729
2730 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2731 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2732
2733 // OPEN: Settings > APN > Restore default dialog
2734 DIALOG_APN_RESTORE_DEFAULT = 579;
2735
2736 // OPEN: Settings > Dream > When to dream dialog
2737 DIALOG_DREAM_START_DELAY = 580;
2738
2739 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2740 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2741
2742 // OPEN: Settings > Tether > AP setting dialog
2743 DIALOG_AP_SETTINGS = 582;
2744
2745 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2746 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2747
2748 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2749 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2750
2751 // OPEN: Settings > Account > Remove account dialog
2752 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2753
2754 // OPEN: Settings > Account > Remove account failed dialog
2755 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2756
2757 // OPEN: Settings > Account > Cannot do onetime sync dialog
2758 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2759
2760 // OPEN: Settings > Display > Night light > Set start time dialog
2761 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2762
2763 // OPEN: Settings > Display > Night light > Set end time dialog
2764 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2765
2766 // OPEN: Settings > User > Edit info dialog
2767 DIALOG_USER_EDIT = 590;
2768
2769 // OPEN: Settings > User > Confirm remove dialog
2770 DIALOG_USER_REMOVE = 591;
2771
2772 // OPEN: Settings > User > Enable calling dialog
2773 DIALOG_USER_ENABLE_CALLING = 592;
2774
2775 // OPEN: Settings > User > Enable calling and sms dialog
2776 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2777
2778 // OPEN: Settings > User > Cannot manage device message dialog
2779 DIALOG_USER_CANNOT_MANAGE = 594;
2780
2781 // OPEN: Settings > User > Add user dialog
2782 DIALOG_USER_ADD = 595;
2783
2784 // OPEN: Settings > User > Setup user dialog
2785 DIALOG_USER_SETUP = 596;
2786
2787 // OPEN: Settings > User > Setup profile dialog
2788 DIALOG_USER_SETUP_PROFILE = 597;
2789
2790 // OPEN: Settings > User > Choose user type dialog
2791 DIALOG_USER_CHOOSE_TYPE = 598;
2792
2793 // OPEN: Settings > User > Need lockscreen dialog
2794 DIALOG_USER_NEED_LOCKSCREEN = 599;
2795
2796 // OPEN: Settings > User > Confirm exit guest mode dialog
2797 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2798
2799 // OPEN: Settings > User > Edit user profile dialog
2800 DIALOG_USER_EDIT_PROFILE = 601;
2801
2802 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2803 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2804
2805 // OPEN: Settings > Wifi > Edit AP dialog
2806 DIALOG_WIFI_AP_EDIT = 603;
2807
2808 // OPEN: Settings > Wifi > PBC Config dialog
2809 DIALOG_WIFI_PBC = 604;
2810
2811 // OPEN: Settings > Wifi > Display pin dialog
2812 DIALOG_WIFI_PIN = 605;
2813
2814 // OPEN: Settings > Wifi > Write config to NFC dialog
2815 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002816 // OPEN: Settings > Date > Date picker dialog
2817 DIALOG_DATE_PICKER = 607;
2818
2819 // OPEN: Settings > Date > Time picker dialog
2820 DIALOG_TIME_PICKER = 608;
2821
2822 // OPEN: Settings > Wireless > Manage wireless plan dialog
2823 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002824
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002825 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002826 PROVISIONING_NETWORK_TYPE = 610;
2827
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002828 // ACTION: Logs action which triggered provisioning.
2829 PROVISIONING_ACTION = 611;
2830
Mahaver Chopraab282072016-10-06 19:19:23 +01002831 // ACTION: Logs extra passed by the dpc while provisioning.
2832 PROVISIONING_EXTRA = 612;
2833
Salvador Martinez64867c12016-10-14 15:25:09 -07002834 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2835 BLUETOOTH_DIALOG_FRAGMENT = 613;
2836
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002837 // ACTION: Logs provisioning started by zero touch.
2838 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2839
2840 // ACTION: Logs provisioning started by NFC bump.
2841 PROVISIONING_ENTRY_POINT_NFC = 615;
2842
2843 // ACTION: Logs provisioning started using QR code.
2844 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2845
2846 // ACTION: Logs provisioning started using adb.
2847 PROVISIONING_ENTRY_POINT_ADB = 617;
2848
2849 // ACTION: Logs provisioning started by trusted source.
2850 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2851
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002852 // ACTION: Logged when copy account task finishes.
2853 // TIME: Indicates time taken by copy account task to finish in MS.
2854 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2855
2856 // ACTION: Logged when create profile task finishes.
2857 // TIME: Indicates time taken by create profile task to finish in MS.
2858 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2859
2860 // ACTION: Logged when start profile task finishes.
2861 // TIME: Indicates time taken by start profile task to finish in MS.
2862 PROVISIONING_START_PROFILE_TASK_MS = 621;
2863
2864 // ACTION: Logged when download package task finishes.
2865 // TIME: Indicates time taken by download package task to finish in MS.
2866 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2867
2868 // ACTION: Logged when install package task finishes.
2869 // TIME: Indicates time taken by install package task to finish in MS.
2870 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2871
2872 // ACTION: User cancelled provisioning.
2873 PROVISIONING_CANCELLED = 624;
2874
2875 // ACTION: Logged when provisioning throws an error.
2876 PROVISIONING_ERROR = 625;
2877
2878 // ACTION: Logs the status of copying user account during provisioning.
2879 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2880
2881 // ACTION: Logs the end to end time taken by all provisioning tasks.
2882 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2883
tmfanga3f63a92018-11-05 19:05:18 +08002884 // OPEN: Settings > Security
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002885 // CATEGORY: SETTINGS
2886 // OS: O
2887 ENTERPRISE_PRIVACY_SETTINGS = 628;
2888
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002889 // ACTION: Longpress on a TextView.
2890 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2891 // CATEGORY: TEXT_CONTROLS
2892 // OS: O
2893 TEXT_LONGPRESS = 629;
2894
Chris Wren3824c392017-11-27 12:54:14 -05002895 // ACTION: An app requested an unknown permission
2896 // PACKAGE: The package name of the app requesting the permission
2897 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002898 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2899
Chris Wren3824c392017-11-27 12:54:14 -05002900 // ACTION: An app was granted an unknown permission
2901 // PACKAGE: The package name of the app that was granted the permission
2902 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002903 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2904
Chris Wren3824c392017-11-27 12:54:14 -05002905 // ACTION: An app requested an unknown permission and the request was denied
2906 // PACKAGE: The package name of the app requesting the permission
2907 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002908 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2909
Chris Wren3824c392017-11-27 12:54:14 -05002910 // ACTION: An unknown permission was revoked for an app
2911 // PACKAGE: The package name of the app the permission was revoked for
2912 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002913 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2914
Chris Wren3824c392017-11-27 12:54:14 -05002915 // ACTION: An app requested the permission READ_CALENDAR
2916 // PACKAGE: The package name of the app requesting the permission
2917 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002918 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2919
Chris Wren3824c392017-11-27 12:54:14 -05002920 // ACTION: An app was granted the permission READ_CALENDAR
2921 // PACKAGE: The package name of the app that was granted the permission
2922 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002923 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2924
Chris Wren3824c392017-11-27 12:54:14 -05002925 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2926 // PACKAGE: The package name of the app requesting the permission
2927 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002928 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2929
Chris Wren3824c392017-11-27 12:54:14 -05002930 // ACTION: The permission READ_CALENDAR was revoked for an app
2931 // PACKAGE: The package name of the app the permission was revoked for
2932 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002933 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2934
Chris Wren3824c392017-11-27 12:54:14 -05002935 // ACTION: An app requested the permission WRITE_CALENDAR
2936 // PACKAGE: The package name of the app requesting the permission
2937 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002938 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2939
Chris Wren3824c392017-11-27 12:54:14 -05002940 // ACTION: An app was granted the permission WRITE_CALENDAR
2941 // PACKAGE: The package name of the app that was granted the permission
2942 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002943 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2944
Chris Wren3824c392017-11-27 12:54:14 -05002945 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2946 // PACKAGE: The package name of the app requesting the permission
2947 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002948 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2949
Chris Wren3824c392017-11-27 12:54:14 -05002950 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2951 // PACKAGE: The package name of the app the permission was revoked for
2952 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002953 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2954
Chris Wren3824c392017-11-27 12:54:14 -05002955 // ACTION: An app requested the permission CAMERA
2956 // PACKAGE: The package name of the app requesting the permission
2957 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002958 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2959
Chris Wren3824c392017-11-27 12:54:14 -05002960 // ACTION: An app was granted the permission CAMERA
2961 // PACKAGE: The package name of the app that was granted the permission
2962 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002963 ACTION_PERMISSION_GRANT_CAMERA = 643;
2964
Chris Wren3824c392017-11-27 12:54:14 -05002965 // ACTION: An app requested the permission CAMERA and the request was denied
2966 // PACKAGE: The package name of the app requesting the permission
2967 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002968 ACTION_PERMISSION_DENIED_CAMERA = 644;
2969
Chris Wren3824c392017-11-27 12:54:14 -05002970 // ACTION: The permission CAMERA was revoked for an app
2971 // PACKAGE: The package name of the app the permission was revoked for
2972 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002973 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2974
Chris Wren3824c392017-11-27 12:54:14 -05002975 // ACTION: An app requested the permission READ_CONTACTS
2976 // PACKAGE: The package name of the app requesting the permission
2977 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002978 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2979
Chris Wren3824c392017-11-27 12:54:14 -05002980 // ACTION: An app was granted the permission READ_CONTACTS
2981 // PACKAGE: The package name of the app that was granted the permission
2982 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002983 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2984
Chris Wren3824c392017-11-27 12:54:14 -05002985 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2986 // PACKAGE: The package name of the app requesting the permission
2987 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002988 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2989
Chris Wren3824c392017-11-27 12:54:14 -05002990 // ACTION: The permission READ_CONTACTS was revoked for an app
2991 // PACKAGE: The package name of the app the permission was revoked for
2992 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002993 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2994
Chris Wren3824c392017-11-27 12:54:14 -05002995 // ACTION: An app requested the permission WRITE_CONTACTS
2996 // PACKAGE: The package name of the app requesting the permission
2997 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002998 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2999
Chris Wren3824c392017-11-27 12:54:14 -05003000 // ACTION: An app was granted the permission WRITE_CONTACTS
3001 // PACKAGE: The package name of the app that was granted the permission
3002 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003003 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
3004
Chris Wren3824c392017-11-27 12:54:14 -05003005 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
3006 // PACKAGE: The package name of the app requesting the permission
3007 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003008 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
3009
Chris Wren3824c392017-11-27 12:54:14 -05003010 // ACTION: The permission WRITE_CONTACTS was revoked for an app
3011 // PACKAGE: The package name of the app the permission was revoked for
3012 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003013 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
3014
Chris Wren3824c392017-11-27 12:54:14 -05003015 // ACTION: An app requested the permission GET_ACCOUNTS
3016 // PACKAGE: The package name of the app requesting the permission
3017 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003018 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
3019
Chris Wren3824c392017-11-27 12:54:14 -05003020 // ACTION: An app was granted the permission GET_ACCOUNTS
3021 // PACKAGE: The package name of the app that was granted the permission
3022 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003023 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
3024
Chris Wren3824c392017-11-27 12:54:14 -05003025 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
3026 // PACKAGE: The package name of the app requesting the permission
3027 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003028 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
3029
Chris Wren3824c392017-11-27 12:54:14 -05003030 // ACTION: The permission GET_ACCOUNTS was revoked for an app
3031 // PACKAGE: The package name of the app the permission was revoked for
3032 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003033 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
3034
Chris Wren3824c392017-11-27 12:54:14 -05003035 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
3036 // PACKAGE: The package name of the app requesting the permission
3037 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003038 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
3039
Chris Wren3824c392017-11-27 12:54:14 -05003040 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
3041 // PACKAGE: The package name of the app that was granted the permission
3042 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003043 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
3044
Chris Wren3824c392017-11-27 12:54:14 -05003045 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
3046 // PACKAGE: The package name of the app requesting the permission
3047 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003048 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
3049
Chris Wren3824c392017-11-27 12:54:14 -05003050 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3051 // PACKAGE: The package name of the app the permission was revoked for
3052 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003053 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3054
Chris Wren3824c392017-11-27 12:54:14 -05003055 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3056 // PACKAGE: The package name of the app requesting the permission
3057 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003058 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3059
Chris Wren3824c392017-11-27 12:54:14 -05003060 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3061 // PACKAGE: The package name of the app that was granted the permission
3062 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003063 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3064
Chris Wren3824c392017-11-27 12:54:14 -05003065 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3066 // PACKAGE: The package name of the app requesting the permission
3067 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003068 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3069
Chris Wren3824c392017-11-27 12:54:14 -05003070 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3071 // PACKAGE: The package name of the app the permission was revoked for
3072 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003073 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3074
Chris Wren3824c392017-11-27 12:54:14 -05003075 // ACTION: An app requested the permission RECORD_AUDIO
3076 // PACKAGE: The package name of the app requesting the permission
3077 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003078 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3079
Chris Wren3824c392017-11-27 12:54:14 -05003080 // ACTION: An app was granted the permission RECORD_AUDIO
3081 // PACKAGE: The package name of the app that was granted the permission
3082 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003083 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3084
Chris Wren3824c392017-11-27 12:54:14 -05003085 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3086 // PACKAGE: The package name of the app requesting the permission
3087 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003088 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3089
Chris Wren3824c392017-11-27 12:54:14 -05003090 // ACTION: The permission RECORD_AUDIO was revoked for an app
3091 // PACKAGE: The package name of the app the permission was revoked for
3092 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003093 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3094
Chris Wren3824c392017-11-27 12:54:14 -05003095 // ACTION: An app requested the permission READ_PHONE_STATE
3096 // PACKAGE: The package name of the app requesting the permission
3097 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003098 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3099
Chris Wren3824c392017-11-27 12:54:14 -05003100 // ACTION: An app was granted the permission READ_PHONE_STATE
3101 // PACKAGE: The package name of the app that was granted the permission
3102 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003103 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3104
Chris Wren3824c392017-11-27 12:54:14 -05003105 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3106 // PACKAGE: The package name of the app requesting the permission
3107 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003108 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3109
Chris Wren3824c392017-11-27 12:54:14 -05003110 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3111 // PACKAGE: The package name of the app the permission was revoked for
3112 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003113 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3114
Chris Wren3824c392017-11-27 12:54:14 -05003115 // ACTION: An app requested the permission CALL_PHONE
3116 // PACKAGE: The package name of the app requesting the permission
3117 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003118 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3119
Chris Wren3824c392017-11-27 12:54:14 -05003120 // ACTION: An app was granted the permission CALL_PHONE
3121 // PACKAGE: The package name of the app that was granted the permission
3122 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003123 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3124
Chris Wren3824c392017-11-27 12:54:14 -05003125 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3126 // PACKAGE: The package name of the app requesting the permission
3127 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003128 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3129
Chris Wren3824c392017-11-27 12:54:14 -05003130 // ACTION: The permission CALL_PHONE was revoked for an app
3131 // PACKAGE: The package name of the app the permission was revoked for
3132 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003133 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3134
Chris Wren3824c392017-11-27 12:54:14 -05003135 // ACTION: An app requested the permission READ_CALL_LOG
3136 // PACKAGE: The package name of the app requesting the permission
3137 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003138 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3139
Chris Wren3824c392017-11-27 12:54:14 -05003140 // ACTION: An app was granted the permission READ_CALL_LOG
3141 // PACKAGE: The package name of the app that was granted the permission
3142 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003143 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3144
Chris Wren3824c392017-11-27 12:54:14 -05003145 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3146 // PACKAGE: The package name of the app requesting the permission
3147 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003148 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3149
Chris Wren3824c392017-11-27 12:54:14 -05003150 // ACTION: The permission READ_CALL_LOG was revoked for an app
3151 // PACKAGE: The package name of the app the permission was revoked for
3152 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003153 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3154
Chris Wren3824c392017-11-27 12:54:14 -05003155 // ACTION: An app requested the permission WRITE_CALL_LOG
3156 // PACKAGE: The package name of the app requesting the permission
3157 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003158 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3159
Chris Wren3824c392017-11-27 12:54:14 -05003160 // ACTION: An app was granted the permission WRITE_CALL_LOG
3161 // PACKAGE: The package name of the app that was granted the permission
3162 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003163 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3164
Chris Wren3824c392017-11-27 12:54:14 -05003165 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3166 // PACKAGE: The package name of the app requesting the permission
3167 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003168 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3169
Chris Wren3824c392017-11-27 12:54:14 -05003170 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3171 // PACKAGE: The package name of the app the permission was revoked for
3172 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003173 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3174
Chris Wren3824c392017-11-27 12:54:14 -05003175 // ACTION: An app requested the permission ADD_VOICEMAIL
3176 // PACKAGE: The package name of the app requesting the permission
3177 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003178 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3179
Chris Wren3824c392017-11-27 12:54:14 -05003180 // ACTION: An app was granted the permission ADD_VOICEMAIL
3181 // PACKAGE: The package name of the app that was granted the permission
3182 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003183 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3184
Chris Wren3824c392017-11-27 12:54:14 -05003185 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3186 // PACKAGE: The package name of the app requesting the permission
3187 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003188 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3189
Chris Wren3824c392017-11-27 12:54:14 -05003190 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3191 // PACKAGE: The package name of the app the permission was revoked for
3192 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003193 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3194
Chris Wren3824c392017-11-27 12:54:14 -05003195 // ACTION: An app requested the permission USE_SIP
3196 // PACKAGE: The package name of the app requesting the permission
3197 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003198 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3199
Chris Wren3824c392017-11-27 12:54:14 -05003200 // ACTION: An app was granted the permission USE_SIP
3201 // PACKAGE: The package name of the app that was granted the permission
3202 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003203 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3204
Chris Wren3824c392017-11-27 12:54:14 -05003205 // ACTION: An app requested the permission USE_SIP and the request was denied
3206 // PACKAGE: The package name of the app requesting the permission
3207 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003208 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3209
Chris Wren3824c392017-11-27 12:54:14 -05003210 // ACTION: The permission USE_SIP was revoked for an app
3211 // PACKAGE: The package name of the app the permission was revoked for
3212 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003213 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3214
Chris Wren3824c392017-11-27 12:54:14 -05003215 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3216 // PACKAGE: The package name of the app requesting the permission
3217 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003218 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3219
Chris Wren3824c392017-11-27 12:54:14 -05003220 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3221 // PACKAGE: The package name of the app that was granted the permission
3222 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003223 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3224
Chris Wren3824c392017-11-27 12:54:14 -05003225 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3226 // PACKAGE: The package name of the app requesting the permission
3227 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003228 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3229
Chris Wren3824c392017-11-27 12:54:14 -05003230 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3231 // PACKAGE: The package name of the app the permission was revoked for
3232 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003233 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3234
Chris Wren3824c392017-11-27 12:54:14 -05003235 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3236 // PACKAGE: The package name of the app requesting the permission
3237 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003238 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3239
Chris Wren3824c392017-11-27 12:54:14 -05003240 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3241 // PACKAGE: The package name of the app that was granted the permission
3242 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003243 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3244
Chris Wren3824c392017-11-27 12:54:14 -05003245 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3246 // PACKAGE: The package name of the app requesting the permission
3247 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003248 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3249
Chris Wren3824c392017-11-27 12:54:14 -05003250 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3251 // PACKAGE: The package name of the app the permission was revoked for
3252 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003253 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3254
Chris Wren3824c392017-11-27 12:54:14 -05003255 // ACTION: An app requested the permission BODY_SENSORS
3256 // PACKAGE: The package name of the app requesting the permission
3257 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003258 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3259
Chris Wren3824c392017-11-27 12:54:14 -05003260 // ACTION: An app was granted the permission BODY_SENSORS
3261 // PACKAGE: The package name of the app that was granted the permission
3262 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003263 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3264
Chris Wren3824c392017-11-27 12:54:14 -05003265 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3266 // PACKAGE: The package name of the app requesting the permission
3267 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003268 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3269
Chris Wren3824c392017-11-27 12:54:14 -05003270 // ACTION: The permission BODY_SENSORS was revoked for an app
3271 // PACKAGE: The package name of the app the permission was revoked for
3272 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003273 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3274
Chris Wren3824c392017-11-27 12:54:14 -05003275 // ACTION: An app requested the permission SEND_SMS
3276 // PACKAGE: The package name of the app requesting the permission
3277 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003278 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3279
Chris Wren3824c392017-11-27 12:54:14 -05003280 // ACTION: An app was granted the permission SEND_SMS
3281 // PACKAGE: The package name of the app that was granted the permission
3282 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003283 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3284
Chris Wren3824c392017-11-27 12:54:14 -05003285 // ACTION: An app requested the permission SEND_SMS and the request was denied
3286 // PACKAGE: The package name of the app requesting the permission
3287 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003288 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3289
Chris Wren3824c392017-11-27 12:54:14 -05003290 // ACTION: The permission SEND_SMS was revoked for an app
3291 // PACKAGE: The package name of the app the permission was revoked for
3292 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003293 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3294
Chris Wren3824c392017-11-27 12:54:14 -05003295 // ACTION: An app requested the permission RECEIVE_SMS
3296 // PACKAGE: The package name of the app requesting the permission
3297 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003298 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3299
Chris Wren3824c392017-11-27 12:54:14 -05003300 // ACTION: An app was granted the permission RECEIVE_SMS
3301 // PACKAGE: The package name of the app that was granted the permission
3302 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003303 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3304
Chris Wren3824c392017-11-27 12:54:14 -05003305 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3306 // PACKAGE: The package name of the app requesting the permission
3307 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003308 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3309
Chris Wren3824c392017-11-27 12:54:14 -05003310 // ACTION: The permission RECEIVE_SMS was revoked for an app
3311 // PACKAGE: The package name of the app the permission was revoked for
3312 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003313 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3314
Chris Wren3824c392017-11-27 12:54:14 -05003315 // ACTION: An app requested the permission READ_SMS
3316 // PACKAGE: The package name of the app requesting the permission
3317 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003318 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3319
Chris Wren3824c392017-11-27 12:54:14 -05003320 // ACTION: An app was granted the permission READ_SMS
3321 // PACKAGE: The package name of the app that was granted the permission
3322 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003323 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3324
Chris Wren3824c392017-11-27 12:54:14 -05003325 // ACTION: An app requested the permission READ_SMS and the request was denied
3326 // PACKAGE: The package name of the app requesting the permission
3327 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003328 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3329
Chris Wren3824c392017-11-27 12:54:14 -05003330 // ACTION: The permission READ_SMS was revoked for an app
3331 // PACKAGE: The package name of the app the permission was revoked for
3332 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003333 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3334
Chris Wren3824c392017-11-27 12:54:14 -05003335 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3336 // PACKAGE: The package name of the app requesting the permission
3337 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003338 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3339
Chris Wren3824c392017-11-27 12:54:14 -05003340 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3341 // PACKAGE: The package name of the app that was granted the permission
3342 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003343 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3344
Chris Wren3824c392017-11-27 12:54:14 -05003345 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3346 // PACKAGE: The package name of the app requesting the permission
3347 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003348 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3349
Chris Wren3824c392017-11-27 12:54:14 -05003350 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3351 // PACKAGE: The package name of the app the permission was revoked for
3352 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003353 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3354
Chris Wren3824c392017-11-27 12:54:14 -05003355 // ACTION: An app requested the permission RECEIVE_MMS
3356 // PACKAGE: The package name of the app requesting the permission
3357 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003358 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3359
Chris Wren3824c392017-11-27 12:54:14 -05003360 // ACTION: An app was granted the permission RECEIVE_MMS
3361 // PACKAGE: The package name of the app that was granted the permission
3362 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003363 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3364
Chris Wren3824c392017-11-27 12:54:14 -05003365 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3366 // PACKAGE: The package name of the app requesting the permission
3367 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003368 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3369
Chris Wren3824c392017-11-27 12:54:14 -05003370 // ACTION: The permission RECEIVE_MMS was revoked for an app
3371 // PACKAGE: The package name of the app the permission was revoked for
3372 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003373 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3374
Chris Wren3824c392017-11-27 12:54:14 -05003375 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3376 // PACKAGE: The package name of the app requesting the permission
3377 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003378 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3379
Chris Wren3824c392017-11-27 12:54:14 -05003380 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3381 // PACKAGE: The package name of the app that was granted the permission
3382 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003383 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3384
Chris Wren3824c392017-11-27 12:54:14 -05003385 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3386 // PACKAGE: The package name of the app requesting the permission
3387 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003388 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3389
Chris Wren3824c392017-11-27 12:54:14 -05003390 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3391 // PACKAGE: The package name of the app the permission was revoked for
3392 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003393 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3394
Chris Wren3824c392017-11-27 12:54:14 -05003395 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3396 // PACKAGE: The package name of the app requesting the permission
3397 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003398 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3399
Chris Wren3824c392017-11-27 12:54:14 -05003400 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3401 // PACKAGE: The package name of the app that was granted the permission
3402 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003403 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3404
Chris Wren3824c392017-11-27 12:54:14 -05003405 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3406 // PACKAGE: The package name of the app requesting the permission
3407 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003408 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3409
Chris Wren3824c392017-11-27 12:54:14 -05003410 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3411 // PACKAGE: The package name of the app the permission was revoked for
3412 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003413 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3414
Mahaverfa6566e2016-11-29 21:08:14 +00003415 // ACTION: Logged when a provisioning session has started
3416 PROVISIONING_SESSION_STARTED = 734;
3417
3418 // ACTION: Logged when a provisioning session has completed
3419 PROVISIONING_SESSION_COMPLETED = 735;
3420
Chris Wren3824c392017-11-27 12:54:14 -05003421 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3422 // PACKAGE: The package name of the app requesting the permission
3423 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003424 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003425
Chris Wren3824c392017-11-27 12:54:14 -05003426 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3427 // PACKAGE: The package name of the app that was granted the permission
3428 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003429 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003430
Chris Wren3824c392017-11-27 12:54:14 -05003431 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3432 // PACKAGE: The package name of the app requesting the permission
3433 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003434 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003435
Chris Wren3824c392017-11-27 12:54:14 -05003436 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3437 // PACKAGE: The package name of the app the permission was revoked for
3438 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003439 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003440
Santos Cordon3107d292016-09-20 15:50:35 -07003441 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3442 // SUBTYPE: slider value
3443 // CATEGORY: QUICK_SETTINGS
3444 // OS: 6.0
3445 ACTION_BRIGHTNESS_FOR_VR = 498;
3446
Hugo Benichie1cbf152016-12-08 09:36:52 +09003447 // ACTION: A captive portal was detected during network validation
3448 // CATEGORY: NOTIFICATION
3449 // OS: N-MR2
3450 NOTIFICATION_NETWORK_SIGN_IN = 740;
3451
3452 // ACTION: An unvalidated network without Internet was selected by the user
3453 // CATEGORY: NOTIFICATION
3454 // OS: N-MR2
3455 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3456
3457 // ACTION: A validated network failed revalidation and lost Internet access
3458 // CATEGORY: NOTIFICATION
3459 // OS: N-MR2
3460 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3461
3462 // ACTION: The system default network switched to a different network
3463 // CATEGORY: NOTIFICATION
3464 // OS: N-MR2
3465 NOTIFICATION_NETWORK_SWITCH = 743;
3466
Fan Zhang074c4cb2016-12-21 12:10:33 -08003467 // OPEN: Settings > System
3468 SETTINGS_SYSTEM_CATEGORY = 744;
3469
3470 // OPEN: Settings > Storage
3471 SETTINGS_STORAGE_CATEGORY = 745;
3472
3473 // OPEN: Settings > Network & Internet
3474 SETTINGS_NETWORK_CATEGORY = 746;
3475
3476 // OPEN: Settings > Connected Device
3477 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3478
3479 // OPEN: Settings > App & Notification
3480 SETTINGS_APP_NOTIF_CATEGORY = 748;
3481
3482 // OPEN: Settings > System > Input & Gesture
3483 SETTINGS_INPUT_CATEGORY = 749;
3484
3485 // OPEN: Settings > System > Language & Region
3486 SETTINGS_LANGUAGE_CATEGORY = 750;
3487
3488 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3489 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3490
3491 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3492 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3493
3494 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3495 SETTINGS_GESTURE_PICKUP = 753;
3496
3497 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3498 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3499
3500 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3501 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3502
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003503 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3504 // CATEGORY: Settings
3505 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3506
Alison Cichowlas803054d2016-12-13 14:38:01 -05003507 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003508 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003509 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3510 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3511 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003512
Salvador Martinezc43ab062016-12-21 11:09:11 -08003513 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3514 // user accepted
3515 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003516
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003517 // Enclosing category for group of APP_TRANSITION_FOO events,
3518 // logged when we execute an app transition.
3519 APP_TRANSITION = 761;
3520
Fan Zhang945deea2017-01-11 16:37:49 -08003521 // ACTION: User leaves Settings search UI without entering any query.
3522 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3523
3524 // ACTION: Clicking on any search result in Settings.
3525 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003526
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003527 // ACTION: Allow Battery optimization for an app
3528 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3529
3530 // ACTION: Deny Battery optimization for an app
3531 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3532
3533 // ACTION: Enable Device Admin app
3534 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3535
3536 // ACTION: Disable Device Admin app
3537 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3538
3539 // ACTION: Allow "Do Not Disturb access" for an app
3540 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3541
3542 // ACTION: Deny "Do Not Disturb access" for an app
3543 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3544
3545 // ACTION: Allow "Draw over other apps" for an app
3546 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3547
Christine Franks47175c32017-03-14 10:21:25 -07003548 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003549 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3550
3551 // ACTION: Allow "VR helper services" for an app
3552 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3553
3554 // ACTION: Deny "VR helper services" for an app
3555 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3556
3557 // ACTION: Allow "Modify system settings" for an app
3558 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3559
3560 // ACTION: Deny "Modify system settings" for an app
3561 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3562
3563 // ACTION: Allow "Notification access" for an app
3564 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3565
3566 // ACTION: Deny "Notification access" for an app
3567 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3568
3569 // ACTION: "Premium SMS access" for an app - "ask user" option
3570 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3571
3572 // ACTION: "Premium SMS access" for an app - "never allow" option
3573 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3574
3575 // ACTION: "Premium SMS access" for an app - "always allow" option
3576 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3577
3578 // ACTION: Allow "Unrestricted data access" for an app
3579 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3580
3581 // ACTION: Deny "Unrestricted data access" for an app
3582 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3583
3584 // ACTION: Allow "Usage access" for an app
3585 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3586
3587 // ACTION: Deny "Usage access" for an app
3588 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3589
Fan Zhangad5dacc2017-01-18 14:18:54 -08003590 // OPEN: Settings > Apps > Default Apps > Default browser
3591 DEFAULT_BROWSER_PICKER = 785;
3592
3593 // OPEN: Settings > Apps > Default Apps > Default emergency app
3594 DEFAULT_EMERGENCY_APP_PICKER = 786;
3595
3596 // OPEN: Settings > Apps > Default Apps > Default home
3597 DEFAULT_HOME_PICKER = 787;
3598
3599 // OPEN: Settings > Apps > Default Apps > Default phone
3600 DEFAULT_PHONE_PICKER = 788;
3601
3602 // OPEN: Settings > Apps > Default Apps > Default sms
3603 DEFAULT_SMS_PICKER = 789;
3604
Fabian Kozynski171f40d2019-02-20 12:53:17 -05003605 // OPEN: Settings > Apps > Notification > Notification Assistant
Fan Zhangad5dacc2017-01-18 14:18:54 -08003606 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3607
3608 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3609 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3610
Jason Long1b51da62017-01-24 11:35:31 -08003611 // OPEN: Settings > Apps > Default Apps > Default autofill app
3612 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003613
Chris Wren26ca65d2016-11-29 10:43:28 -05003614 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003615 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003616 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3617 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3618 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3619 NOTIFICATION_ID = 796;
3620 NOTIFICATION_TAG = 797;
3621 NOTIFICATION_SHADE_INDEX = 798;
3622 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003623
Anas Karbilaf7648f42016-12-11 00:55:02 +01003624 // OPEN: QS NFC tile shown
3625 // ACTION: QS NFC tile tapped
3626 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003627 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003628
Chris Wren26ca65d2016-11-29 10:43:28 -05003629 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003630 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003631 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3632 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3633 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3634 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3635 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3636 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3637
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003638 // ACTION: "Force stop" action on an app
3639 ACTION_APP_FORCE_STOP = 807;
3640
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003641 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3642 // CATEGORY: SETTINGS
3643 // OS: 8.0
3644 MANAGE_EXTERNAL_SOURCES = 808;
3645
Mahaver6cd47162017-01-23 09:59:33 +00003646 // ACTION: Logged when terms activity finishes.
3647 // TIME: Indicates time taken by terms activity to finish in MS.
3648 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3649
3650 // Indicates number of terms displayed on the terms screen.
3651 PROVISIONING_TERMS_COUNT = 810;
3652
3653 // Indicates number of terms read on the terms screen.
3654 PROVISIONING_TERMS_READ = 811;
3655
Winson Chung59fda9e2017-01-20 16:14:51 -08003656 // Logs that the user has edited the picture-in-picture settings.
3657 // CATEGORY: SETTINGS
3658 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3659
Winson Chungf4ac0632017-03-17 12:34:12 -07003660 // ACTION: Allow "Enable picture-in-picture" for an app
3661 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003662
Winson Chungf4ac0632017-03-17 12:34:12 -07003663 // ACTION: Deny "Enable picture-in-picture" for an app
3664 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003665
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003666 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3667 // CATEGORY: SETTINGS
3668 // OS: 8.0
3669 TTS_SLIDERS = 815;
3670
Jason Monk524fb402017-01-25 10:33:31 -05003671 // ACTION: Settings -> Display -> Theme
3672 ACTION_THEME = 816;
3673
chchaob8e253a2017-01-25 12:12:09 -08003674 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3675 // ACTION: Select to Speak configuration is chosen
3676 // SUBTYPE: 0 is off, 1 is on
3677 // CATEGORY: SETTINGS
3678 // OS: N
3679 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3680
Anton Philippov95a553e2017-01-27 00:08:24 +00003681 // OPEN: Settings > System > Backup
3682 // CATEGORY: SETTINGS
3683 // OS: O
3684 BACKUP_SETTINGS = 818;
3685
Winson Chung14fbe142016-12-19 16:18:24 -08003686 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003687 // VALUE: true if it was entered while hiding as a result of moving to
3688 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003689 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3690
3691 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3692 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3693 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3694
3695 // ACTION: The activity currently in picture-in-picture was minimized
3696 // VALUE: True if the PiP was minimized, false otherwise
3697 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3698
3699 // ACTION: Picture-in-picture was dismissed via the dismiss button
3700 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3701 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3702
3703 // ACTION: The visibility of the picture-in-picture meny
3704 // VALUE: Whether or not the menu is visible
3705 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3706
3707 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3708 // logged when the aspect ratio changes
3709 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3710
3711 // The current aspect ratio of the PiP, logged when it changes.
3712 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3713
Chris Wren27a52fa2017-02-01 14:21:43 -05003714 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3715 // CATEGORY: GLOBAL_SYSTEM_UI
3716 // OS: O
3717 FIELD_GESTURE_LENGTH = 826;
3718
3719 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3720 // CATEGORY: GLOBAL_SYSTEM_UI
3721 // OS: O
3722 FIELD_GESTURE_VELOCITY = 827;
3723
Christine Franks27fde392017-02-07 10:21:55 -08003724 // OPEN: Carrier demo mode password dialog
3725 CARRIER_DEMO_MODE_PASSWORD = 828;
3726
Fan Zhang70967f32017-02-13 16:02:24 -08003727 // ACTION: Create a Settings shortcut item.
3728 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3729
3730 // ACTION: A tile in Settings information architecture is clicked
3731 ACTION_SETTINGS_TILE_CLICK = 830;
3732
Julia Reynolds520df6e2017-02-13 09:05:10 -05003733 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
Julia Reynolds67c1e962019-01-04 14:01:10 -05003734 // updated. TYPE_DISMISS: snoozing canceled due to data being cleared on package
Julia Reynolds520df6e2017-02-13 09:05:10 -05003735 // CATEGORY: NOTIFICATION
3736 // OS: O
3737 NOTIFICATION_SNOOZED = 831;
3738
3739 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3740 // OS: O
3741 NOTIFICATION_SNOOZED_CRITERIA = 832;
3742
Fan Zhang65899432017-02-14 13:36:53 -08003743 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003744 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003745 FIELD_CONTEXT = 833;
3746
Fan Zhangd95dcb42017-02-14 13:48:09 -08003747 // ACTION: Settings advanced button is expanded
3748 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3749
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003750 // ACTION: Logs the number of times the saved network evaluator was used to
3751 // recommend a wifi network
3752 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3753
3754 // ACTION: Logs the number of times the recommended network evaluator was
3755 // used to recommend a wifi network
3756 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3757
3758 // ACTION: Logs the number of times a recommended network was resulted in a
3759 // successful connection
3760 // VALUE: true if the connection was successful, false if the connection failed
3761 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3762
Daniel Nishic581bfc2017-02-08 10:18:19 -08003763 // OPEN: Settings > Storage > Games
3764 // CATEGORY: SETTINGS
3765 // OS: O
3766 APPLICATIONS_STORAGE_GAMES = 838;
3767
3768 // OPEN: Settings > Storage > Audio and Music
3769 // CATEGORY: SETTINGS
3770 // OS: O
3771 APPLICATIONS_STORAGE_MUSIC = 839;
3772
3773 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3774 // CATEGORY: SETTINGS
3775 // OS: O
3776 STORAGE_FREE_UP_SPACE_NOW = 840;
3777
3778 // ACTION: Settings > Storage > Files to open the File Manager
3779 // CATEGORY: SETTINGS
3780 // OS: O
3781 STORAGE_FILES = 841;
3782
Fan Zhangb1d49222017-02-15 17:12:58 -08003783 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003784 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003785
Fan Zhang7f2cace2017-02-17 12:05:48 -08003786 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3787 DEFAULT_ASSIST_PICKER = 843;
3788
3789 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3790 DEFAULT_VOICE_INPUT_PICKER = 844;
3791
Daniel Nishi4058a842017-02-21 17:11:35 -08003792 // OPEN: Settings > Storage > [Profile]
3793 SETTINGS_STORAGE_PROFILE = 845;
3794
Doris Lingedb84c32017-02-23 10:56:01 -08003795 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3796 // CATEGORY: SETTINGS
3797 // OS: O
3798 ENCRYPTION_AND_CREDENTIAL = 846;
3799
Fan Zhangb66e5422017-02-24 14:37:45 -08003800 // ACTION: Settings > About device > Build number
3801 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3802
3803 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3804 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3805
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003806 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3807 // CATEGORY: SETTINGS
3808 // OS: O
3809 WIFI_NETWORK_DETAILS = 849;
3810
jackqdyuleia2a14342017-02-28 16:20:48 -08003811 // ACTION: Settings > Battery > Menu > Usage Alerts
3812 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3813
3814 // ACTION: Settings > Battery > Menu > Optimization
3815 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3816
3817 // ACTION: Settings > Battery > Menu > Apps Toggle
3818 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3819
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003820 // ACTION: Settings > Any preference is changed
3821 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3822
3823 // FIELD: The name of preference when it is changed in Settings
3824 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3825
3826 // FIELD: The new value of preference when it is changed in Settings
3827 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3828
Julia Reynoldsd373d782017-03-03 13:32:57 -05003829 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3830 // channel updated
3831 // PACKAGE: the package the channel belongs too
3832 // CATEGORY: NOTIFICATION
3833 // OS: O
3834 ACTION_NOTIFICATION_CHANNEL = 856;
3835
3836 // Tagged data for notification channel. String.
3837 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3838
3839 // Tagged data for notification channel. int.
3840 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3841
3842 // OPEN: Notification channel group created.
3843 // PACKAGE: the package the group belongs to
3844 // CATEGORY: NOTIFICATION
3845 // OS: O
3846 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3847
3848 // Tagged data for notification channel group. String.
3849 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3850
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003851 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3852 // CATEGORY: SETTINGS
3853 // OS: O
3854 SETTINGS_NETWORK_SCORER = 861;
3855
Fan Zhang99861312017-03-07 14:32:38 -08003856 // OPEN: Settings > About device > Model > Hardware info dialog
3857 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3858
mariagpuyol0f5512e2017-03-01 12:09:56 -08003859 // ACTION: Checks whether a contact's phone still exists
3860 // Value 0: It doesn't exist anymore
3861 // Value 1: It still exists
3862 // Value 2: A SecurityException was thrown
3863 // CATEGORY: SETTINGS
3864 // OS: N
3865 ACTION_PHONE_EXISTS = 863;
3866
3867 // ACTION: Retrieves a contact from CP2
3868 // Value 0: Contact retrieved without issues
3869 // Value 1: An IllegalArgumentException was thrown
3870 // CATEGORY: SETTINGS
3871 // OS: N
3872 ACTION_GET_CONTACT = 864;
3873
Chris Wren4d6b54d2017-04-27 16:56:54 -04003874 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003875 // internal platform metrics use.
3876 RESERVED_FOR_LOGBUILDER_PID = 865;
3877
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003878 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3879 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3880
3881 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3882 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3883
3884 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3885 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3886
3887 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3888 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3889
3890 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3891 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3892
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003893 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003894 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003895
Fan Zhang082d21c2017-03-13 15:25:54 -07003896 // ACTION: Settings > App detail > Uninstall
3897 ACTION_SETTINGS_UNINSTALL_APP = 872;
3898
3899 // ACTION: Settings > App detail > Uninstall Device admin app
3900 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3901
3902 // ACTION: Settings > App detail > Disable app
3903 ACTION_SETTINGS_DISABLE_APP = 874;
3904
3905 // ACTION: Settings > App detail > Enable app
3906 ACTION_SETTINGS_ENABLE_APP = 875;
3907
3908 // ACTION: Settings > App detail > Clear data
3909 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3910
3911 // ACTION: Settings > App detail > Clear cache
3912 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3913
3914 // ACTION: Clicking on any search result in Settings.
3915 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3916
3917 // FIELD: Settings inline search result name
3918 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3919
3920 // FIELD: Settings inline search result value
3921 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3922
Fan Zhang53797932017-03-13 17:46:24 -07003923 // ACTION: Settings > Search > Click saved queries
3924 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3925
Doris Lingbf8d9de2017-03-15 11:52:50 -07003926 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3927 // CATEGORY: SETTINGS
3928 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3929
Chris Wren3824c392017-11-27 12:54:14 -05003930 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3931 // PACKAGE: The package name of the app requesting the permission
3932 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003933 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3934
Chris Wren3824c392017-11-27 12:54:14 -05003935 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3936 // PACKAGE: The package name of the app that was granted the permission
3937 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003938 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3939
Chris Wren3824c392017-11-27 12:54:14 -05003940 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3941 // PACKAGE: The package name of the app requesting the permission
3942 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003943 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3944
Chris Wren3824c392017-11-27 12:54:14 -05003945 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3946 // PACKAGE: The package name of the app the permission was revoked for
3947 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003948 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3949
Chris Wren3824c392017-11-27 12:54:14 -05003950 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3951 // PACKAGE: The package name of the app requesting the permission
3952 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003953 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3954
Chris Wren3824c392017-11-27 12:54:14 -05003955 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3956 // PACKAGE: The package name of the app that was granted the permission
3957 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003958 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3959
Chris Wren3824c392017-11-27 12:54:14 -05003960 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3961 // PACKAGE: The package name of the app requesting the permission
3962 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003963 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3964
Chris Wren3824c392017-11-27 12:54:14 -05003965 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3966 // PACKAGE: The package name of the app the permission was revoked for
3967 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003968 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3969
Chris Wren3824c392017-11-27 12:54:14 -05003970 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3971 // PACKAGE: The package name of the app requesting the permission
3972 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003973 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3974
Chris Wren3824c392017-11-27 12:54:14 -05003975 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3976 // PACKAGE: The package name of the app that was granted the permission
3977 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003978 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3979
Chris Wren3824c392017-11-27 12:54:14 -05003980 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3981 // PACKAGE: The package name of the app requesting the permission
3982 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003983 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3984
Chris Wren3824c392017-11-27 12:54:14 -05003985 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3986 // PACKAGE: The package name of the app the permission was revoked for
3987 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003988 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3989
Chris Wren3824c392017-11-27 12:54:14 -05003990 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3991 // PACKAGE: The package name of the app requesting the permission
3992 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003993 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3994
Chris Wren3824c392017-11-27 12:54:14 -05003995 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3996 // PACKAGE: The package name of the app that was granted the permission
3997 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003998 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3999
Chris Wren3824c392017-11-27 12:54:14 -05004000 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
4001 // PACKAGE: The package name of the app requesting the permission
4002 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004003 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
4004
Chris Wren3824c392017-11-27 12:54:14 -05004005 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
4006 // PACKAGE: The package name of the app the permission was revoked for
4007 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004008 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
4009
Todd Kennedy7e5407e2017-03-16 09:51:11 -07004010 // ACTION: Phase 1 of instant application resolution occurred
4011 // OS: O
4012 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
4013
4014 // ACTION: Phase 2 of instant application resolution occurred
4015 // OS: O
4016 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
4017
4018 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
4019 // OS: O
4020 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
4021
4022 // FIELD: The status of an ephemeral resolution phase
4023 // Value 0: success
4024 // Value 1: no full hash match
4025 // OS: O
4026 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
4027
4028 // FIELD - A token to identify all events that are part of the same instant application launch
4029 // OS: O
4030 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
4031
4032 // FIELD - The name of the package responsible for launching the activity
4033 // OS: O
4034 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
4035
4036 // FIELD - Whether or not the launched activity is part of an instant application
4037 // OS: O
4038 APP_TRANSITION_IS_EPHEMERAL = 905;
4039
Felipe Leme21fb1a32018-05-21 11:18:46 -07004040 // An autofill session was started.
4041 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004042 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08004043 // NOTE: starting on OS MR1, it also added the following field:
4044 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4045 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07004046 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004047 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
4048 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
4049 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004050 AUTOFILL_SESSION_STARTED = 906;
4051
4052 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004053 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4054 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004055 // Package: Package of app that is autofilled
4056 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004057 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004058 // the service returned a null response
4059 // NOTE: starting on OS P, it also added the following fields:
4060 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004061 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004062 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4063 // with 1.
4064 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4065 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4066 // was focused.
4067 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004068 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004069 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004070 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004071 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4072 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4073 // - AUTOFILL_UI_LATENCY
4074 // - AUTOFILL_AUTHENTICATED;
4075 // - AUTOFILL_DATASET_AUTHENTICATED
4076 // - AUTOFILL_INVALID_AUTHENTICATION
4077 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Felipe Lemed9dc9542018-09-19 11:54:28 -07004078 // NOTE: starting on OS Q, it also added the following fields:
4079 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Felipe Lemea3033852019-01-18 16:32:33 -08004080 // Tag FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS: number of requests made to the augmented
4081 // autofill service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004082 AUTOFILL_REQUEST = 907;
4083
4084 // Tag of a field for a package of an autofill service
4085 FIELD_AUTOFILL_SERVICE = 908;
4086
4087 // Tag of a field for the number of datasets
4088 FIELD_AUTOFILL_NUM_DATASETS = 909;
4089
4090 // An autofill dataset selection UI was shown
4091 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4092 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4093 // Type TYPE_ACTION: dataset was selected
4094 // Type TYPE_DETAIL: authentication was selected
4095 // Package: Package of app that was autofilled
4096 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4097 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004098 // NOTE: starting on OS P, it also added the following fields:
4099 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004100 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004101 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004102 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004103 AUTOFILL_FILL_UI = 910;
4104
4105 // Tag of a field for the length of the filter text
4106 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4107
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004108 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004109 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004110 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004111 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004112 AUTOFILL_AUTHENTICATED = 912;
4113
4114 // An activity was autofilled and all values could be applied
4115 // Package: Package of app that is autofilled
4116 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4117 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004118 // NOTE: starting on OS P, it also added the following fields:
4119 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004120 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004121 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004122 AUTOFILL_DATASET_APPLIED = 913;
4123
4124 // Tag of a field for the number values to be filled in
4125 FIELD_AUTOFILL_NUM_VALUES = 914;
4126
4127 // Tag of a field for the number of views that were filled
4128 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4129
4130 // An autofill save UI was shown
4131 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4132 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4133 // Type TYPE_ACTION: data was saved
4134 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004135 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004136 // NOTE: starting on OS P, it also added the following fields:
4137 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004138 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004139 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004140 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004141 // NOTE: starting on OS Q, it also added the following fields:
4142 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004143 AUTOFILL_SAVE_UI = 916;
4144
4145 // Tag of a field for the number of saveable ids
4146 FIELD_AUTOFILL_NUM_IDS = 917;
4147
Felipe Leme21fb1a32018-05-21 11:18:46 -07004148 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004149 // Type TYPE_SUCCESS: The request succeeded right away
4150 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004151 // Type TYPE_FAILURE: The request failed
4152 // Package: Package of app that was autofilled
4153 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004154 // NOTE: starting on OS P, it also added the following fields:
4155 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004156 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004157 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemed9dc9542018-09-19 11:54:28 -07004158 // NOTE: starting on OS Q, it also added the following fields:
4159 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004160 AUTOFILL_DATA_SAVE_REQUEST = 918;
4161
4162 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004163 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004164 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004165 // NOTE: starting on OS P, it also added the following fields:
4166 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004167 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004168 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4169 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4170 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004171 AUTOFILL_SESSION_FINISHED = 919;
4172
Chris Wren148805582017-03-17 17:18:11 -04004173 // meta-event: a reader has checkpointed the log here.
4174 METRICS_CHECKPOINT = 920;
4175
Fan Zhanged1845f2017-03-23 14:46:59 -07004176 // OPEN: Settings -> Display -> When in VR Mode
4177 VR_DISPLAY_PREFERENCE = 921;
4178
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004179 // OPEN: Settings > Accessibility > Magnification
4180 // CATEGORY: SETTINGS
4181 // OS: O
4182 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004183
4184 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4185 // app.
4186 // VALUE: The package name of the app
4187 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4188
Fan Zhang1a34e752017-03-24 13:44:51 -07004189 // OPEN: Settings -> System -> Reset options
4190 RESET_DASHBOARD = 924;
4191
Jason Monk8c09ac72017-03-16 11:53:40 -04004192 // ACTION: QS -> Tile clicked
4193 ACTION_QS_CLICK = 925;
4194
4195 // ACTION: QS -> Secondary click
4196 ACTION_QS_SECONDARY_CLICK = 926;
4197
4198 // FIELD: Position info in QS clicks
4199 FIELD_QS_POSITION = 927;
4200
4201 // FIELD: The value of a QS tile when clicked (if applicable)
4202 FIELD_QS_VALUE = 928;
4203
4204 // ACTION: QS -> Detail panel -> more settings
4205 ACTION_QS_MORE_SETTINGS = 929;
4206
4207 // ACTION: QS -> Click date
4208 ACTION_QS_DATE = 930;
4209
Jason Monk1b775652017-03-31 15:42:27 -04004210 // ACTION: Event on nav button
4211 ACTION_NAV_BUTTON_EVENT = 931;
4212
4213 // FIELD: Flags for a nav button event
4214 FIELD_FLAGS = 932;
4215
4216 // FIELD: Action for a nav button event
4217 FIELD_NAV_ACTION = 933;
4218
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004219 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4220 // CATEGORY: SETTINGS
4221 // OS: O
4222 FINGERPRINT_REMOVE_SIDECAR = 934;
4223
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004224 // OPEN: Settings > Storage > Movies & TV
4225 // CATEGORY: SETTINGS
4226 // OS: O
4227 APPLICATIONS_STORAGE_MOVIES = 935;
4228
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004229 // OPEN: Text selection "assist" menu item shown.
4230 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4231 // CATEGORY: TEXT_CONTROLS
4232 // OS: O
4233 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4234
4235 // ACTION: Text selection "assist" menu item clicked.
4236 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4237 // CATEGORY: TEXT_CONTROLS
4238 // OS: O
4239 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4240
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004241 // OPEN: Settings > Security > Managed Device Info > Apps installed
4242 // CATEGORY: SETTINGS
4243 // OS: O
4244 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4245
4246 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4247 // CATEGORY: SETTINGS
4248 // OS: O
4249 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4250
4251 // OPEN: Settings > Security > Managed Device Info > Default apps
4252 // CATEGORY: SETTINGS
4253 // OS: O
4254 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4255
Julia Reynolds80b18072017-04-23 12:27:07 -04004256 // OPEN: Settings > Notifications > An app > A channel > Importance
4257 // CATEGORY: SETTINGS
4258 // OS: O
4259 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4260
4261 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4262 // CATEGORY: SETTINGS
4263 // OS: O
4264 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4265
Chris Wren4d6b54d2017-04-27 16:56:54 -04004266 // This value should never appear in log outputs - it is reserved for
4267 // internal platform metrics use.
4268 RESERVED_FOR_LOGBUILDER_UID = 943;
4269
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004270 // OPEN: Running background apps notification > List of background apps
4271 // CATEGORY: GLOBAL_SYSTEM_UI
4272 // OS: O
4273 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4274
Jorim Jaggi515dd682017-05-05 15:05:07 +02004275 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4276 // client.
4277 // OS: O
4278 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4279
Chris Wrenb3921792017-06-01 13:34:46 -04004280 // FIELD - The group ID of a notification.
4281 // Type: string
4282 // OS: O
4283 FIELD_NOTIFICATION_GROUP_ID = 946;
4284
4285 // FIELD - If the notification is a group summary: 1.
4286 // Type: int encoded boolean
4287 // OS: O
4288 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4289
Felipe Leme637e05e2017-12-06 12:09:37 -08004290 // An app attempted to forge a different component name in the AssisStructure that would be
4291 // passed to the autofill service.
4292 // OS: O (security patch)
4293 // Package: Real package of the app being autofilled
4294 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4295 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004296 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004297 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004298 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4299
4300 // FIELD - The component that an app tried tro forged.
4301 // Type: string
4302 // OS: O (security patch)
4303 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4304
Chris Wren26ca65d2016-11-29 10:43:28 -05004305 // ---- End O Constants, all O constants go above this line ----
4306
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004307 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4308 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4309
jackqdyulei92e492e2017-04-28 13:04:42 -07004310 // OPEN: Settings > Battery > High Usage > Abnormal app page
4311 // CATEGORY: SETTINGS
4312 FUELGAUGE_ANOMALY_DETAIL = 987;
4313
4314 // OPEN: Settings > Battery > High Usage
4315 DIALOG_HANDLE_ANOMALY = 988;
4316
Jonathan Solnita4138162017-05-10 21:06:04 -07004317 // ACTION: Camera lift gesture
4318 // CATEGORY: GLOBAL_SYSTEM_UI
4319 // OS: O
4320 ACTION_CAMERA_LIFT_TRIGGER = 989;
4321
Maurice Lam76ae09c2017-05-05 12:03:49 -07004322 // OPEN: Choose screen lock dialog in Settings
4323 // CATEGORY: SETTINGS
4324 // OS: O DR
4325 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4326
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004327 // OPEN: Assist Gesture training intro in Settings
4328 // CATEGORY: SETTINGS
4329 // OS: O DR
4330 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4331
4332 // OPEN: Assist Gesture training enrolling in Settings
4333 // CATEGORY: SETTINGS
4334 // OS: O DR
4335 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4336
4337 // OPEN: Assist Gesture training finished in Settings
4338 // CATEGORY: SETTINGS
4339 // OS: O DR
4340 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4341
Fan Zhangc666a202017-05-18 17:50:20 -07004342 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4343 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4344
4345 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4346 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4347
Philip Quinn0f9566d2017-05-23 10:32:08 -07004348 // OPEN: Settings > System > Languages & input > Assist gesture
4349 // CATEGORY: SETTINGS
4350 // OS: O DR
4351 SETTINGS_ASSIST_GESTURE = 996;
4352
4353 // ACTION: Assist gesture released without triggering
4354 // CATEGORY: GLOBAL_SYSTEM_UI
4355 // OS: O DR
4356 ASSIST_GESTURE_RELEASED = 997;
4357
4358 // ACTION: Assist gesture primed
4359 // CATEGORY: GLOBAL_SYSTEM_UI
4360 // OS: O DR
4361 ASSIST_GESTURE_PRIMED = 998;
4362
4363 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004364 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004365 // CATEGORY: GLOBAL_SYSTEM_UI
4366 // OS: O DR
4367 ASSIST_GESTURE_TRIGGERED = 999;
4368
Fan Zhang238162b2017-05-25 14:01:41 -07004369 // ACTION: Update default app from Settings
4370 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4371
4372 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004373 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004374
4375 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004376 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004377
Adrian Roos1c81d772017-05-25 18:00:21 -07004378 // OPEN: Settings > Display > Ambient Display
4379 // CATEGORY: SETTINGS
4380 // OS: O DR
4381 AMBIENT_DISPLAY_SETTINGS = 1003;
4382
Hugo Benichi11da42b2017-05-31 11:11:37 +09004383 // ACTION: CaptivePortalLoginActivity starts
4384 // CATEGORY: GLOBAL_SYSTEM_UI
4385 // OS: O DR
4386 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4387
4388 // ACTION: CaptivePortalLoginActivity auto-closes
4389 // CATEGORY: GLOBAL_SYSTEM_UI
4390 // OS: O DR
4391 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4392
4393 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4394 // CATEGORY: GLOBAL_SYSTEM_UI
4395 // OS: O DR
4396 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4397
4398 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4399 // CATEGORY: GLOBAL_SYSTEM_UI
4400 // OS: O DR
4401 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4402
4403 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4404 // CATEGORY: SETTINGS
4405 // OS: O DR
4406 ACTION_WIFI_SIGNIN = 1008;
4407
Antony Sargentf3cc3172017-05-04 14:58:06 -07004408 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4409 // CATEGORY: SETTINGS
4410 // OS: O DR
4411 BLUETOOTH_DEVICE_DETAILS = 1009;
4412
fanzhang172255759d2017-06-05 21:43:47 -07004413 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4414 CONFIGURE_KEYGUARD_DIALOG = 1010;
4415
Fan Zhange33c70d2017-06-06 12:37:13 -07004416 // Open: Settings > Search > No Result View
4417 SETTINGS_SEARCH_NO_RESULT = 1011;
4418
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004419 // OPEN: Assist Gesture before training
4420 // CATEGORY: SETTINGS
4421 // OS: O DR
4422 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4423
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004424 // CaptivePortalLoginActivity displays SSL error page
4425 // CATEGORY: GLOBAL_SYSTEM_UI
4426 // OS: O DR
4427 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4428
Fan Zhang1a0fc992017-06-13 13:45:21 -07004429 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4430 WIFI_TETHER_SETTINGS = 1014;
4431
Antony Sargentc3b5da62017-06-16 11:50:13 -07004432 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4433 // -> Edit name button.
4434 // CATEGORY: SETTINGS
4435 // OS: O DR
4436 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4437
Fan Zhang543587d2017-06-19 12:32:14 -07004438 // ACTION: Settings > Notification Settings > Open application notification
4439 // CATEGORY: SETTINGS
4440 // OS: O DR
4441 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4442
4443 // ACTION: Settings > App Info > Open app settings
4444 // CATEGORY: SETTINGS
4445 // OS: O DR
4446 ACTION_OPEN_APP_SETTING = 1017;
4447
jackqdyulei2f1a3592017-06-19 13:11:05 -07004448 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4449 // CATEGORY: SETTINGS
4450 // OS: O DR
4451 BLUETOOTH_PAIRING = 1018;
4452
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004453 // ACTION: Collect PSD Signals
4454 // CATEGORY: SETTINGS
4455 // OS: O DR
4456 ACTION_PSD_LOADER = 1019;
4457
jackqdyulei602bcc92017-06-21 15:17:53 -07004458 // ACTION: Background check action on an app
4459 // CATEGORY: SETTINGS
4460 // OS: O DR
4461 ACTION_APP_BACKGROUND_CHECK = 1020;
4462
4463 // ACTION: Location check action on an app
4464 // CATEGORY: SETTINGS
4465 // OS: O DR
4466 ACTION_APP_LOCATION_CHECK = 1021;
4467
Charlie Wang15a36ed2017-06-14 14:46:39 -07004468 // Device headset status
4469 // CATEGORY: OTHER
4470 // SUBTYPE: 1 is DON, 2 is DOFF
4471 // OS: O DR
4472 ACTION_HEADSET_STATUS = 1022;
4473
4474 // Device Headset Plug status
4475 // CATEGORY: OTHER
4476 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4477 // OS: O DR
4478 ACTION_HEADSET_PLUG = 1023;
4479
4480 // Device Headset battery level on Plug
4481 // CATEGORY: OTHER
4482 // FIELD - The battery percentage when the user decided to plug in
4483 // Type: integer
4484 // OS: O DR
4485 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4486
Charlie Wang566ec702017-06-26 15:30:03 -07004487 // Device Headset battery level on Plug
4488 // CATEGORY: OTHER
4489 // FIELD - The battery percentage when the user decided to plug in
4490 // Type: integer
4491 // OS: O DR
4492 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4493
Charlie Wang15a36ed2017-06-14 14:46:39 -07004494 // Device Headset Pose status
4495 // CATEGORY: OTHER
4496 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4497 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004498 ACTION_HEADSET_POSE_STATUS = 1026;
4499
4500 // Device Headset Usage session time
4501 // CATEGORY: OTHER
4502 // FIELD - The time the headset was used in a session
4503 // OS: O DR
4504 FIELD_SESSION_TIME_MS = 1027;
4505
4506 // Device Headset Idle time
4507 // CATEGORY: OTHER
4508 // FIELD - The time in between each session
4509 // OS: O DR
4510 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4511
4512 // Device Headset charge session time
4513 // CATEGORY: OTHER
4514 // FIELD - The time taken for each charge
4515 // OS: O DR
4516 FIELD_TIME_OF_CHARGE_MS = 1029;
4517
4518 // Device Headset time between charge
4519 // CATEGORY: OTHER
4520 // FIELD - The time in between each charge
4521 // OS: O DR
4522 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004523
Antony Sargentca701a22017-07-05 17:02:00 -07004524 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4525 // -> Forget button.
4526 // CATEGORY: SETTINGS
4527 // OS: O DR
4528 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4529
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004530 // An event from the camera service
4531 // CATEGORY: OTHER
4532 // SUBTYPE: CameraEvent
4533 // OS: O DR
4534 ACTION_CAMERA_EVENT = 1032;
4535
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004536 // OPEN: Settings > Trampoline Intent > Settings page
4537 // CATEGORY: SETTINGS
4538 // OS: O DR
4539 TRAMPOLINE_SETTINGS_EVENT = 1033;
4540
Chris Wren9a4f2662017-06-29 10:10:02 -04004541 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4542
Malcolm Chen21062542017-06-20 11:36:01 -07004543 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4544 // CATEGORY: SETTINGS
4545 // OS: O MR
4546 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4547
4548 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4549 // CATEGORY: SETTINGS
4550 // OS: O MR
4551 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4552
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004553 // FIELD - State of asynchronous ranking when Settings search result is clicked
4554 // CATEGORY: SETTINGS
4555 // OS: O MR
4556 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4557
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004558 // ACTION: Settings > Connected devices > SMS Mirroring
4559 // CATEGORY: SETTINGS
4560 // OS: O MR
4561 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4562
Kang Li2c571892017-07-05 14:47:32 -07004563 // ACTION: Chooser picked a ranked target.
4564 // CATEGORY: GLOBAL_SYSTEM_UI
4565 // OS: O MR
4566 ACTION_TARGET_SELECTED = 1085;
4567
4568 // FIELD - is category used in Chooser: 1.
4569 // Type: int encoded boolean
4570 // CATEGORY: GLOBAL_SYSTEM_UI
4571 // OS: O MR
4572 FIELD_IS_CATEGORY_USED = 1086;
4573
4574 // FIELD - ranked position of selected target for Chooser.
4575 // CATEGORY: GLOBAL_SYSTEM_UI
4576 // OS: O MR
4577 FIELD_RANKED_POSITION = 1087;
4578
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004579 // OPEN: Settings > Data plan usage
4580 // CATEGORY: SETTINGS
4581 // OS: O MR
4582 DATA_PLAN_USAGE_SUMMARY = 1088;
4583
Doris Lingce007eb2017-08-09 13:59:46 -07004584 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4585 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4586
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004587 // ACTION: Logged when the app has notified that it has fully drawn. See
4588 // Activity.reportFullyDrawn().
4589 APP_TRANSITION_REPORTED_DRAWN = 1090;
4590
4591 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4592 // the app transition.
4593 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4594
Daniel Nishia86115f2017-08-23 10:27:08 -07004595 // OPEN: Settings > Storage > Photos & Videos
4596 // CATEGORY: SETTINGS
4597 // OS: O MR
4598 APPLICATIONS_STORAGE_PHOTOS = 1092;
4599
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004600 // ACTION: Logged when the status bar icons change.
4601 // OS: O MR
4602 STATUS_BAR_ICONS_CHANGED = 1093;
4603
4604 // FIELD: Bitfield indicating which icons are shown.
4605 // OS: O MR
4606 FIELD_STATUS_ICONS = 1094;
4607
4608 // FIELD: Number of status icons currently shown.
4609 // OS: O MR
4610 FIELD_NUM_STATUS_ICONS = 1095;
4611
Jack He4b605792017-09-01 11:48:30 -07004612 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4613 // CATEGORY: SETTINGS
4614 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004615 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004616
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004617 // FIELD - Whether smart suggestion ranking was enabled or not
4618 // Type: int encoded boolean
4619 // CATEGORY: SETTINGS
4620 // OS: O MR
4621 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4622
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004623 // ACTION: The device boots
4624 ACTION_BOOT = 1098;
4625
4626 // FIELD: A string value representing some state of the platform, e.g., boot reason
4627 FIELD_PLATFORM_REASON = 1099;
4628
Jan Althaus786a39d2017-09-15 10:41:16 +02004629 // CATEGORY: The category for all actions relating to selection session logging.
4630 // OS: O MR
4631 TEXT_SELECTION_SESSION = 1100;
4632
4633 // ACTION: A selection session started (i.e. the selection handles appeared)
4634 // CATEGORY: TEXT_SELECTION_SESSION
4635 // OS: O MR
4636 ACTION_TEXT_SELECTION_START = 1101;
4637
4638 // ACTION: The user modified the selection (e.g. by dragging the handles)
4639 // CATEGORY: TEXT_SELECTION_SESSION
4640 // OS: O MR
4641 ACTION_TEXT_SELECTION_MODIFY = 1102;
4642
4643 // ACTION: The user modified the selection by pressing the "select all" button.
4644 // CATEGORY: TEXT_SELECTION_SESSION
4645 // OS: O MR
4646 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4647
4648 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4649 // CATEGORY: TEXT_SELECTION_SESSION
4650 // OS: O MR
4651 ACTION_TEXT_SELECTION_RESET = 1104;
4652
4653 // ACTION: Smart selection made a single word prediction
4654 // CATEGORY: TEXT_SELECTION_SESSION
4655 // OS: O MR
4656 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4657
4658 // ACTION: Smart selection made a multi word prediction
4659 // CATEGORY: TEXT_SELECTION_SESSION
4660 // OS: O MR
4661 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4662
4663 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4664 // CATEGORY: TEXT_SELECTION_SESSION
4665 // OS: O MR
4666 ACTION_TEXT_SELECTION_AUTO = 1107;
4667
4668 // ACTION: A selection session ended with the user typing over the text
4669 // CATEGORY: TEXT_SELECTION_SESSION
4670 // OS: O MR
4671 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4672
4673 // ACTION: A selection session ended with the user copying the text
4674 // CATEGORY: TEXT_SELECTION_SESSION
4675 // OS: O MR
4676 ACTION_TEXT_SELECTION_COPY = 1109;
4677
4678 // ACTION: A selection session ended with the user pasting over the text
4679 // CATEGORY: TEXT_SELECTION_SESSION
4680 // OS: O MR
4681 ACTION_TEXT_SELECTION_PASTE = 1110;
4682
4683 // ACTION: A selection session ended with the user cutting the text
4684 // CATEGORY: TEXT_SELECTION_SESSION
4685 // OS: O MR
4686 ACTION_TEXT_SELECTION_CUT = 1111;
4687
4688 // ACTION: A selection session ended with the user pressing the share button
4689 // CATEGORY: TEXT_SELECTION_SESSION
4690 // OS: O MR
4691 ACTION_TEXT_SELECTION_SHARE = 1112;
4692
4693 // ACTION: A selection session ended with the user pressing the smart share button
4694 // CATEGORY: TEXT_SELECTION_SESSION
4695 // OS: O MR
4696 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4697
4698 // ACTION: A selection session ended with the user dragging the text
4699 // CATEGORY: TEXT_SELECTION_SESSION
4700 // OS: O MR
4701 ACTION_TEXT_SELECTION_DRAG = 1114;
4702
4703 // ACTION: A selection session ended with the user abandoning the selection
4704 // CATEGORY: TEXT_SELECTION_SESSION
4705 // OS: O MR
4706 ACTION_TEXT_SELECTION_ABANDON = 1115;
4707
4708 // ACTION: A selection session ended with the user picking an unhandled action bar item
4709 // CATEGORY: TEXT_SELECTION_SESSION
4710 // OS: O MR
4711 ACTION_TEXT_SELECTION_OTHER = 1116;
4712
4713 // FIELD: Time in milliseconds from the start of the session to this event
4714 // CATEGORY: TEXT_SELECTION_SESSION
4715 // OS: O MR
4716 FIELD_SELECTION_SINCE_START = 1117;
4717
4718 // FIELD: time in milliseconds between the last event in the session and this one
4719 // CATEGORY: TEXT_SELECTION_SESSION
4720 // OS: O MR
4721 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4722
4723 // FIELD: a random uid for a selection session (lasting from select start to end)
4724 // CATEGORY: TEXT_SELECTION_SESSION
4725 // OS: O MR
4726 FIELD_SELECTION_SESSION_ID = 1119;
4727
4728 // FIELD: the sequence number of the event in the session
4729 // CATEGORY: TEXT_SELECTION_SESSION
4730 // OS: O MR
4731 FIELD_SELECTION_SESSION_INDEX = 1120;
4732
4733 // FIELD: a concatenation of the widget type and ML model version.
4734 // CATEGORY: TEXT_SELECTION_SESSION
4735 // OS: O MR
4736 FIELD_SELECTION_VERSION_TAG = 1121;
4737
4738 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4739 // packed 16bit integers. (start in MSBs, end in LSBs)
4740 // CATEGORY: TEXT_SELECTION_SESSION
4741 // OS: O MR
4742 FIELD_SELECTION_RANGE = 1122;
4743
4744 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4745 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4746 // CATEGORY: TEXT_SELECTION_SESSION
4747 // OS: O MR
4748 FIELD_SELECTION_SMART_RANGE = 1123;
4749
Felipe Lemeb22d6352017-09-08 20:03:53 -07004750 // The value of an autofillable and savable view was reset
4751 // Package: Package of app that was autofilled
4752 // OS: O MR
4753 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4754 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004755 // NOTE: starting on OS P, it also added the following fields:
4756 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004757 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004758 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004759 AUTOFILL_VALUE_RESET = 1124;
4760
4761 // Tag of AUTOFILL_VALUE_RESET
4762 // OS: O MR
4763 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4764
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004765 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004766 // Package: Package of app that was autofilled
4767 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004768 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004769 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4770
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004771 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004772 // Package: Package of app that was autofilled
4773 // OS: O MR
4774 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004775 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004776 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4777
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004778 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004779 // Package: Package of app that was autofilled
4780 // OS: O MR
4781 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004782 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004783 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4784
Felipe Leme2c888422017-10-26 12:46:35 -07004785 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004786 // Package: Package of app that is autofilled
4787 // OS: O MR
4788 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4789 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004790 // NOTE: starting on OS P, it also added the following fields:
4791 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004792 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004793 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004794 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4795
4796 // FIELD - Type of save object passed by the service when the Save UI is shown
4797 // OS: O MR
4798 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4799
Felipe Leme2c888422017-10-26 12:46:35 -07004800 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004801 // Package: Package of app that is autofilled
4802 // OS: O MR
4803 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4804 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004805 // NOTE: starting on OS P, it also added the following fields:
4806 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004807 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004808 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004809 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4810
Felipe Leme2c888422017-10-26 12:46:35 -07004811 // 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 -07004812 // Package: Package of app that is autofilled
4813 // OS: O MR
4814 // Type TYPE_UNKNOWN: The link was not properly set by the service
4815 // Type TYPE_OPEN: The link launched an activity
4816 // Type TYPE_FAILURE: The link could not launc an activity
4817 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4818 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004819 // NOTE: starting on OS P, it also added the following fields:
4820 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004821 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004822 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004823 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4824
4825 // Result of the validation on save when an autofill service provided a validator
4826 // Package: Package of app that is autofilled
4827 // OS: O MR
4828 // Type TYPE_FAILURE: The validation could not be performed due to an error
4829 // Type TYPE_SUCCESS: The validation passed
4830 // Type TYPE_DISMISS: The validation failed
4831 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4832 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
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_SAVE_VALIDATION = 1133;
4838
Felipe Leme2c888422017-10-26 12:46:35 -07004839 // 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 -07004840 // provided by the autofill service
4841 // Package: Package of app that is autofilled
4842 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004843 // Type TYPE_OPEN: The autofill save UI was restored
4844 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004845 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004846 // NOTE: starting on OS P, it also added the following fields:
4847 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004848 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004849 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004850 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4851
Felipe Leme9d414492017-09-20 13:55:28 -07004852 // Autofill service called API that disables itself
4853 // Package: Package of the autofill service
4854 // OS: O MR
4855 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4856
Felipe Leme21fb1a32018-05-21 11:18:46 -07004857 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004858 // Reports how long it took to show the autofill UI after a field was focused
4859 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004860 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4861 // Package: Package of the autofill service
4862 // OS: O MR
4863 AUTOFILL_UI_LATENCY = 1136;
4864
Chris Wren21a2e722017-10-02 17:44:53 -04004865 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4866 // OS: O MR
4867 NOTIFICATION_SNOOZE_CLICKED = 1137;
4868
4869 // Action: user selected a notification snooze duration from the drop down
4870 // OS: O MR
4871 NOTIFICATION_SELECT_SNOOZE = 1138;
4872
4873 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4874 // OS: O MR
4875 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4876
4877 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4878 // OS: O MR
4879 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4880
4881 // Action: user tapped undo on the notification snooze leave-behind
4882 // OS: O MR
4883 NOTIFICATION_UNDO_SNOOZE = 1141;
4884
4885 // Action: user togged the visibility of the notification snooze options drop down
4886 // OS: O MR
4887 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4888
Romain Guy62e8c172017-10-24 21:37:34 +01004889 // OPEN: Settings > Display > Colors
4890 // CATEGORY: SETTINGS
4891 // OS: O MR
4892 COLOR_MODE_SETTINGS = 1143;
4893
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004894 // Enclosing category for group of APP_TRANSITION_FOO events,
4895 // logged when we cancel an app transition.
4896 APP_TRANSITION_CANCELLED = 1144;
4897
Felipe Lemeb659adb2018-01-18 15:21:36 -08004898 // Tag of a field representing a duration on autofill-related metrics.
4899 FIELD_AUTOFILL_DURATION = 1145;
4900
Doris Lingce007eb2017-08-09 13:59:46 -07004901 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4902
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004903 // OPEN: Settings > Network & Internet > Mobile network
4904 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004905 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004906
4907 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4908 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004909 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004910
4911 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4912 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004913 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004914
4915 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4916 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004917 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004918
4919 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4920 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004921 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004922
4923 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4924 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004925 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004926
4927 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4928 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004929 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004930
4931 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4932 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004933 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004934
4935 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4936 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004937 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004938
4939 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4940 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004941 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004942
4943 // ACTION: Settings > Network & Internet > Mobile network > Network
4944 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004945 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004946
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004947 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004948 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004949
4950 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4951 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004952 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004953
4954 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4955 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004956 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004957
4958 // OPEN: Settings > Network & Internet > Mobile network > System select
4959 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004960 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004961
4962 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4963 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004964 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004965
4966 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4967 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004968 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004969
Fan Zhanga2f2c912017-08-15 17:20:37 -07004970 // OPEN: Settings > Developer Options > Experiment dashboard
4971 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004972 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004973
Julia Reynolds005c8b92017-08-24 10:35:53 -04004974 // OPEN: Settings > Notifications > [App] > Topic Notifications
4975 // CATEGORY: SETTINGS
4976 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004977 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004978
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004979 // OPEN: Settings > Developer options > Enable > Info dialog
4980 // CATEGORY: SETTINGS
4981 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004982 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004983
jeffreyhuang57359c02017-09-18 11:34:00 -07004984 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4985 // CATEGORY: SETTINGS
4986 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004987 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004988
Kevin Chyn60eea712017-09-26 16:03:05 -07004989 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4990 // CATEGORY: SETTINGS
4991 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004992 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004993
jeffreyhuang37c4b132017-09-21 14:09:20 -07004994 // OPEN: Settings > Developer options > USB debugging > Info dialog
4995 // CATEGORY: SETTINGS
4996 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004997 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004998
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004999 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
5000 // CATEGORY: SETTINGS
5001 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005002 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07005003
Fan Zhange5b34302017-10-09 15:58:38 -07005004 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07005005 // CATEGORY: SETTINGS
5006 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07005007 DEVELOPMENT_QS_TILE_CONFIG = 1224;
5008
jeffreyhuang49de1252017-10-05 15:25:14 -07005009 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
5010 // CATEGORY: SETTINGS
5011 // OS: P
5012 DIALOG_LOG_PERSIST = 1225;
5013
Beverly04216872017-09-28 10:55:32 -04005014 // ACTION: DND Settings > Priority only allows > Alarms toggle
5015 // SUBTYPE: 0 is off, 1 is on
5016 // CATEGORY: SETTINGS
5017 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005018 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04005019
5020 // ACTION: DND Settings > Priority only allows > Media toggle
5021 // SUBTYPE: 0 is off, 1 is on
5022 // CATEGORY: SETTINGS
5023 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005024 ACTION_ZEN_ALLOW_MEDIA = 1227;
5025
5026 // An autofill service explicitly defined which view should commit the autofill context
5027 // Package: Package of app that is autofilled
5028 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005029 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005030 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07005031 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005032 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005033 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
5034
5035 // The autofill context was commited when the user clicked a view explicitly marked by the
5036 // service as committing it
5037 // Package: Package of app that is autofilled
5038 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005039 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07005040 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005041 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005042 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04005043
Malcolm Chen4f17b172017-10-19 13:54:07 -07005044 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
5045 // CATEGORY: SETTINGS
5046 // OS: P
5047 WIFI_CALLING_FOR_SUB = 1230;
5048
Felipe Leme17292d12017-10-24 14:03:10 -07005049 // An autofill service asked to disable autofill for a given application.
5050 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005051 // OS: P
5052 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08005053 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005054 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005055 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005056 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5057
5058 // An autofill service asked to disable autofill for a given activity.
5059 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005060 // OS: P
5061 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5062 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005063 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005064 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005065 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005066 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5067
jackqdyuleide3b7af2017-10-24 16:32:58 -07005068 // ACTION: Stop an app and turn on background check
5069 // CATEGORY: SETTINGS
5070 // OS: P
5071 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5072
5073 // FIELD: The action type for each anomaly
5074 // CATEGORY: SETTINGS
5075 // OS: P
5076 FIELD_ANOMALY_ACTION_TYPE = 1234;
5077
5078 // OPEN: Settings -> Battery -> Wakelock anomaly
5079 // CATEGORY: SETTINGS
5080 // OS: P
5081 ANOMALY_TYPE_WAKELOCK = 1235;
5082
5083 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5084 // CATEGORY: SETTINGS
5085 // OS: P
5086 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5087
5088 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5089 // CATEGORY: SETTINGS
5090 // OS: P
5091 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5092
Fan Zhanga4a01722017-10-30 17:54:24 -07005093 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5094 // OS: P
5095 DIALOG_OEM_LOCK_INFO = 1238;
5096
jackqdyulei331fafb2017-11-01 14:01:24 -07005097 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5098 // CATEGORY: SETTINGS
5099 // OS: P
5100 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5101
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005102 // Open: Settings > System > About phone > IMEI
5103 // CATEGORY: SETTINGS
5104 // OS: P
5105 DIALOG_IMEI_INFO = 1240;
5106
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005107 // In permission action fields tagged like this reference the permission affected
5108 FIELD_PERMISSION = 1241;
5109
5110 // ACTION: An app requested a permission and we asked to user to approve the request
5111 // PACKAGE: The package name of the app requesting the permission
5112 // Tag FIELD_PERMISSION: Name of the permission requested
5113 ACTION_PERMISSION_REQUESTED = 1242;
5114
5115 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5116 // or automatically. In the second case there will not be an
5117 // ACTION_PERMISSION_REQUESTED.
5118 // PACKAGE: The package name of the app that was granted the permission
5119 // Tag FIELD_PERMISSION: Name of the permission granted
5120 ACTION_PERMISSION_GRANTED = 1243;
5121
5122 // ACTION: An app requested the a permission and the request was denied by the user or a device
5123 // policy
5124 // PACKAGE: The package name of the app requesting the permission
5125 // Tag FIELD_PERMISSION: Name of the permission denied
5126 ACTION_PERMISSION_DENIED = 1244;
5127
5128 // ACTION: A permission was revoked
5129 // PACKAGE: The package name of the app the permission was revoked for
5130 // Tag FIELD_PERMISSION: Name of the permission revoked
5131 ACTION_PERMISSION_REVOKED = 1245;
5132
jeffreyhuang594314c2017-11-01 10:26:15 -07005133 // OPEN: Settings > System > About Phone > Sim status
5134 // CATEGORY: SETTINGS
5135 // OS: P
5136 DIALOG_SIM_STATUS = 1246;
5137
jeffreyhuang3bd59782017-11-02 11:08:28 -07005138 // OPEN: Settings > System > About Phone > Android Version
5139 // CATEGORY: SETTINGS
5140 // OS: P
5141 DIALOG_FIRMWARE_VERSION = 1247;
5142
jackqdyulei8fe97542017-11-08 16:23:43 -08005143 // OPEN: Settings > Network & internet > Menu > Private DNS
5144 // CATEGORY: SETTINGS
5145 // OS: P
5146 DIALOG_PRIVATE_DNS = 1248;
5147
5148 // ACTION: A private dns mode been selected by user
5149 // CATEGORY: SETTINGS
5150 // OS: P
5151 ACTION_PRIVATE_DNS_MODE = 1249;
5152
Jan Althausae5eb832017-11-06 12:31:59 +01005153 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5154 // CATEGORY: TEXT_SELECTION_SESSION
5155 // OS: P
5156 FIELD_SELECTION_RANGE_START = 1250;
5157
5158 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5159 // CATEGORY: TEXT_SELECTION_SESSION
5160 // OS: P
5161 FIELD_SELECTION_RANGE_END = 1251;
5162
5163 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5164 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5165 // CATEGORY: TEXT_SELECTION_SESSION
5166 // OS: P
5167 FIELD_SELECTION_SMART_RANGE_START = 1252;
5168
5169 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5170 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5171 // CATEGORY: TEXT_SELECTION_SESSION
5172 // OS: P
5173 FIELD_SELECTION_SMART_RANGE_END = 1253;
5174
5175 // FIELD: the entity type of the text currently selected.
5176 // CATEGORY: TEXT_SELECTION_SESSION
5177 // OS: P
5178 FIELD_SELECTION_ENTITY_TYPE = 1254;
5179
5180 // FIELD: the type of widget the selection was made in.
5181 // CATEGORY: TEXT_SELECTION_SESSION
5182 // OS: P
5183 FIELD_SELECTION_WIDGET_TYPE = 1255;
5184
5185 // FIELD: the name of the text classifier model used.
5186 // CATEGORY: TEXT_SELECTION_SESSION
5187 // OS: P
5188 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5189
Beverly625442d2017-11-03 17:27:02 -04005190 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5191 // CATEGORY: SETTINGS
5192 // OS: P
5193 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5194
5195 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5196 // CATEGORY: SETTINGS
5197 // OS: P
5198 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5199
5200 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5201 // CATEGORY: SETTINGS
5202 // OS: P
5203 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5204
5205 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5206 // CATEGORY: SETTINGS
5207 // OS: P
5208 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5209
5210 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5211 // CATEGORY: SETTINGS
5212 // OS: P
5213 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5214
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005215 // FIELD: the version of the widget the selection was made in.
5216 // CATEGORY: TEXT_SELECTION_SESSION
5217 // OS: P
5218 FIELD_SELECTION_WIDGET_VERSION = 1262;
5219
jackqdyulei63193602017-11-27 13:46:48 -08005220 // OPEN: Settings > Battery(version 2)
5221 // CATEGORY: SETTINGS
5222 // OS: P
5223 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5224
jackqdyulei6139eab2017-11-29 14:38:32 -08005225 // OPEN: Settings > Connected devices > Connection preferences
5226 // CATEGORY: SETTINGS
5227 // OS: P
5228 CONNECTION_DEVICE_ADVANCED = 1264;
5229
Fan Zhang5235c052017-12-05 13:49:35 -08005230 // OPEN: Settings > Security > Screen lock gear icon
5231 // CATEGORY: SETTINGS
5232 // OS: P
5233 SCREEN_LOCK_SETTINGS = 1265;
5234
Beverlybf16c142017-11-27 16:21:34 -05005235 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5236 // CATEGORY: SETTINGS
5237 // OS: P
5238 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005239
Beverlybf16c142017-11-27 16:21:34 -05005240 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5241 // CATEGORY: SETTINGS
5242 // OS: P
5243 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5244
5245 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5246 // CATEGORY: SETTINGS
5247 // OS: P
5248 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5249
5250 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5251 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5252 // CATEGORY: SETTINGS
5253 // OS: P
5254 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5255
5256 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5257 // CATEGORY: SETTINGS
5258 // OS: P
5259 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5260
Felipe Leme5e047202017-12-05 16:30:06 -08005261 // Tag of a field for the number of ids in an autofill field classification request.
5262 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5263
5264 // An autofill service updated its user data
5265 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005266 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5267 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005268 // OS: P
5269 AUTOFILL_USERDATA_UPDATED = 1272;
5270
5271 // Some data entered by the user matched the field classification requested by the service.
5272 // Package: Package of app that is autofilled
5273 // Counter: number of matches found
5274 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005275 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005276 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5277 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005278 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005279 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005280 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5281
5282 // Tag used to report autofill field classification scores
5283 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5284
Jerry Zhang18be8db2017-12-15 15:24:41 -08005285 // ACTION: Usb config has been changed to charging
5286 // CATEGORY: SETTINGS
5287 // OS: P
5288 ACTION_USB_CONFIG_CHARGING = 1275;
5289
5290 // ACTION: Usb config has been changed to mtp (file transfer)
5291 // CATEGORY: SETTINGS
5292 // OS: P
5293 ACTION_USB_CONFIG_MTP = 1276;
5294
5295 // ACTION: Usb config has been changed to ptp (photo transfer)
5296 // CATEGORY: SETTINGS
5297 // OS: P
5298 ACTION_USB_CONFIG_PTP = 1277;
5299
5300 // ACTION: Usb config has been changed to rndis (usb tethering)
5301 // CATEGORY: SETTINGS
5302 // OS: P
5303 ACTION_USB_CONFIG_RNDIS = 1278;
5304
5305 // ACTION: Usb config has been changed to midi
5306 // CATEGORY: SETTINGS
5307 // OS: P
5308 ACTION_USB_CONFIG_MIDI = 1279;
5309
5310 // ACTION: Usb config has been changed to accessory
5311 // CATEGORY: SETTINGS
5312 // OS: P
5313 ACTION_USB_CONFIG_ACCESSORY = 1280;
5314
jackqdyuleie04138d2018-01-08 17:51:57 -08005315 // OPEN: Settings > Battery > Smart Battery
5316 // CATEGORY: SETTINGS
5317 // OS: P
5318 FUELGAUGE_SMART_BATTERY = 1281;
5319
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005320 // ACTION: User tapped Screenshot in the power menu.
5321 // CATEGORY: GLOBAL_SYSTEM_UI
5322 // OS: P
5323 ACTION_SCREENSHOT_POWER_MENU = 1282;
5324
Felipe Leme3e099112018-01-18 12:57:45 -08005325 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005326 // CATEGORY: SETTINGS
5327 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005328 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005329
Felipe Leme3e099112018-01-18 12:57:45 -08005330 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005331 // CATEGORY: SETTINGS
5332 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005333 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005334
jackqdyuleid9821242018-01-09 17:42:52 -08005335 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5336 // CATEGORY: SETTINGS
5337 // OS: P
5338 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5339
Beverly92c25682018-01-22 09:27:19 -05005340 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5341 // CATEGORY: SETTINGS
5342 // OS: P
5343 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5344
Mike Digmanc94759d2018-01-23 11:01:21 -08005345 // ACTION: Rotate suggestion accepted in rotation locked mode
5346 // CATEGORY: GLOBAL_SYSTEM_UI
5347 // OS: P
5348 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5349
5350 // OPEN: Rotation suggestion shown in rotation locked mode
5351 // CATEGORY: GLOBAL_SYSTEM_UI
5352 // OS: P
5353 ROTATION_SUGGESTION_SHOWN = 1288;
5354
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005355 // An autofill service was bound using an unofficial(but still supported) permission.
5356 // Package: Package of the autofill service
5357 // OS: P
5358 AUTOFILL_INVALID_PERMISSION = 1289;
5359
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005360 // OPEN: QS Alarm tile shown
5361 // ACTION: QS Alarm tile tapped
5362 // SUBTYPE: 0 is off, 1 is on
5363 // CATEGORY: QUICK_SETTINGS
5364 // OS: P
5365 QS_ALARM = 1290;
5366
Jerry Zhang79147972018-01-31 16:04:06 -08005367 // OPEN: Settings->Connected Devices->USB->(click on details link)
5368 // CATEGORY: SETTINGS
5369 // OS: P
5370 USB_DEVICE_DETAILS = 1291;
5371
Michael Wright98bdc512018-01-26 19:15:57 +00005372 // OPEN: Settings > Accessibility > Vibration
5373 // CATEGORY: SETTINGS
5374 // OS: P
5375 ACCESSIBILITY_VIBRATION = 1292;
5376
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00005377 // OPEN: Settings > Accessibility > Vibration > Notification vibration
Michael Wright98bdc512018-01-26 19:15:57 +00005378 // CATEGORY: SETTINGS
5379 // OS: P
5380 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5381
5382 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5383 // CATEGORY: SETTINGS
5384 // OS: P
5385 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5386
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005387 // OPEN: Volume panel > output chooser dialog
5388 // OS: P
5389 OUTPUT_CHOOSER = 1295;
5390
5391 // Action: Volume panel > output chooser dialog > tap on device
5392 // OS: P
5393 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5394
5395 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5396 // OS: P
5397 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5398
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005399 // OPEN: TV Settings > Home theater control
5400 // OS: P
5401 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5402
5403 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5404 // OS: P
5405 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5406
5407 // OPEN: TV Settings > Device
5408 // OS: P
5409 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5410
5411 // OPEN: TV Settings > Network > Proxy settings
5412 // OS: P
5413 DIALOG_TV_NETWORK_PROXY = 1301;
5414
Makoto Onuki698f7a02018-02-13 15:02:23 -08005415 // Events for battery saver turning on/off and/or the interactive state changes.
5416 // OS: P
5417 BATTERY_SAVER = 1302;
5418
5419 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5420 // OS: P
5421 FIELD_INTERACTIVE = 1303;
5422
5423 // Time spent in milliseconds in the current mode.
5424 // OS: P
5425 FIELD_DURATION_MILLIS = 1304;
5426
Chris Wren8f7a1442018-05-14 17:16:31 -04005427 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005428 // OS: P
5429 FIELD_START_BATTERY_UA = 1305;
5430
Chris Wren8f7a1442018-05-14 17:16:31 -04005431 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005432 // OS: P
5433 FIELD_END_BATTERY_UA = 1306;
5434
5435 // Battery level in % (0-100) when the current "mode" started.
5436 // OS: P
5437 FIELD_START_BATTERY_PERCENT = 1307;
5438
5439 // Battery level in % (0-100) when this event was created.
5440 // OS: P
5441 FIELD_END_BATTERY_PERCENT = 1308;
5442
Christine Frankse257e452018-01-18 11:06:54 -08005443 // ACTION: Settings > Display > Night Light
Christine Franks0ada2772019-02-25 13:54:57 -08005444 // SUBTYPE: com.android.server.display.color.ColorDisplayService.AutoMode value
Christine Frankse257e452018-01-18 11:06:54 -08005445 // CATEGORY: SETTINGS
5446 // OS: P
5447 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5448
5449 // ACTION: Settings > Display > Night Light
5450 // CATEGORY: SETTINGS
5451 // SUBTYPE: 0 is starting time, 1 is ending time
5452 // OS: P
5453 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5454
5455 // FIELD: Current mode corresponding to a QS tile
5456 // CATEGORY: QUICK SETTINGS
5457 // OS: P
5458 FIELD_QS_MODE = 1311;
5459
Jerry Zhang92306d82018-02-12 18:12:41 -08005460 // OPEN: Settings->Developer Options->Default USB
5461 // CATEGORY: SETTINGS
5462 // OS: P
5463 USB_DEFAULT = 1312;
5464
Jan Althaus31efdc32018-02-19 22:23:13 +01005465 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5466 // OS: P
5467 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5468
5469 // FIELD: milliseconds spent generating links.
5470 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5471 // OS: P
5472 FIELD_LINKIFY_LATENCY = 1314;
5473
5474 // FIELD: length of the input text in characters.
5475 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5476 // OS: P
5477 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5478
5479 // FIELD: number of links detected.
5480 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5481 // OS: P
5482 FIELD_LINKIFY_NUM_LINKS = 1316;
5483
5484 // FIELD: length of all links in characters.
5485 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5486 // OS: P
5487 FIELD_LINKIFY_LINK_LENGTH = 1317;
5488
5489 // FIELD: the type of entity the stats are for.
5490 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5491 // OS: P
5492 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5493
5494 // FIELD: a random uid for a single call to generateLinks
5495 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5496 // OS: P
5497 FIELD_LINKIFY_CALL_ID = 1319;
5498
Calin Juravle759fbda2018-02-20 19:52:30 +00005499 // FIELD: The compiler filter used when when optimizing the package.
5500 // Logged together with app transition events.
5501 // OS: P
5502 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5503
5504 // FIELD: The reason for optimizing the package.
5505 // Logged together with app transition events.
5506 // OS: P
5507 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5508
Emilian Peev6bf0a552018-02-10 02:15:49 +00005509 // FIELD: The camera API level used.
5510 // CATEGORY: CAMERA
5511 // OS: P
5512 FIELD_CAMERA_API_LEVEL = 1322;
5513
jackqdyulei73e6b342018-02-26 14:44:50 -08005514 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5515 // CATEGORY: SETTINGS
5516 // OS: P
5517 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5518
jackqdyuleibb60ea22018-02-26 17:18:12 -08005519 // OPEN: Settings > Battery > Battery tip
5520 // CATEGORY: SETTINGS
5521 // OS: P
5522 ACTION_BATTERY_TIP_SHOWN = 1324;
5523
Maggieb9d76322018-02-16 18:00:30 -08005524 // OPEN: Settings > Security & Location > Location > See all
5525 // CATEGORY: SETTINGS
5526 // OS: P
5527 RECENT_LOCATION_REQUESTS_ALL = 1325;
5528
Evan Laird404a85c2018-02-28 15:31:29 -05005529 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5530 // CATEGORY: GLOBAL_SYSTEM_UI
5531 // OS: P
5532 FIELD_GESTURE_X_PERCENT = 1326;
5533
5534 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5535 // CATEGORY: GLOBAL_SYSTEM_UI
5536 // OS: P
5537 FIELD_GESTURE_Y_PERCENT = 1327;
5538
5539 // ACTION: Expand the notification panel while unlocked
5540 // CATEGORY: GLOBAL_SYSTEM_UI
5541 // OS: P
5542 ACTION_PANEL_VIEW_EXPAND = 1328;
5543
Evan Laird404a85c2018-02-28 15:31:29 -05005544 // FIELD: Rotation of the device
5545 // CATEGORY: GLOBAL_SYSTEM_UI
5546 // OS: P
5547 FIELD_DEVICE_ROTATION = 1329;
5548
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005549 // OPEN: TV Settings > Inputs > Input Options
5550 // CATEGORY: SETTINGS
5551 // OS: P
5552 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5553
5554 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5555 // CATEGORY: SETTINGS
5556 // OS: P
5557 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5558
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005559 // ACTION: DND Settings > What to block > full screen intents
5560 // SUBTYPE: false is allowed, true is blocked
5561 // CATEGORY: SETTINGS
5562 // OS: 6.0
5563 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5564
5565 // ACTION: DND Settings > What to block
5566 // SUBTYPE: false is allowed, true is blocked
5567 // OS: P
5568 ACTION_ZEN_BLOCK_LIGHT = 1333;
5569
5570 // ACTION: DND Settings > What to block
5571 // SUBTYPE: false is allowed, true is blocked
5572 // OS: P
5573 ACTION_ZEN_BLOCK_PEEK = 1334;
5574
5575 // ACTION: DND Settings > What to block
5576 // SUBTYPE: false is allowed, true is blocked
5577 // OS: P
5578 ACTION_ZEN_BLOCK_STATUS = 1335;
5579
5580 // ACTION: DND Settings > What to block
5581 // SUBTYPE: false is allowed, true is blocked
5582 // OS: P
5583 ACTION_ZEN_BLOCK_BADGE = 1336;
5584
5585 // ACTION: DND Settings > What to block
5586 // SUBTYPE: false is allowed, true is blocked
5587 // OS: P
5588 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5589
5590 // ACTION: DND Settings > What to block
5591 // SUBTYPE: false is allowed, true is blocked
5592 // OS: P
5593 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5594
5595 // OPEN: DND Settings > What to block
5596 // OS: P
5597 ZEN_WHAT_TO_BLOCK = 1339;
5598
Beverly8fe33ba2018-03-05 14:32:35 -05005599 // ACTION: DND Settings > Priority only allows > System toggle
5600 // SUBTYPE: 0 is off, 1 is on
5601 // CATEGORY: SETTINGS
5602 // OS: P
5603 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5604
5605 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5606 // CATEGORY: SETTINGS
5607 // OS: P
5608 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5609
5610 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5611 // CATEGORY: SETTINGS
5612 // OS: P
5613 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5614
5615 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5616 // CATEGORY: SETTINGS
5617 // OS: P
5618 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5619
5620 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5621 // CATEGORY: SETTINGS
5622 // OS: P
5623 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5624
Julia Reynolds8dff1862018-03-06 14:20:40 -05005625 // Notification Guts, active app ops variant
5626 // OS: P
5627 APP_OPS_GUTS = 1345;
5628
5629 // ACTION: Notification Guts, active app ops variant > Settings button
5630 // OS: P
5631 ACTION_OPS_GUTS_SETTINGS = 1346;
5632
Lei Yu5674d2d2018-03-08 10:19:43 -08005633 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5634 // OS: P
5635 ACTION_APP_RESTRICTION_TIP = 1347;
5636
5637 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5638 // OS: P
5639 ACTION_HIGH_USAGE_TIP = 1348;
5640
Lei Yue93e5602018-03-08 12:15:38 -08005641 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5642 // OS: P
5643 ACTION_SUMMARY_TIP = 1349;
5644
5645 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5646 // OS: P
5647 ACTION_SMART_BATTERY_TIP = 1350;
5648
5649 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5650 // OS: P
5651 ACTION_EARLY_WARNING_TIP = 1351;
5652
5653 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5654 // OS: P
5655 ACTION_LOW_BATTERY_TIP = 1352;
5656
5657 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5658 // OS: P
5659 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5660
5661 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5662 // OS: P
5663 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5664
Victor Chang76817b82018-03-09 17:22:52 +00005665 // OPEN: Settings > Date & time > Select time zone -> Region
5666 // CATEGORY: SETTINGS
5667 // OS: P
5668 SETTINGS_ZONE_PICKER_REGION = 1355;
5669
5670 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5671 // CATEGORY: SETTINGS
5672 // OS: P
5673 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5674
5675 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5676 // CATEGORY: SETTINGS
5677 // OS: P
5678 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5679
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005680 // Action: notification shade > manage notifications
5681 // OS: P
5682 ACTION_MANAGE_NOTIFICATIONS = 1358;
5683
Chris Wrenaa571c62018-03-14 12:16:04 -04005684 // This value should never appear in log outputs - it is reserved for
5685 // internal platform metrics use.
5686 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5687
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005688 // OPEN: Settings > Gestures > Prevent Ringing
5689 // OS: P
5690 SETTINGS_PREVENT_RINGING = 1360;
5691
Lei Yue92285a2018-03-12 11:28:40 -07005692 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5693 // CATEGORY: SETTINGS
5694 // OS: P
5695 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5696
5697 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5698 // CATEGORY: SETTINGS
5699 // OS: P
5700 ACTION_TIP_RESTRICT_APP = 1362;
5701
5702 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5703 // CATEGORY: SETTINGS
5704 // OS: P
5705 ACTION_TIP_UNRESTRICT_APP = 1363;
5706
5707 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5708 // CATEGORY: SETTINGS
5709 // OS: P
5710 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5711
5712 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5713 // CATEGORY: SETTINGS
5714 // OS: P
5715 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5716
5717 // FIELD: type of anomaly in settings app
5718 // CATEGORY: SETTINGS
5719 // OS: P
5720 FIELD_ANOMALY_TYPE = 1366;
5721
Lei Yu4f704772018-03-20 10:51:58 -07005722 // ACTION: Settings > Anomaly receiver > Anomaly received
5723 // CATEGORY: SETTINGS
5724 // OS: P
5725 ACTION_ANOMALY_TRIGGERED = 1367;
5726
Fan Zhanga85b4872018-03-26 16:52:53 -07005727 // ACTION: Settings > Condition > Device muted
5728 // CATEGORY: SETTINGS
5729 // OS: P
5730 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5731
5732 // ACTION: Settings > Condition > Device vibrate
5733 // CATEGORY: SETTINGS
5734 // OS: P
5735 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5736
hughchen226196b2018-03-27 12:04:59 +08005737 // OPEN: Settings > Connected devices > previously connected devices
5738 // CATEGORY: SETTINGS
5739 // OS: P
5740 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005741
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005742 // ACTION: A Settings Slice is requested
5743 // CATEGORY: SETTINGS
5744 // OS: P
5745 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5746
5747 // ACTION: A Settings Slice is updated with new value
5748 // CATEGORY: SETTINGS
5749 // OS: P
5750 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5751
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005752 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5753 // note: Wifi Scanning must be off for this dialog to show
5754 // CATEGORY: SETTINGS
5755 // OS: P
5756 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5757
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005758 // OPEN: Settings > System > Gestures > Swipe up gesture
5759 // CATEGORY: SETTINGS
5760 // OS: P
5761 SETTINGS_GESTURE_SWIPE_UP = 1374;
5762
Jeff Sharkey46270712018-04-02 09:53:21 -06005763 // OPEN: Settings > Storage > Dialog to format a storage volume
5764 // CATEGORY: SETTINGS
5765 // OS: P
5766 DIALOG_VOLUME_FORMAT = 1375;
5767
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005768 // OPEN: DND onboarding activity > screen on checkbox
5769 // CATEGORY: SETTINGS
5770 // OS: P
5771 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5772
5773 // OPEN: DND onboarding activity > screen off checkbox
5774 // CATEGORY: SETTINGS
5775 // OS: P
5776 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5777
5778 // OPEN: DND onboarding activity > Ok button
5779 // CATEGORY: SETTINGS
5780 // OS: P
5781 ACTION_ZEN_ONBOARDING_OK = 1378;
5782
5783 // OPEN: DND onboarding activity > Settings link
5784 // CATEGORY: SETTINGS
5785 // OS: P
5786 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5787
5788 // OPEN: DND onboarding activity
5789 // CATEGORY: SETTINGS
5790 // OS: P
5791 SETTINGS_ZEN_ONBOARDING = 1380;
5792
Fan Zhanga496b122018-04-10 12:57:56 -07005793 // OPEN: Settings > Display > Auto brightness
5794 // CATEGORY: SETTINGS
5795 // OS: P
5796 SETTINGS_AUTO_BRIGHTNESS = 1381;
5797
Kenny Guy23991102018-04-05 21:18:38 +01005798 // OPEN: Smart replies in a notification seen at least once
5799 // CATEGORY: NOTIFICATION
5800 // PACKAGE: App that posted the notification
5801 // SUBTYPE: Number of smart replies.
5802 // OS: P
5803 SMART_REPLY_VISIBLE = 1382;
5804
5805 // ACTION: Smart reply in a notification clicked.
5806 // CATEGORY: NOTIFICATION
5807 // PACKAGE: App that posted the notification
5808 // SUBTYPE: Index of smart reply clicked.
5809 // OS: P
5810 SMART_REPLY_ACTION = 1383;
5811
5812 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5813 // OS: P
5814 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5815
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005816 // Volume dialog > ringer toggle
5817 // OS: P
5818 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5819
5820 // Volume dialog > settings button
5821 // OS: P
5822 ACTION_VOLUME_SETTINGS = 1386;
5823
Lei Yufc59a572018-04-10 10:52:08 -07005824 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5825 // CATEGORY: SETTINGS
5826 // OS: P
5827 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005828
Lei Yu97a13212018-04-11 15:45:31 -07005829 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5830 // CATEGORY: SETTINGS
5831 // OS: P
5832 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5833
5834 // FIELD: the version code of an app
5835 // CATEGORY: SETTINGS
5836 // OS: P
5837 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005838
Salvador Martinez8e899682018-04-04 14:42:59 -07005839 // OPEN: Settings > Connected Devices > Bluetooth
5840 // CATEGORY: SETTINGS
5841 // OS: P
5842 BLUETOOTH_FRAGMENT = 1390;
5843
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005844 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5845 // an app uses a hidden API.
5846 ACTION_HIDDEN_API_ACCESSED = 1391;
5847
5848 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5849 // access; see enum HiddenApiAccessMethod
5850 // OS: P
5851 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5852
5853 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5854 // denied to the API.
5855 // OS: P
5856 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5857
5858 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5859 // API that was accessed.
5860 // OS: P
5861 FIELD_HIDDEN_API_SIGNATURE = 1394;
5862
Chris Wren8f7a1442018-05-14 17:16:31 -04005863 // The number of items in the shade when this notification event was logged.
5864 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005865 NOTIFICATION_SHADE_COUNT = 1395;
5866
Julia Reynolds5da746a2018-04-23 09:41:21 -04005867 // ACTION: DND Settings > What to block
5868 // OS: P
5869 ACTION_ZEN_SOUND_ONLY = 1396;
5870
5871 // ACTION: DND Settings > Notifications
5872 // OS: P
5873 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5874
5875 // ACTION: DND Settings > Notifications
5876 // OS: P
5877 ACTION_ZEN_SHOW_CUSTOM = 1398;
5878
5879 // ACTION: DND Settings > Notifications
5880 // OS: P
5881 ACTION_ZEN_CUSTOM = 1399;
5882
5883 // Screen: DND Settings > Notifications
5884 // OS: P
5885 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5886
Chris Wrend63dffd2018-04-19 11:12:46 -04005887 // An event category for slices.
5888 // OPEN: Slice became visible.
5889 // CLOSE: Slice became invisible.
5890 // ACTION: Slice was tapped.
5891 SLICE = 1401;
5892
5893 // The authority part of the slice URI
5894 FIELD_SLICE_AUTHORITY = 1402;
5895
5896 // The path part of the slice URI
5897 FIELD_SLICE_PATH = 1403;
5898
5899 // The authority part of the subslice URI
5900 FIELD_SUBSLICE_AUTHORITY = 1404;
5901
5902 // The path part of the subslice URI
5903 FIELD_SUBSLICE_PATH = 1405;
5904
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005905 // OPEN: DND onboarding activity > don't update button
5906 // CATEGORY: SETTINGS
5907 // OS: P
5908 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5909
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005910 // ACTION: Storage initialization wizard initialization choice of external/portable
5911 // CATEGORY: SETTINGS
5912 // OS: P
5913 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5914
5915 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5916 // CATEGORY: SETTINGS
5917 // OS: P
5918 ACTION_STORAGE_INIT_INTERNAL = 1408;
5919
5920 // ACTION: Storage initialization wizard benchmark fast choice of continue
5921 // CATEGORY: SETTINGS
5922 // OS: P
5923 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5924
5925 // ACTION: Storage initialization wizard benchmark slow choice of continue
5926 // CATEGORY: SETTINGS
5927 // OS: P
5928 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5929
5930 // ACTION: Storage initialization wizard benchmark slow choice of abort
5931 // CATEGORY: SETTINGS
5932 // OS: P
5933 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5934
5935 // ACTION: Storage initialization wizard migration choice of now
5936 // CATEGORY: SETTINGS
5937 // OS: P
5938 ACTION_STORAGE_MIGRATE_NOW = 1412;
5939
5940 // ACTION: Storage initialization wizard migration choice of later
5941 // CATEGORY: SETTINGS
5942 // OS: P
5943 ACTION_STORAGE_MIGRATE_LATER = 1413;
5944
Felipe Leme11166522018-05-07 10:18:47 -07005945 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005946 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005947 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5948
hughchen2bde4092018-05-10 18:04:25 +08005949 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005950 // CATEGORY: SETTINGS
5951 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005952 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5953
5954 // OPEN: Settings > Sound > Switch hfp devices dialog
5955 // CATEGORY: SETTINGS
5956 // OS: P
5957 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005958
Beverlyc4eb9342018-05-10 15:46:03 -04005959 // ACTION: User has started or ended charging
5960 // Type TYPE_DISMISS: Charging has ended
5961 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5962 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5963 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5964 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5965 // Tag FIELD_PLUG_TYPE: Charging plug type
5966 ACTION_CHARGE = 1417;
5967
5968 // Tag used to determine battery level when device started charging
5969 FIELD_BATTERY_LEVEL_START = 1418;
5970
5971 // Tag used to determine battery level when device ended charging
5972 FIELD_BATTERY_LEVEL_END = 1419;
5973
5974 // Tag used to determine length of charging
5975 FIELD_CHARGING_DURATION_MILLIS = 1420;
5976
5977 // Tag used to determine what type of charging was started/ended
5978 // 1 = Plugged AC
5979 // 2 = Plugged USB
Beverlyc47ba512018-09-24 14:02:23 -05005980 // 4 = Wireless
Beverlyc4eb9342018-05-10 15:46:03 -04005981 FIELD_PLUG_TYPE = 1421;
5982
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005983 // ACTION: USB-C Connector connected.
5984 // CATEGORY: OTHER
5985 // OS: P
5986 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5987
5988 // ACTION: USB-C Connector disconnected.
5989 // CATEGORY: OTHER
5990 // OS: P
5991 // uses FIELD_DURATION_MILLIS for connected duration
5992 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5993
5994 // ACTION: USB-C Audio device connected
5995 // CATEGORY: OTHER
5996 // OS: P
5997 ACTION_USB_AUDIO_CONNECTED = 1424;
5998
5999 // FIELD: VIDPID of connected USB Audio device
6000 // CATEGORY: OTHER
6001 // OS: P
6002 FIELD_USB_AUDIO_VIDPID = 1425;
6003
6004 // ACTION: USB-C Audio device disconnected
6005 // CATEGORY: OTHER
6006 // OS: P
6007 // use FIELD_DURATION_MILLIS for time
6008 ACTION_USB_AUDIO_DISCONNECTED = 1426;
6009
6010 // ACTION: Hardware failure event
6011 // CATEGORY: OTHER
6012 // OS: P
6013 ACTION_HARDWARE_FAILED = 1427;
6014
6015 // FIELD: Hardware failure category
6016 // CATEGORY: OTHER
6017 // OS: P
6018 // Uses enum HardwareType
6019 FIELD_HARDWARE_TYPE = 1428;
6020
6021 // FIELD: Hardware failure category
6022 // CATEGORY: OTHER
6023 // OS: P
6024 // Uses enum HardwareFailureCode
6025 FIELD_HARDWARE_FAILURE_CODE = 1429;
6026
6027 // ACTION: Physical drop event
6028 // CATEGORY: OTHER
6029 // OS: P
6030 // use FIELD_DURATION_MILLIS for time
6031 ACTION_PHYSICAL_DROP = 1430;
6032
6033 // FIELD: Confidence in detection of drop, in integer percentage.
6034 // CATEGORY: OTHER
6035 // OS: P
6036 FIELD_CONFIDENCE_PERCENT = 1431;
6037
6038 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
6039 // CATEGORY: OTHER
6040 // OS: P
6041 FIELD_ACCEL_MILLI_G = 1432;
6042
6043 // ACTION: Battery health snapshot
6044 // CATEGORY: OTHER
6045 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006046 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006047 ACTION_BATTERY_HEALTH = 1433;
6048
6049 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
6050 // CATEGORY: OTHER
6051 // OS: P
6052 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
6053
Andrew Chantc03bc632018-05-18 10:52:00 -07006054 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006055 // CATEGORY: OTHER
6056 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006057 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006058
Andrew Chantc03bc632018-05-18 10:52:00 -07006059 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006060 // CATEGORY: OTHER
6061 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006062 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006063
Andrew Chantc03bc632018-05-18 10:52:00 -07006064 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006065 // CATEGORY: OTHER
6066 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006067 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006068
Andrew Chantc03bc632018-05-18 10:52:00 -07006069 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006070 // fractional threshold of full capacity.
6071 // CATEGORY: OTHER
6072 // OS: P
6073 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6074
Andrew Chantc03bc632018-05-18 10:52:00 -07006075 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6076 // beyond a fractional threshold of full
6077 // capacity. A comma-separated string of
6078 // buckets. If there are eight buckets,
6079 // each bucket represents charging to n/8
6080 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006081 // CATEGORY: OTHER
6082 // OS: P
6083 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6084
Beverly019d6f62018-05-15 16:16:54 -04006085 // ACTION: Hush gesture - volume up + power button
6086 // CATEGORY: GLOBAL_SYSTEM_UI
6087 // OS: P
6088 ACTION_HUSH_GESTURE = 1440;
6089
Petri Gynther778facb2018-05-18 22:59:50 -07006090 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6091 // offload
6092 // CATEGORY: SETTINGS
6093 // OS: P
6094 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6095
Andrew Chantc03bc632018-05-18 10:52:00 -07006096 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6097 // reported aggregated per day when > 0.
6098 // CATEGORY: OTHER
6099 // OS: P
6100 ACTION_SLOW_IO = 1442;
6101
6102 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6103 // The value is an integer from the enum IoOperation.
6104 // CATEGORY: OTHER
6105 // OS: P
6106 FIELD_IO_OPERATION_TYPE = 1443;
6107
6108 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6109 // over the past 24hr (reported only if > 0).
6110 // CATEGORY: OTHER
6111 // OS: P
6112 FIELD_IO_OPERATION_COUNT = 1444;
6113
6114 // ACTION: Speaker Imedance - last recorded speaker impedance.
6115 // reported max once per 24hr.
6116 // CATEGORY: OTHER
6117 // OS: P
6118 ACTION_SPEAKER_IMPEDANCE = 1445;
6119
6120 // FIELD: Speaker Impedance in milliohms.
6121 // CATEGORY: OTHER
6122 // OS: P
6123 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6124
6125 // FIELD: Speaker Location - identifies one of several speakers on a device.
6126 // CATEGORY: OTHER
6127 // OS: P
6128 FIELD_SPEAKER_LOCATION = 1447;
6129
6130 // FIELD: Instantaneous battery resistance in microohms.
6131 // CATEGORY: OTHER
6132 // OS: P
6133 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6134
6135 // FIELD: Instantaneous battery current - in microamps.
6136 // CATEGORY: OTHER
6137 // OS: P
6138 FIELD_BATTERY_CURRENT_UA = 1449;
6139
6140 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6141 // board.
6142 // CATEGORY: OTHER
6143 // OS: P
6144 FIELD_HARDWARE_LOCATION = 1450;
6145
6146 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6147 // action is logged after the subsequent boot.
6148 // CATEGORY: OTHER
6149 // OS: P
6150 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6151
Felipe Leme21fb1a32018-05-21 11:18:46 -07006152 // FIELD: Flags used on autofill-related metrics
6153 // OS: P
6154 FIELD_AUTOFILL_FLAGS = 1452;
6155
6156 // Tag used when the service returned an authenticated dataset or response.
6157 // Used to replace the following individual metrics, which now are logged as the value of this
6158 // field in the AUTOFILL_REQUEST metric:
6159 // - AUTOFILL_AUTHENTICATED;
6160 // - AUTOFILL_DATASET_AUTHENTICATED
6161 // - AUTOFILL_INVALID_AUTHENTICATION
6162 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6163 // OS: P
6164 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6165
6166 // FIELD: Index of the autofill request inside of a session.
6167 // OS: P
6168 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6169
6170 // FIELD: Number of requests made to an autofill service during a session.
6171 // OS: P
6172 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6173
Felipe Leme833c99b2018-05-24 10:41:48 -07006174 // FIELD: Id of the autofill session associated with this metric.
6175 // OS: P
6176 FIELD_AUTOFILL_SESSION_ID = 1456;
6177
Sherry Huangce02ed32019-01-17 20:37:29 +08006178 // FIELD: Device USB overheat alarm trigger.
6179 // CATEGORY: GLOBAL_SYSTEM_UI
6180 // OS: P
6181 POWER_OVERHEAT_ALARM = 1457;
6182
Chris Wren77781d32016-01-11 14:49:26 -05006183 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006184
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006185 // Time since this notification last interrupted (visibly or audible) the user
6186 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6187
6188 // OPEN: Notification interrupted the user, either audibly or visually.
6189 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6190 // CATEGORY: NOTIFICATION
6191 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006192
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006193 // OPEN: Settings
6194 // CATEGORY: SETTINGS
6195 // OS: Q
6196 SETTINGS_HOMEPAGE = 1502;
6197
Fan Zhang0b6bc412018-06-21 17:19:02 -07006198 // OPEN: Settings > Create shortcut(widget)
6199 // CATEGORY: SETTINGS
6200 // OS: Q
6201 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006202
6203 // ACTION: Authenticate using fingerprint
6204 // CATEGORY: SETTINGS
6205 // OS: Q
6206 ACTION_FACE_AUTH = 1504;
6207
6208 // ACTION: Add fingerprint > Enroll fingerprint
6209 // CATEGORY: SETTINGS
6210 // OS: Q
6211 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006212
6213 // OPEN: Face Enroll introduction
6214 // CATEGORY: SETTINGS
6215 // OS: Q
6216 FACE_ENROLL_INTRO = 1506;
6217
6218 // OPEN: Face Enroll introduction
6219 // CATEGORY: SETTINGS
6220 // OS: Q
6221 FACE_ENROLL_ENROLLING = 1507;
6222
6223 // OPEN: Face Enroll introduction
6224 // CATEGORY: SETTINGS
6225 // OS: Q
6226 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006227
6228 // OPEN: Face Enroll sidecar
6229 // CATEGORY: SETTINGS
6230 // OS: Q
6231 FACE_ENROLL_SIDECAR = 1509;
6232
6233 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006234 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006235 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006236
6237 // OPEN: Settings > Security > Face
6238 // CATEGORY: SETTINGS
6239 // OS: Q
6240 FACE = 1511;
6241
timhypeng8c6885d2018-07-30 16:44:36 +08006242 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6243 // CATEGORY: SETTINGS
6244 // OS: Q
6245 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6246
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006247 // ACTION: Activity start
6248 // CATEGORY: OTHER
6249 // OS: Q (will also ship in PQ1A)
6250 ACTION_ACTIVITY_START = 1513;
6251
6252 // Tagged data for ACTION_ACTIVITY_START.
6253 // FIELD: Calling UID
6254 // CATEGORY: OTHER
6255 // OS: Q (will also ship in PQ1A)
6256 FIELD_CALLING_UID = 1514;
6257
6258 // Tagged data for ACTION_ACTIVITY_START.
6259 // FIELD: Calling package name
6260 // CATEGORY: OTHER
6261 // OS: Q (will also ship in PQ1A)
6262 FIELD_CALLING_PACKAGE_NAME = 1515;
6263
6264 // Tagged data for ACTION_ACTIVITY_START.
6265 // FIELD: Calling UID proc state
6266 // CATEGORY: OTHER
6267 // OS: Q (will also ship in PQ1A)
6268 FIELD_CALLING_UID_PROC_STATE = 1516;
6269
6270 // Tagged data for ACTION_ACTIVITY_START.
6271 // FIELD: Calling UID has any visible window
6272 // CATEGORY: OTHER
6273 // OS: Q (will also ship in PQ1A)
6274 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6275
6276 // Tagged data for ACTION_ACTIVITY_START.
6277 // FIELD: Real calling UID
6278 // CATEGORY: OTHER
6279 // OS: Q (will also ship in PQ1A)
6280 FIELD_REAL_CALLING_UID = 1518;
6281
6282 // Tagged data for ACTION_ACTIVITY_START.
6283 // FIELD: Real calling UID proc state
6284 // CATEGORY: OTHER
6285 // OS: Q (will also ship in PQ1A)
6286 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6287
6288 // Tagged data for ACTION_ACTIVITY_START.
6289 // FIELD: Real calling UID has any visible window
6290 // CATEGORY: OTHER
6291 // OS: Q (will also ship in PQ1A)
6292 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6293
6294 // Tagged data for ACTION_ACTIVITY_START.
6295 // FIELD: Target UID
6296 // CATEGORY: OTHER
6297 // OS: Q (will also ship in PQ1A)
6298 FIELD_TARGET_UID = 1521;
6299
6300 // Tagged data for ACTION_ACTIVITY_START.
6301 // FIELD: Target UID package name
6302 // CATEGORY: OTHER
6303 // OS: Q (will also ship in PQ1A)
6304 FIELD_TARGET_PACKAGE_NAME = 1522;
6305
6306 // Tagged data for ACTION_ACTIVITY_START.
6307 // FIELD: Target UID proc state
6308 // CATEGORY: OTHER
6309 // OS: Q (will also ship in PQ1A)
6310 FIELD_TARGET_UID_PROC_STATE = 1523;
6311
6312 // Tagged data for ACTION_ACTIVITY_START.
6313 // FIELD: Target UID has any visible window
6314 // CATEGORY: OTHER
6315 // OS: Q (will also ship in PQ1A)
6316 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6317
6318 // Tagged data for ACTION_ACTIVITY_START.
6319 // FIELD: Target doze whitelist tag
6320 // CATEGORY: OTHER
6321 // OS: Q (will also ship in PQ1A)
6322 FIELD_TARGET_WHITELIST_TAG = 1525;
6323
6324 // Tagged data for ACTION_ACTIVITY_START.
6325 // FIELD: Target short component name
6326 // CATEGORY: OTHER
6327 // OS: Q (will also ship in PQ1A)
6328 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6329
6330 // Tagged data for ACTION_ACTIVITY_START.
6331 // FIELD: Coming from pending intent
6332 // CATEGORY: OTHER
6333 // OS: Q (will also ship in PQ1A)
6334 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6335
6336 // Tagged data for ACTION_ACTIVITY_START.
6337 // FIELD: Intent action
6338 // CATEGORY: OTHER
6339 // OS: Q (will also ship in PQ1A)
6340 FIELD_INTENT_ACTION = 1528;
6341
6342 // Tagged data for ACTION_ACTIVITY_START.
6343 // FIELD: Caller app process record process name
6344 // CATEGORY: OTHER
6345 // OS: Q (will also ship in PQ1A)
6346 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6347
6348 // Tagged data for ACTION_ACTIVITY_START.
6349 // FIELD: Caller app process record current proc state
6350 // CATEGORY: OTHER
6351 // OS: Q (will also ship in PQ1A)
6352 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6353
6354 // Tagged data for ACTION_ACTIVITY_START.
6355 // FIELD: Caller app process record has client activities
6356 // CATEGORY: OTHER
6357 // OS: Q (will also ship in PQ1A)
6358 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6359
6360 // Tagged data for ACTION_ACTIVITY_START.
6361 // FIELD: Caller app process record has foreground services
6362 // CATEGORY: OTHER
6363 // OS: Q (will also ship in PQ1A)
6364 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6365
6366 // Tagged data for ACTION_ACTIVITY_START.
6367 // FIELD: Caller app process record has foreground activities
6368 // CATEGORY: OTHER
6369 // OS: Q (will also ship in PQ1A)
6370 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6371
6372 // Tagged data for ACTION_ACTIVITY_START.
6373 // FIELD: Caller app process record has top UI
6374 // CATEGORY: OTHER
6375 // OS: Q (will also ship in PQ1A)
6376 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6377
6378 // Tagged data for ACTION_ACTIVITY_START.
6379 // FIELD: Caller app process record has overlay UI
6380 // CATEGORY: OTHER
6381 // OS: Q (will also ship in PQ1A)
6382 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6383
6384 // Tagged data for ACTION_ACTIVITY_START.
6385 // FIELD: Caller app process record pending UI clean
6386 // CATEGORY: OTHER
6387 // OS: Q (will also ship in PQ1A)
6388 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6389
6390 // Tagged data for ACTION_ACTIVITY_START.
6391 // FIELD: Millis since caller app's process record last interaction event
6392 // CATEGORY: OTHER
6393 // OS: Q (will also ship in PQ1A)
6394 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6395
6396 // Tagged data for ACTION_ACTIVITY_START.
6397 // FIELD: Millis since caller app's process record fg interaction
6398 // CATEGORY: OTHER
6399 // OS: Q (will also ship in PQ1A)
6400 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6401
6402 // Tagged data for ACTION_ACTIVITY_START.
6403 // FIELD: Millis since caller app's process record last became unimportant
6404 // CATEGORY: OTHER
6405 // OS: Q (will also ship in PQ1A)
6406 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6407
6408 // Tagged data for ACTION_ACTIVITY_START.
6409 // FIELD: Activity record launch mode
6410 // CATEGORY: OTHER
6411 // OS: Q (will also ship in PQ1A)
6412 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6413
6414 // Tagged data for ACTION_ACTIVITY_START.
6415 // FIELD: Activity record target activity
6416 // CATEGORY: OTHER
6417 // OS: Q (will also ship in PQ1A)
6418 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6419
6420 // Tagged data for ACTION_ACTIVITY_START.
6421 // FIELD: Activity record flags
6422 // CATEGORY: OTHER
6423 // OS: Q (will also ship in PQ1A)
6424 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6425
6426 // Tagged data for ACTION_ACTIVITY_START.
6427 // FIELD: Activity record real activity
6428 // CATEGORY: OTHER
6429 // OS: Q (will also ship in PQ1A)
6430 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6431
6432 // Tagged data for ACTION_ACTIVITY_START.
6433 // FIELD: Activity record short component name
6434 // CATEGORY: OTHER
6435 // OS: Q (will also ship in PQ1A)
6436 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6437
6438 // Tagged data for ACTION_ACTIVITY_START.
6439 // FIELD: Activity record process name
6440 // CATEGORY: OTHER
6441 // OS: Q (will also ship in PQ1A)
6442 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6443
6444 // Tagged data for ACTION_ACTIVITY_START.
6445 // FIELD: Activity record is fullscreen
6446 // CATEGORY: OTHER
6447 // OS: Q (will also ship in PQ1A)
6448 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6449
6450 // Tagged data for ACTION_ACTIVITY_START.
6451 // FIELD: Activity record is no display
6452 // CATEGORY: OTHER
6453 // OS: Q (will also ship in PQ1A)
6454 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6455
6456 // Tagged data for ACTION_ACTIVITY_START.
6457 // FIELD: Millis since activity was last visible
6458 // CATEGORY: OTHER
6459 // OS: Q (will also ship in PQ1A)
6460 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6461
6462 // Tagged data for ACTION_ACTIVITY_START.
6463 // FIELD: Activity record's resultTo packageName
6464 // CATEGORY: OTHER
6465 // OS: Q (will also ship in PQ1A)
6466 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6467
6468 // Tagged data for ACTION_ACTIVITY_START.
6469 // FIELD: Activity record's resultTo shortComponentName
6470 // CATEGORY: OTHER
6471 // OS: Q (will also ship in PQ1A)
6472 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6473
6474 // Tagged data for ACTION_ACTIVITY_START.
6475 // FIELD: Activity record is visible
6476 // CATEGORY: OTHER
6477 // OS: Q (will also ship in PQ1A)
6478 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6479
6480 // Tagged data for ACTION_ACTIVITY_START.
6481 // FIELD: Activity record is visible ignoring keyguard
6482 // CATEGORY: OTHER
6483 // OS: Q (will also ship in PQ1A)
6484 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6485
6486 // Tagged data for ACTION_ACTIVITY_START.
6487 // FIELD: Millis since activity's last launch
6488 // CATEGORY: OTHER
6489 // OS: Q (will also ship in PQ1A)
6490 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006491
Kevin Chyn2c94a292018-08-09 15:00:06 -07006492 // OPEN: Settings > Add face
6493 // OS: Q
6494 FACE_ENROLL_PREVIEW = 1554;
6495
Felipe Lemec9f32592018-08-02 14:57:11 -07006496 // Field used to indicate whether a save request was used to update existing user data.
6497 FIELD_AUTOFILL_UPDATE = 1555;
6498
tmfangf391da12018-08-15 17:01:40 +08006499 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6500 // CATEGORY: SETTINGS
6501 // OS: Q
6502 SETTINGS_WIFI_ADD_NETWORK = 1556;
6503
Lucas Dupinc81702e2018-08-09 15:41:55 -07006504 // OPEN: Settings > System > Input & Gesture > Reach up gesture
6505 // OS: Q
Lucas Dupin13b0cb92018-09-28 09:27:46 -07006506 SETTINGS_GESTURE_WAKE_LOCK_SCREEN = 1557;
Lucas Dupinc81702e2018-08-09 15:41:55 -07006507
Shaotang Li4187f7a62018-07-04 14:03:25 +08006508 // OPEN: Emergency dialer opened
6509 // CLOSE: Emergency dialer closed
6510 // SUBTYPE: The entry type that user opened emergency dialer
6511 // CATEGORY: EMERGENCY_DIALER
6512 // OS: Q
6513 EMERGENCY_DIALER = 1558;
6514
6515 // FIELD: The screen is currently locked
6516 // CATEGORY: EMERGENCY_DIALER
6517 // OS: Q
6518 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559;
6519
6520 // FIELD: Bit flag indicating the actions performed by user
6521 // CATEGORY: EMERGENCY_DIALER
6522 // OS: Q
6523 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560;
6524
6525 // FIELD: The duration user stayed at emergency dialer
6526 // CATEGORY: EMERGENCY_DIALER
6527 // OS: Q
6528 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561;
6529
6530 // ACTION: Making call via emergency dialer
6531 // SUBTYPE: The UI that user made phone call
6532 // CATEGORY: EMERGENCY_DIALER
6533 // OS: Q
6534 EMERGENCY_DIALER_MAKE_CALL = 1562;
6535
6536 // FIELD: The phone number type of a call user made
6537 // CATEGORY: EMERGENCY_DIALER
6538 // OS: Q
6539 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6540
6541 // FIELD: There is a shortcut for the phone number
6542 // CATEGORY: EMERGENCY_DIALER
6543 // OS: Q
6544 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564;
6545
6546 // FIELD: The phone is in pocket while using emergency dialer
6547 // CATEGORY: EMERGENCY_DIALER
6548 // OS: Q
6549 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565;
6550
6551 // ACTION: The second tap on emergency shortcut to make a phone call
6552 // CATEGORY: EMERGENCY_DIALER
6553 // OS: Q
6554 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566;
6555
6556 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6557 // CATEGORY: EMERGENCY_DIALER
6558 // OS: Q
6559 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567;
6560
Shaotang Li786da902018-08-02 11:18:00 +08006561 // OPEN: Power menu is opened
6562 // CATEGORY: GLOBAL_SYSTEM_UI
6563 // OS: Q
6564 POWER_MENU = 1568;
6565
6566 // ACTION: User tapped emergency dialer icon in the power menu.
6567 // CATEGORY: GLOBAL_SYSTEM_UI
6568 // OS: Q
6569 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569;
6570
Lucas Dupin323f9ff2018-08-27 16:55:56 -07006571 // OPEN: Settings > System > Input & Gesture > Wake screen
6572 // OS: Q
6573 SETTINGS_GESTURE_WAKE_SCREEN = 1570;
6574
jackqdyulei2cc9b4b2018-09-07 13:12:43 -07006575 // OPEN: Settings > Network & internet > Mobile network
6576 // CATEGORY: SETTINGS
6577 // OS: Q
6578 MOBILE_NETWORK = 1571;
6579
Felipe Lemed9dc9542018-09-19 11:54:28 -07006580 // Tag of a field for the length of a text
6581 FIELD_AUTOFILL_TEXT_LEN = 1572;
6582
Julia Reynolds23a46352018-09-25 15:31:47 -04006583 // Action: the notification assistant is changing a notification
6584 // OS: Q
6585 NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
6586
6587 // Subtype: The people attached to a notification was changed
6588 ADJUSTMENT_KEY_PEOPLE = 1574;
6589
6590 // Subtype: The snooze options attached to a notification was changed
6591 ADJUSTMENT_KEY_SNOOZE_CRITERIA = 1575;
6592
6593 // Subtype: The group of a notification was changed
6594 ADJUSTMENT_KEY_GROUP_KEY = 1576;
6595
6596 // Subtype: The user sentiment of a notification was changed
6597 ADJUSTMENT_KEY_USER_SENTIMENT = 1577;
6598
6599 // Subtype: New actions have been added to a notification
6600 ADJUSTMENT_KEY_SMART_ACTIONS = 1578;
6601
6602 // Subtype: New smart replies have been added to a notification
6603 ADJUSTMENT_KEY_SMART_REPLIES = 1579;
6604
6605 // Subtype: The importance of a notification has been changed
6606 ADJUSTMENT_KEY_IMPORTANCE = 1580;
6607
jackqdyuleidb71d282018-10-10 10:37:19 -07006608 // OPEN: Settings > Network & internet > Mobile network > Choose network
6609 // CATEGORY: SETTINGS
6610 // OS: Q
6611 MOBILE_NETWORK_SELECT = 1581;
6612
6613 // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog
6614 // CATEGORY: SETTINGS
6615 // OS: Q
6616 MOBILE_DATA_DIALOG = 1582;
6617
6618 // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog
6619 // CATEGORY: SETTINGS
6620 // OS: Q
6621 MOBILE_ROAMING_DIALOG = 1583;
6622
Fan Zhang916c13b2018-10-16 22:49:45 -07006623 // OPEN: Settings > Display > Lock screen display > On lock screen
6624 // CATEGORY: SETTINGS
6625 // OS: Q
6626 LOCK_SCREEN_NOTIFICATION_CONTENT = 1584;
6627
Kevin Chynf589b6c2018-10-26 08:10:37 -07006628 // ConfirmDeviceCredentials > BiometricPrompt
6629 // CATEGORY: SETTINGS
6630 // OS: Q
6631 BIOMETRIC_FRAGMENT = 1585;
6632
Kevin Chynb879f512018-10-31 17:56:26 -07006633 // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent)
6634 // CATEGORY: SETTINGS
6635 // OS: Q
6636 BIOMETRIC_ENROLL_ACTIVITY = 1586;
6637
tmfanga3f63a92018-11-05 19:05:18 +08006638 // OPEN: Settings > Privacy
6639 // CATEGORY: SETTINGS
6640 // OS: Q
6641 TOP_LEVEL_PRIVACY = 1587;
6642
Beverlyd58cc772018-11-09 16:23:11 -05006643 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6644 // Allow apps to override
6645 // CATEGORY: SETTINGS
6646 // OS: Q
6647 NOTIFICATION_ZEN_MODE_OVERRIDING_APPS = 1588;
6648
6649 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6650 // Allow apps to override > Choose app
6651 // CATEGORY: SETTINGS
6652 // OS: Q
6653 NOTIFICATION_ZEN_MODE_OVERRIDING_APP = 1589;
6654
Esteban Talaveraf9c53b62018-11-14 18:20:29 +00006655 // ACTION: User sent a direct reply
6656 // PACKAGE: App that posted the notification
6657 // CATEGORY: NOTIFICATION
6658 // OS: Q
6659 NOTIFICATION_DIRECT_REPLY_ACTION = 1590;
6660
Chienyuane7a535c2018-11-30 16:01:48 +08006661 // OPEN: Settings > Developer options > Disable > Info dialog
6662 // CATEGORY: SETTINGS
6663 // OS: Q
6664 DIALOG_DISABLE_DEVELOPMENT_OPTIONS = 1591;
6665
Susi Kharraz-Post9b033672018-11-28 08:14:07 -05006666 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6667 // indicating the StatusBarState when menu was pulled down
6668 // CATEGORY: QUICK_SETTINGS
6669 // OS: Q
6670 FIELD_STATUS_BAR_STATE = 1592;
6671
6672 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6673 // indicating whether current state is full QS
6674 // CATEGORY: QUICK_SETTINGS
6675 // OS: Q
6676 FIELD_IS_FULL_QS = 1593;
6677
Issei Suzuki9e5ff4b2018-12-04 14:23:24 +01006678 // ACTION: Display folding state was changed
6679 // CATEGORY: OTHER
6680 // SUBTYPE: 1 if display is folded, 0 if not.
6681 // OS: Q
6682 ACTION_DISPLAY_FOLD = 1594;
6683
Arc Wangb16327a2018-11-30 14:15:52 +08006684 // OPEN: WifiDppConfiguratorActivity (android.settings.WIFI_DPP_CONFIGURATOR_XXX action intents)
6685 // CATEGORY: SETTINGS
6686 // OS: Q
6687 SETTINGS_WIFI_DPP_CONFIGURATOR = 1595;
6688
6689 // OPEN: WifiDppEnrolleeActivity (android.settings.WIFI_DPP_ENROLLEE_XXX action intents)
6690 // CATEGORY: SETTINGS
6691 // OS: Q
6692 SETTINGS_WIFI_DPP_ENROLLEE = 1596;
6693
Hongming Jin5172ec12018-12-13 11:02:42 -08006694 // OPEN: Settings > Apps & Notifications -> Special app access -> Financial Apps Sms Access
6695 // CATEGORY: SETTINGS
6696 // OS: Q
6697 SETTINGS_FINANCIAL_APPS_SMS_ACCESS = 1597;
6698
Chad Brubaker90f391f2018-10-19 10:26:19 -07006699 // OPEN: QS Sensor Privacy Mode tile shown
6700 // ACTION: QS Sensor Privacy Mode tile tapped
6701 // SUBTYPE: 0 is off, 1 is on
6702 // CATEGORY: QUICK_SETTINGS
6703 // OS: Q
6704 QS_SENSOR_PRIVACY = 1598;
6705
Gustav Sennton6f65fc32018-12-12 17:40:28 +00006706 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart actions.
6707 // OS: Q
6708 NOTIFICATION_SMART_ACTION_COUNT = 1599;
6709
6710 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6711 // Whether the notification has notification-assistant generated
6712 // actions/replies.
6713 // OS: Q
6714 NOTIFICATION_SMART_SUGGESTION_ASSISTANT_GENERATED = 1600;
6715
6716 // Tagged data for NOTIFICATION_ITEM_ACTION. Whether the action is a smart
6717 // action.
6718 // OS: Q
6719 NOTIFICATION_ACTION_IS_SMART = 1601;
6720
Beverlyf3c2c862018-12-21 09:57:31 -05006721 // FIELD: true if the associated ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* allows/blocks
6722 // the effect/sound when DND is on. false if set to disallow/show.
6723 // OS: Q
6724 FIELD_ZEN_TOGGLE_EXCEPTION = 1602;
6725
6726 // FIELD: rule id an ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* is associated with
6727 // OS: Q
6728 FIELD_ZEN_RULE_ID = 1603;
6729
6730 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6731 // > Do Not Disturb behavior
6732 // CATEGORY: SETTINGS
6733 // OS: Q
6734 ZEN_CUSTOM_RULE_SETTINGS = 1604;
6735
6736 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6737 // > Do Not Disturb behavior > Custom
6738 // CATEGORY: SETTINGS
6739 // OS: Q
6740 ZEN_CUSTOM_RULE_SOUND_SETTINGS = 1605;
6741
6742 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6743 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6744 // CATEGORY: SETTINGS
6745 // OS: Q
6746 ZEN_CUSTOM_RULE_DEFAULT_SETTINGS = 1606;
6747
6748 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6749 // > Do Not Disturb behavior > Custom
6750 // CATEGORY: SETTINGS
6751 // OS: Q
6752 ZEN_CUSTOM_RULE_CUSTOM_SETTINGS = 1607;
6753
6754 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6755 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6756 // > Notification restriction
6757 // CATEGORY: SETTINGS
6758 // OS: Q
6759 ZEN_CUSTOM_RULE_NOTIFICATION_RESTRICTIONS = 1608;
6760
6761 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6762 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6763 // > Notification restriction > Custom
6764 // CATEGORY: SETTINGS
6765 // OS: Q
6766 ZEN_CUSTOM_RULE_VIS_EFFECTS = 1609;
6767
6768 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6769 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6770 // > Notification restriction > Custom > Allow messages
6771 // CATEGORY: SETTINGS
6772 // OS: Q
6773 ZEN_CUSTOM_RULE_MESSAGES = 1610;
6774
6775 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6776 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6777 // > Notification restriction > Custom > Allow calls
6778 // CATEGORY: SETTINGS
6779 // OS: Q
6780 ZEN_CUSTOM_RULE_CALLS = 1611;
6781
6782 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
6783 // CATEGORY: SETTINGS
6784 // OS: Q
6785 ZEN_CUSTOM_SETTINGS_DIALOG = 1612;
6786
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006787 // OPEN: Settings > Developer Options > Game Driver Preferences
Yiwei Zhang71434b72018-12-28 11:32:42 +08006788 // CATEGORY: SETTINGS
6789 // OS: Q
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006790 SETTINGS_GAME_DRIVER_DASHBOARD = 1613;
Yiwei Zhang71434b72018-12-28 11:32:42 +08006791
Tony Mak5a5f0d52019-01-08 11:07:23 +00006792 // CATEGORY: The category for all actions relating to language detection logging.
6793 // OS: Q
6794 LANGUAGE_DETECTION = 1614;
6795
6796 // CATEGORY: The category for all actions relating to conversation actions logging.
6797 // OS: Q
6798 CONVERSATION_ACTIONS = 1615;
6799
6800 // ACTION: Actions from a text classifier are shown to user.
Tony Mak03a1d032019-01-24 15:12:00 +00006801 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006802 // OS: Q
6803 ACTION_TEXT_CLASSIFIER_ACTIONS_SHOWN = 1616;
6804
Tony Mak03a1d032019-01-24 15:12:00 +00006805 // FIELD: Event time of a text classifier event in unix timestamp.
6806 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006807 // OS: Q
6808 FIELD_TEXT_CLASSIFIER_EVENT_TIME = 1617;
6809
6810 // ACTION: Users compose their own replies instead of using suggested ones.
Tony Mak03a1d032019-01-24 15:12:00 +00006811 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006812 // OS: Q
6813 ACTION_TEXT_CLASSIFIER_MANUAL_REPLY = 1618;
6814
6815 // ACTION: Text classifier generates an action.
Tony Mak03a1d032019-01-24 15:12:00 +00006816 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006817 // OS: Q
6818 ACTION_TEXT_CLASSIFIER_ACTIONS_GENERATED = 1619;
6819
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00006820 // OPEN: Settings > Accessibility > Vibration > Ring vibration
6821 // CATEGORY: SETTINGS
6822 // OS: Q
6823 ACCESSIBILITY_VIBRATION_RING = 1620;
6824
Eyal Posenera9cf9c72018-12-18 16:23:54 +02006825 // ACTION: Notification blocking helper view, which helps the user to block
6826 // application or channel from showing notifications.
6827 // SUBTYPE: NotificationBlockingHelper enum.
6828 // CATEGORY: NOTIFICATION
6829 // OS: Q
6830 NOTIFICATION_BLOCKING_HELPER = 1621;
6831
Ruchi Kandoi6513d9d2019-01-09 13:23:04 -08006832 // ACTION: Tap & Pay -> Default Application Setting -> Use Forground
6833 // OS: Q
6834 ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622;
6835
6836 // ACTION: Tap & Pay -> Default Application Setting -> Use Default
6837 // OS: Q
6838 ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623;
Chris Wren6c109522018-03-12 10:00:12 -04006839
Beverly5015ac82019-01-10 16:33:02 -05006840 // OPEN: Settings > System > Input & Gesture > Skip song gesture
6841 // OS: Q
6842 SETTINGS_GESTURE_SKIP_SONG = 1624;
6843
6844 // OPEN: Settings > System > Input & Gesture > Silence gesture
6845 // OS: Q
6846 SETTINGS_GESTURE_SILENCE = 1625;
6847
Lucas Dupind43bf702019-01-15 13:40:42 -08006848 // OPEN: Settings > System > Input & Gesture > Tap screen gesture
6849 // OS: Q
6850 SETTINGS_GESTURE_TAP_SCREEN = 1626;
6851
Antony Sargent29932062019-01-10 15:59:11 -08006852 // OPEN: Settings > Network & internet > Click Mobile network to land on a page with a list of
6853 // SIM/eSIM subscriptions.
6854 // CATEGORY: SETTINGS
6855 // OS: Q
6856 MOBILE_NETWORK_LIST = 1627;
6857
Alex Salo1dea1e62019-01-18 14:17:20 -08006858 // OPEN: Settings > Display > Adaptive sleep
6859 // OS: Q
6860 SETTINGS_ADAPTIVE_SLEEP = 1628;
Tony Mak03a1d032019-01-24 15:12:00 +00006861
Felipe Leme479294a2019-01-22 17:23:07 -08006862 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6863 // The UI location of the notification containing the smart suggestions.
6864 // This is a NotificationLocation object (see the NotificationLocation
6865 // enum).
6866 // OS: Q
6867 NOTIFICATION_LOCATION = 1629;
6868
Felipe Lemea3033852019-01-18 16:32:33 -08006869 // The autofill system made request to the system-provided augmented autofill service.
6870 // OS: Q
6871 // Package: Package of app that is autofilled
6872 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
6873 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
6874 // request
6875 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
6876 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme479294a2019-01-22 17:23:07 -08006877 AUTOFILL_AUGMENTED_REQUEST = 1630;
Felipe Lemea3033852019-01-18 16:32:33 -08006878
6879 // Tag of a field for the number of augmented autofill requests in a session
6880 // OS: Q
Felipe Leme479294a2019-01-22 17:23:07 -08006881 FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS = 1631;
Gustav Sennton3757d852019-01-21 12:11:40 +00006882
Edgar Wang5ee81542019-01-11 19:30:12 +08006883 // OPEN: Settings > System > Aware
6884 // OS: Q
6885 SETTINGS_AWARE = 1632;
6886
6887 // OPEN: Settings > System > Aware > Disable > Dialog
6888 // OS: Q
6889 DIALOG_AWARE_DISABLE = 1633;
6890
Tony Mak03a1d032019-01-24 15:12:00 +00006891 // FIELD: Session ID of TextClassifierEvent.
6892 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6893 // OS: Q
6894 FIELD_TEXT_CLASSIFIER_SESSION_ID = 1634;
6895
6896 // FIELD: First entity type.
6897 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6898 // OS: Q
6899 FIELD_TEXT_CLASSIFIER_FIRST_ENTITY_TYPE = 1635;
6900 // FIELD: Second entity type.
6901 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6902 // OS: Q
6903 FIELD_TEXT_CLASSIFIER_SECOND_ENTITY_TYPE = 1636;
6904
6905 // FIELD: Third entity type.
6906 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6907 // OS: Q
6908 FIELD_TEXT_CLASSIFIER_THIRD_ENTITY_TYPE = 1637;
6909
6910 // FIELD: Score of the suggestion.
6911 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6912 // OS: Q
6913 FIELD_TEXT_CLASSIFIER_SCORE = 1638;
6914
6915 // FIELD: widget type, e.g: notification, textview
6916 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6917 // OS: Q
6918 FIELD_TEXT_CLASSIFIER_WIDGET_TYPE = 1639;
6919
6920 // FIELD: version of the widget.
6921 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6922 // OS: Q
6923 FIELD_TEXT_CLASSIFIER_WIDGET_VERSION = 1640;
6924
Will Brockman828427e2019-01-28 09:55:45 -05006925 // Tagged data for NOTIFICATION_ITEM. One of the CATEGORY String constants from
6926 // https://developer.android.com/reference/android/app/Notification .
6927 // OS: Q
6928 // CATEGORY: NOTIFICATION
6929 FIELD_NOTIFICATION_CATEGORY = 1641;
6930
Antony Sargent4348de52019-01-29 16:46:13 -08006931 // OPEN: Settings > Settings > Network & internet > Click Mobile network to land on page with
6932 // details for a SIM/eSIM mobile network > Click edit icon to bring up a rename dialog.
6933 // OS: Q
6934 MOBILE_NETWORK_RENAME_DIALOG = 1642;
6935
Sunny Shaoab08c4c2019-01-30 16:04:23 +08006936 // ACTION: Settings > Search Bar > Avatar
6937 // CATEGORY: SETTINGS
6938 // OS: Q
6939 ACTION_CLICK_ACCOUNT_AVATAR = 1643;
6940
Bernard Chaudd6c3b12019-01-31 15:31:22 +00006941 // OPEN: Set new password (action intents android.app.action.SET_NEW_PASSWORD or
6942 // android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6943 // CATEGORY: SETTINGS
6944 // OS: Q
6945 SET_NEW_PASSWORD_ACTIVITY = 1644;
6946
6947 // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD)
6948 // CATEGORY: SETTINGS
6949 // OS: Q
6950 ACTION_SET_NEW_PASSWORD = 1645;
6951
6952 // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6953 // CATEGORY: SETTINGS
6954 // OS: Q
6955 ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646;
6956
Milo Sredkov13d88112019-02-01 12:23:24 +00006957 // Tagged data for SMART_REPLY_VISIBLE and SMART_REPLY_ACTION.
6958 // Whether the smart reply was / is to be sent via direct reply because
6959 // getEditChoicesBeforeSending was enabled.
6960 // OS: Q
6961 NOTIFICATION_SMART_REPLY_EDIT_BEFORE_SENDING = 1647;
6962
6963 // Tagged data for SMART_REPLY_ACTION.
6964 // Whether the smart reply was modified by the user via the direct reply field (implies that
6965 // getEditChoicesBeforeSending was enabled).
6966 // actions/replies.
6967 // OS: Q
6968 NOTIFICATION_SMART_REPLY_MODIFIED_BEFORE_SENDING = 1648;
6969
Susi Kharraz-Post7e2115d2019-02-01 16:51:22 -05006970 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6971 // Field to add the mimetype for a ChooserActivity
6972 // OS:Q
6973 FIELD_SHARESHEET_MIMETYPE = 1649;
6974
6975 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6976 // Sharesheet direct targets are ready to show.
6977 // OS:Q
6978 ACTION_ACTIVITY_CHOOSER_SHOWN_DIRECT_TARGET = 1650;
6979
6980 // CATEGORY: ACTION_SHARESHEET_SCROLL
6981 // Sharesheet are either expanded, scrolling through them or compacted again.
6982 // OS:Q
6983 // Subtype 1 means collapsed, 0 expanded
6984 ACTION_SHARESHEET_COLLAPSED_CHANGED = 1651;
6985
6986 // ACTION: Share with screenshot extra
6987 // OS: Q
6988 ACTION_SHARE_WITH_PREVIEW = 1652;
6989
6990 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6991 // OS:Q
6992 // The time elapsed from triggering the share to displaying the app targets
6993 // formerly: histogram system_cost_for_smart_sharing
6994 FIELD_TIME_TO_APP_TARGETS = 1653;
6995
Matthew Fritze4d1dc0b2019-02-11 13:31:42 -08006996 // Open: Settings > Panel for Internet Connectivity
6997 PANEL_INTERNET_CONNECTIVITY = 1654;
6998
6999 // Open: Settings > Panel for Volume
7000 PANEL_VOLUME = 1655;
7001
7002 // Open: Settings > Panel for NFC
7003 PANEL_NFC = 1656;
7004
7005 // Open: Settings > Panel for Media Output
7006 PANEL_MEDIA_OUTPUT = 1657;
7007
7008 // ACTION: An interaction with a Slice or other component in the Panel.
7009 // CATEGORY: SETTINGS
7010 // OS: Q
7011 ACTION_PANEL_INTERACTION = 1658;
7012
Susi Kharraz-Post9893b8c2019-02-12 14:21:29 -05007013 // ACTION: Change phone orientation
7014 // OS: Q
7015 // SUBTYPE is orientation defined in Configuration.class
7016 ACTION_PHONE_ORIENTATION_CHANGED = 1659;
7017
7018 // CATEGORY: ACTION_PHONE_ORIENTATION_CHANGED
7019 // OS: Q
7020 // Different display can have different orientations, so need to log display id
7021 FIELD_DISPLAY_ID = 1660;
7022
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -05007023 // ACTION: Changing from work to parent profile or vice versa
7024 // OS: Q
7025 ACTION_SWITCH_SHARE_PROFILE = 1661;
7026
Raff Tsaic3d33ca422019-02-19 11:40:36 +08007027 // ACTION: Show Contextual homepage, log latency in loading cards
7028 ACTION_CONTEXTUAL_HOME_SHOW = 1662;
7029
7030 // ACTION: Contextual card displays
7031 ACTION_CONTEXTUAL_CARD_SHOW = 1663;
7032
7033 // ACTION: Contextual cards are eligible to be shown, but don't rank high
7034 ACTION_CONTEXTUAL_CARD_NOT_SHOW = 1664;
7035
7036 // ACTION: Settings > long press a card, and click dismiss
7037 // Contextual card is dismissed
7038 ACTION_CONTEXTUAL_CARD_DISMISS = 1665;
7039
7040 // ACTION: Settings > click a card
7041 // Contextual card is clicked
7042 ACTION_CONTEXTUAL_CARD_CLICK = 1666;
7043
Mariia Sandrikova908d8132019-02-21 20:02:49 +00007044 // Mapping: go/at-mapping
7045 PAGE_ATSSI = 1667;
7046
7047 PAGE_ATSII = 1668;
7048
7049 PAGE_ATUS = 1669;
7050
7051 PAGE_ATSSP = 1670;
7052
7053 PAGE_ATSAP = 1671;
7054
7055 PAGE_ATSCP = 1672;
7056
7057 PAGE_ATHNP = 1673;
7058
7059 ACTION_ATSG = 1674;
7060
7061 ACTION_ATPG = 1675;
7062
7063 ACTION_ATCLPB = 1676;
7064
7065 ACTION_ATCGIB = 1677;
7066
7067 ACTION_ATCPAB = 1678;
7068
7069 ACTION_ATCSAUC = 1679;
7070
7071 ACTION_ATCSCUC = 1680;
7072
7073 ACTION_ATCHNUC = 1681;
7074
Jackal Guo3cc93c42019-02-26 10:31:14 +08007075 // OPEN: Accessibility detail settings (android.settings.ACCESSIBILITY_DETAILS_SETTINGS intent)
7076 ACCESSIBILITY_DETAILS_SETTINGS = 1682;
7077
Mill Chend768dc62019-02-26 18:40:07 +08007078 // Open: Settings will show the conditional when Grayscale mode is on
7079 SETTINGS_CONDITION_GRAYSCALE_MODE = 1683;
7080
Yi-Ling Chuangea9ec7192019-02-26 21:07:53 +08007081 // ACTION: Individual contextual card loading time
7082 ACTION_CONTEXTUAL_CARD_LOAD = 1684;
7083
7084 //ACTION: Contextual card loading timeout
7085 ACTION_CONTEXTUAL_CARD_LOAD_TIMEOUT = 1685;
7086
7087 //ACTION: Log result for each card's eligibility check
7088 ACTION_CONTEXTUAL_CARD_ELIGIBILITY = 1686;
7089
Matthew Fritze20caff62019-03-05 08:12:39 -08007090 // Panel for Wifi
7091 PANEL_WIFI = 1687;
7092
Beverly5015ac82019-01-10 16:33:02 -05007093 // ---- End Q Constants, all Q constants go above this line ----
Chris Wren77781d32016-01-11 14:49:26 -05007094 // Add new aosp constants above this line.
7095 // END OF AOSP CONSTANTS
7096 }
7097}