blob: 5a4892c75d9e1894890db6545a5ab920499415ce [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
Steven Wue442acf2019-03-14 13:31:12 -040077 // The action results an error.
78 TYPE_ERROR = 15;
79
Will Brockman2a1e6b82019-01-15 11:36:06 -050080 // The notification was adjusted by the assistant. Enum value is
81 // out of sequence due to b/122737498.
82 TYPE_NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
Chris Wren5e334f62016-11-14 10:16:21 -050083 }
84
Chris Wren65f07fe2017-03-14 14:10:37 -040085 // Types of alerts, as bit field values
86 enum Alert {
87 // Vibrate the device.
88 ALERT_BUZZ = 1;
89
90 // Make sound through the speaker.
91 ALERT_BEEP = 2;
92
93 // Flash a notificaiton light.
94 ALERT_BLINK = 4;
95 }
96
97 // Reasons that a notification might be dismissed.
98 enum DismissReason {
99 // from android.service.notification.NotificationListenerService
100
101 // Notification was canceled by the status bar reporting a notification click
102 REASON_CLICK = 1;
103
104 // Notification was canceled by the status bar reporting a user dismissal.
105 REASON_CANCEL = 2;
106
107 // Notification was canceled by the status bar reporting a user dismiss all.
108 REASON_CANCEL_ALL = 3;
109
110 // Notification was canceled by the status bar reporting an inflation error.
111 REASON_ERROR = 4;
112
113 // Notification was canceled by the package manager modifying the package.
114 REASON_PACKAGE_CHANGED = 5;
115
116 // Notification was canceled by the owning user context being stopped.
117 REASON_USER_STOPPED = 6;
118
119 // Notification was canceled by the user banning the package.
120 REASON_PACKAGE_BANNED = 7;
121
122 // Notification was canceled by the app canceling this specific notification.
123 REASON_APP_CANCEL = 8;
124
125 //Notification was canceled by the app cancelling all its notifications.
126 REASON_APP_CANCEL_ALL = 9;
127
128 // Notification was canceled by a listener reporting a user dismissal.
129 REASON_LISTENER_CANCEL = 10;
130
131 //Notification was canceled by a listener reporting a user dismiss all.
132 REASON_LISTENER_CANCEL_ALL = 11;
133
134 // Notification was canceled because it was a member of a canceled group.
135 REASON_GROUP_SUMMARY_CANCELED = 12;
136
137 // Notification was canceled because it was an invisible member of a group.
138 REASON_GROUP_OPTIMIZATION = 13;
139
140 // Notification was canceled by the device administrator suspending the package.
141 REASON_PACKAGE_SUSPENDED = 14;
142
143 // Notification was canceled by the owning managed profile being turned off.
144 REASON_PROFILE_TURNED_OFF = 15;
145
146 // Autobundled summary notification was canceled because its group was unbundled.
147 REASON_UNAUTOBUNDLED = 16;
148
149 // Notification was canceled by the user banning the channel.
150 REASON_CHANNEL_BANNED = 17;
151
152 // Notification was snoozed.
153 REASON_SNOOZED = 18;
154
155 // Notification was canceled due to timeout.
156 REASON_TIMEOUT = 19;
157 }
158
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700159 // Subtypes of camera events for ACTION_CAMERA_EVENT
160 enum CameraEvent {
161 // A back-facing camera was used
162 CAMERA_BACK_USED = 0;
163
164 // A front-facing camera was used
165 CAMERA_FRONT_USED = 1;
166
167 // An external camera was used
168 CAMERA_EXTERNAL_USED = 2;
169 }
170
Jan Althaus786a39d2017-09-15 10:41:16 +0200171 // TextClassifier entity types.
172 enum TextClassifierEntityType {
173 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
174 TEXT_CLASSIFIER_TYPE_OTHER = 2;
175 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
176 TEXT_CLASSIFIER_TYPE_PHONE = 4;
177 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
178 TEXT_CLASSIFIER_TYPE_URL = 6;
179 }
180
Jan Althausae5eb832017-11-06 12:31:59 +0100181 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
182 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500183 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100184 TEXT_SELECTION_INVOCATION_MANUAL = 1;
185 TEXT_SELECTION_INVOCATION_LINK = 2;
186 }
187
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100188 // Access method for hidden API events. Type of data tagged with
189 // FIELD_HIDDEN_API_ACCESS_METHOD.
190 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
191 enum HiddenApiAccessMethod {
192 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
193 ACCESS_METHOD_REFLECTION = 1;
194 ACCESS_METHOD_JNI = 2;
195 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
196 }
197
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700198 enum HardwareType {
199 HARDWARE_UNKNOWN = 0;
200 HARDWARE_MICROPHONE = 1;
201 HARDWARE_CODEC = 2;
202 HARDWARE_SPEAKER = 3;
203 HARDWARE_FINGERPRINT = 4;
204 }
205
206 enum HardwareFailureCode {
207 HARDWARE_FAILURE_UNKNOWN = 0;
208 HARDWARE_FAILURE_COMPLETE = 1;
209 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
210 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
211 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
212 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
213 }
214
Andrew Chantc03bc632018-05-18 10:52:00 -0700215 enum IoOperation {
216 IOOP_UNKNOWN = 0;
217 IOOP_READ = 1;
218 IOOP_WRITE = 2;
219 IOOP_UNMAP = 3;
220 IOOP_SYNC = 4;
221 }
222
Eyal Posenera9cf9c72018-12-18 16:23:54 +0200223 // Subtypes of notifications blocking helper view
224 // (NOTIFICATION_BLOCKING_HELPER).
225 enum NotificationBlockingHelper {
226 BLOCKING_HELPER_UNKNOWN = 0;
227 BLOCKING_HELPER_DISPLAY = 1;
228 BLOCKING_HELPER_DISMISS = 2;
229 // When the view of the notification blocking helper was triggered by
230 // system.
231 BLOCKING_HELPER_TRIGGERED_BY_SYSTEM = 3;
232 // "block" was clicked.
233 BLOCKING_HELPER_CLICK_BLOCKED = 4;
234 // "stay silent" was clicked.
235 BLOCKING_HELPER_CLICK_STAY_SILENT = 5;
236 // "alert me" was clicked.
237 BLOCKING_HELPER_CLICK_ALERT_ME = 6;
238 // "undo" was clicked (enables the user to undo "stop notification" action).
239 BLOCKING_HELPER_CLICK_UNDO = 7;
240 }
241
Gustav Sennton3757d852019-01-21 12:11:40 +0000242 // The (visual) location of a Notification.
243 enum NotificationLocation {
244 LOCATION_UNKNOWN = 0;
245 LOCATION_FIRST_HEADS_UP = 1; // visible heads-up
246 LOCATION_HIDDEN_TOP = 2; // hidden/scrolled away on the top
247 LOCATION_MAIN_AREA = 3; // visible in the shade
248 LOCATION_BOTTOM_STACK_PEEKING = 4; // in the bottom stack, and peeking
249 LOCATION_BOTTOM_STACK_HIDDEN = 5; // in the bottom stack, and hidden
250 LOCATION_GONE = 6; // the view isn't laid out at all
251 }
252
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -0500253 // Subtypes for profile logging
254 enum ActiveUserProfile {
255 PARENT_PROFILE = 1;
256 MANAGED_PROFILE = 2;
257 }
258
Susi Kharraz-Postfcec9932019-03-01 16:46:26 -0500259 // Subtypes for showing direct sharing targets
260 enum DirectShareTargetPreviousState {
261 PREVIOUSLY_UNKNOWN = 0;
262 PREVIOUSLY_HIDDEN = 1;
263 PREVIOUSLY_VISIBLE = 2;
264 }
265
Mehdi Alizadeh97fb3ed2019-04-25 14:52:02 -0700266 // Types for ACTION_SHORTCUTS_CHANGED
267 enum ShortcutsChangesInfo {
268 SHORTCUTS_CHANGED_UNKNOWN = 0;
269 SHORTCUTS_CHANGED_USER_ID = 1;
270 SHORTCUTS_CHANGED_PACKAGE_COUNT = 2;
271 SHORTCUTS_CHANGED_SHORTCUT_COUNT = 3;
272 }
273
Will Brockman934b8e32019-03-08 11:14:45 -0500274 // Explanations for notification importance, derived from
275 // NotificationRecord.mImportanceExplanation.
276 enum NotificationImportanceExplanation {
277 IMPORTANCE_EXPLANATION_UNKNOWN = 0;
278 IMPORTANCE_EXPLANATION_APP = 1; // App-specified channel importance.
279 IMPORTANCE_EXPLANATION_USER = 2; // User-specified channel importance.
280 IMPORTANCE_EXPLANATION_ASST = 3; // Notification Assistant override.
281 IMPORTANCE_EXPLANATION_SYSTEM = 4; // System override.
282 // Like _APP, but based on pre-channels priority signal.
283 IMPORTANCE_EXPLANATION_APP_PRE_CHANNELS = 5;
284 }
285
Chris Wren77781d32016-01-11 14:49:26 -0500286 // Known visual elements: views or controls.
287 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500288 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500289 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500292 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Accessibility
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OPEN: Settings > Accessibility > Captions
300 // CATEGORY: SETTINGS
301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500302 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Accessibility > [Service]
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Accessibility > Color correction
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Accessibility > Accessibility shortcut
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500318
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700319 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
320 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
321 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OPEN: Settings > Accounts
327 // CATEGORY: SETTINGS
328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500329 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Settings > Accounts > [Single Account Sync Settings]
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OPEN: Settings > Accounts > Add an account
337 // CATEGORY: SETTINGS
338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500339 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500340
341 // OPEN: Settings > Accounts > [List of accounts when more than one]
342 // CATEGORY: SETTINGS
343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500344 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500345
346 // OPEN: Settings > Cellular network settings > APNs
347 // CATEGORY: SETTINGS
348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500349 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500350
351 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
352 // CATEGORY: SETTINGS
353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500354 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500355
356 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500357 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500360 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500363 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Settings > Apps > Configure apps > App links > [App]
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500371 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500372
373 // OPEN: Settings > Internal storage > Apps storage > [App]
374 // CATEGORY: SETTINGS
375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500376 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500377
378 // OPEN: Settings > Apps > [App info]
379 // CATEGORY: SETTINGS
380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500381 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500382
383 // OPEN: Settings > Memory > App usage > [App Memory usage]
384 // CATEGORY: SETTINGS
385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500386 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500387
388 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500389 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500390
391 // OPEN: Settings > Memory > App usage
392 // CATEGORY: SETTINGS
393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500394 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500395
396 // OPEN: Settings > Bluetooth
397 // CATEGORY: SETTINGS
398 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500399 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500400
401 // OPEN: Choose Bluetooth device (ex: when sharing)
402 // CATEGORY: SETTINGS
403 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500404 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500405
406 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500407 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500408
409 // OPEN: Settings > Security > Choose screen lock
410 // CATEGORY: SETTINGS
411 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500412 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500413
414 // OPEN: Settings > Security > Choose screen lock > Choose your password
415 // CATEGORY: SETTINGS
416 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500417 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500418
419 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
420 // CATEGORY: SETTINGS
421 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500422 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500423
424 // OPEN: Settings > Security > Choose screen lock > Confirm your password
425 // CATEGORY: SETTINGS
426 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500427 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500428
429 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
430 // CATEGORY: SETTINGS
431 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500432 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500433
434 // OPEN: Settings > Security > Encrypt phone
435 // CATEGORY: SETTINGS
436 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500437 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500438
439 // OPEN: Settings > Security > Encrypt phone > Confirm
440 // CATEGORY: SETTINGS
441 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500442 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500443
444 // OPEN: Settings > Search results
445 // CATEGORY: SETTINGS
446 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500447 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500448
449 // OPEN: Settings (Root page)
450 // CATEGORY: SETTINGS
451 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500452 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500453
454 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500455 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500456
457 // OPEN: Settings > Data usage
458 // CATEGORY: SETTINGS
459 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500460 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500461
462 // OPEN: Settings > Date & time
463 // CATEGORY: SETTINGS
464 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500465 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500466
467 // OPEN: Settings > Developer options
468 // CATEGORY: SETTINGS
469 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500470 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500471
472 // OPEN: Settings > About phone
473 // CATEGORY: SETTINGS
474 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500475 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500476
477 // OPEN: Settings > About phone > Status > IMEI information
478 // CATEGORY: SETTINGS
479 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500480 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500481
482 // OPEN: Settings > Internal storage
483 // CATEGORY: SETTINGS
484 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500485 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500486
487 // OPEN: Settings > About phone > Status > SIM status
488 // CATEGORY: SETTINGS
489 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500490 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500491
492 // OPEN: Settings > About phone > Status
493 // CATEGORY: SETTINGS
494 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500495 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500496
497 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500498 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500499
500 // OPEN: Settings > Display
501 // CATEGORY: SETTINGS
502 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500503 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500504
505 // OPEN: Settings > Display > Daydream
506 // CATEGORY: SETTINGS
507 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500508 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500509
510 // OPEN: Settings > Security > Screen lock > Secure start-up
511 // CATEGORY: SETTINGS
512 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500513 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500514
515 // OPEN: Settings > Security > Nexus Imprint
516 // CATEGORY: SETTINGS
517 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500518 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500519
520 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500521 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500522
523 // OPEN: Settings > Battery > History details
524 // CATEGORY: SETTINGS
525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500526 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500527
528 // OPEN: Settings > Battery > Battery saver
529 // CATEGORY: SETTINGS
530 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500531 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500532
533 // OPEN: Settings > Battery > [App Use details]
534 // CATEGORY: SETTINGS
535 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500536 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500537
538 // OPEN: Settings > Battery
539 // CATEGORY: SETTINGS
540 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500541 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500542
543 // OPEN: Settings > Home
544 // CATEGORY: SETTINGS
545 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500546 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500547
548 // OPEN: Settings > Security > SIM card lock settings
549 // CATEGORY: SETTINGS
550 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500551 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500552
553 // OPEN: Settings > Language & input
554 // CATEGORY: SETTINGS
555 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500556 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500557
558 // OPEN: Settings > Language & input > Physical keyboard
559 // CATEGORY: SETTINGS
560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500561 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > Language & input > Spell checker
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500569 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500570
571 // OPEN: Settings > Language & input > Personal dictionary
572 // CATEGORY: SETTINGS
573 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500574 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500575
576 // OPEN: Settings > Language & input > Add word
577 // CATEGORY: SETTINGS
578 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500579 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500580
581 // OPEN: Settings > Location
582 // CATEGORY: SETTINGS
583 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500584 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500585
586 // OPEN: Settings > Location > Location mode
587 // CATEGORY: SETTINGS
588 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500589 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500590
591 // OPEN: Settings > Apps
592 // CATEGORY: SETTINGS
593 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500594 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500595
596 // OPEN: Settings > Backup & reset > Factory data reset
597 // CATEGORY: SETTINGS
598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500599 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500600
601 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
602 // CATEGORY: SETTINGS
603 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500604 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OPEN: Settings > Data usage > Network restrictions
607 // CATEGORY: SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: Settings > More > Android Beam
612 // CATEGORY: SETTINGS
613 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500614 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Settings > Tap & pay
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Sound & notification
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: Settings > Sound & notification > App notifications > [App]
627 // CATEGORY: SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: Settings > Sound & notification > Other sounds
632 // CATEGORY: SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500637 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500638
639 // OPEN: Settings Widget > Notification log
640 // CATEGORY: SETTINGS
641 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500642 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: Settings > Sound & notification > Do not disturb
645 // CATEGORY: SETTINGS
646 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500647 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500650 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500651
652 // OPEN: Print job notification > Print job settings
653 // CATEGORY: SETTINGS
654 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500655 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500656
657 // OPEN: Settings > Printing > [Print Service]
658 // CATEGORY: SETTINGS
659 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500660 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500661
662 // OPEN: Settings > Printing
663 // CATEGORY: SETTINGS
664 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500665 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500666
667 // OPEN: Settings > Backup & reset
668 // CATEGORY: SETTINGS
669 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500670 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500673 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500674
675 // OPEN: Settings > Backup & reset > Network settings reset
676 // CATEGORY: SETTINGS
677 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500678 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500679
680 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
681 // CATEGORY: SETTINGS
682 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500683 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // OPEN: Settings > Developer Options > Running Services
686 // CATEGORY: SETTINGS
687 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500688 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500689
690 // OPEN: Settings > Security > Screen pinning
691 // CATEGORY: SETTINGS
692 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500693 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500694
695 // OPEN: Settings > Security
696 // CATEGORY: SETTINGS
697 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500698 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500699
700 // OPEN: Settings > SIM cards
701 // CATEGORY: SETTINGS
702 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500703 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500706 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500707
708 // OPEN: Settings > More > Tethering & portable hotspot
709 // CATEGORY: SETTINGS
710 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500711 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500712
713 // OPEN: Settings > Security > Trust agents
714 // CATEGORY: SETTINGS
715 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500716 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500717
718 // OPEN: Settings > Security > Trusted credentials
719 // CATEGORY: SETTINGS
720 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500721 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500722
723 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
724 // CATEGORY: SETTINGS
725 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500726 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500727
728 // OPEN: Settings > Language & input > Text-to-speech output
729 // CATEGORY: SETTINGS
730 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500731 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // OPEN: Settings > Security > Apps with usage access
734 // CATEGORY: SETTINGS
735 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500736 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500737
738 // OPEN: Settings > Users
739 // CATEGORY: SETTINGS
740 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500741 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500742
743 // OPEN: Settings > Users > [Restricted profile app & content access]
744 // CATEGORY: SETTINGS
745 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500746 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500747
748 // OPEN: Settings > Users > [User settings]
749 // CATEGORY: SETTINGS
750 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500751 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500752
753 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500754 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: Settings > More > VPN
757 // CATEGORY: SETTINGS
758 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500759 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OPEN: Settings > Display > Choose wallpaper from
762 // CATEGORY: SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: Settings > Display > Cast
767 // CATEGORY: SETTINGS
768 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500769 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500770
771 // OPEN: Settings > Wi-Fi
772 // CATEGORY: SETTINGS
773 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500774 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500775
776 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
777 // CATEGORY: SETTINGS
778 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500779 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500780
781 // OPEN: Settings > More > Wi-Fi Calling
782 // CATEGORY: SETTINGS
783 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500784 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500785
786 // OPEN: Settings > Wi-Fi > Saved networks
787 // CATEGORY: SETTINGS
788 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500789 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500790
791 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500792 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500795 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500796
797 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
798 // CATEGORY: SETTINGS
799 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500800 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // OPEN: Settings > More
803 // CATEGORY: SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // OPEN: Quick Settings Panel
808 // CATEGORY: QUICK_SETTINGS
809 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500810 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500811
812 // OPEN: QS Airplane mode tile shown
813 // ACTION: QS Airplane mode tile tapped
814 // SUBTYPE: 0 is off, 1 is on
815 // CATEGORY: QUICK_SETTINGS
816 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500817 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500818
819 // OPEN: QS Bluetooth tile shown
820 // ACTION: QS Bluetooth tile tapped
821 // SUBTYPE: 0 is off, 1 is on
822 // CATEGORY: QUICK_SETTINGS
823 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500824 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500825
826 // OPEN: QS Cast tile shown
827 // ACTION: QS Cast tile tapped
828 // CATEGORY: QUICK_SETTINGS
829 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500830 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500831
832 // OPEN: QS Cellular tile shown
833 // ACTION: QS Cellular tile tapped
834 // CATEGORY: QUICK_SETTINGS
835 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500836 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500837
838 // OPEN: QS Color inversion tile shown
839 // ACTION: QS Color inversion tile tapped
840 // SUBTYPE: 0 is off, 1 is on
841 // CATEGORY: QUICK_SETTINGS
842 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500843 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500844
845 // OPEN: QS Cellular tile > Cellular detail panel
846 // CATEGORY: QUICK_SETTINGS
847 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500848 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500849
850 // OPEN: QS Do not disturb tile shown
851 // ACTION: QS Do not disturb tile tapped
852 // SUBTYPE: 0 is off, 1 is on
853 // CATEGORY: QUICK_SETTINGS
854 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500855 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500856
857 // OPEN: QS Flashlight tile shown
858 // ACTION: QS Flashlight tile tapped
859 // SUBTYPE: 0 is off, 1 is on
860 // CATEGORY: QUICK_SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // OPEN: QS Hotspot tile shown
865 // ACTION: QS Hotspot tile tapped
866 // SUBTYPE: 0 is off, 1 is on
867 // CATEGORY: QUICK_SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OPEN: QS 3P tile shown
872 // ACTION: QS 3P tile tapped
873 // CATEGORY: QUICK_SETTINGS
874 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500875 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500876
877 // OPEN: QS Location tile shown
878 // ACTION: QS Location tile tapped
879 // SUBTYPE: 0 is off, 1 is on
880 // CATEGORY: QUICK_SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // OPEN: QS Rotation tile shown
885 // ACTION: QS Rotation tile tapped
886 // SUBTYPE: 0 is off, 1 is on
887 // CATEGORY: QUICK_SETTINGS
888 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500889 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500890
891 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500892 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // OPEN: QS User list panel
895 // CATEGORY: QUICK_SETTINGS
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // OPEN: QS WiFi tile shown
900 // ACTION: QS WiFi tile tapped
901 // SUBTYPE: 0 is off, 1 is on
902 // CATEGORY: QUICK_SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // OPEN: Notification Panel (including lockscreen)
907 // CATEGORY: NOTIFICATION
908 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500909 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // OPEN: Notification in panel became visible.
912 // PACKAGE: App that posted the notification.
913 // ACTION: Notification is tapped.
914 // PACKAGE: App that posted the notification
915 // DETAIL: Notification is expanded by user.
916 // PACKAGE: App that posted the notification
Esteban Talaveraf9c53b62018-11-14 18:20:29 +0000917 // COLLAPSE: Notification is collapsed by user.
918 // PACKAGE: App that posted the notification
Chris Wren7c516842016-03-01 16:44:32 -0500919 // DISMISS: Notification is dismissed.
920 // PACKAGE: App that posted the notification
921 // SUBTYPE: Dismiss reason from NotificationManagerService.java
922 // CATEGORY: NOTIFICATION
923 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500924 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // ACTION: User tapped notification action
927 // PACKAGE: App that posted the notification
928 // SUBTYPE: Index of action on notification
929 // CATEGORY: NOTIFICATION
930 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500931 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500932
933 // OPEN: Settings > Apps > Configure apps > App permissions
934 // CATEGORY: SETTINGS
935 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500936 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500937
938 // OPEN: Settings > Location > Scanning
939 // CATEGORY: SETTINGS
940 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500941 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500942
943 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500944 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500945
946 // OPEN: Settings > Sound & notification > App notifications
947 // CATEGORY: SETTINGS
948 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500949 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500950
951 // ACTION: Settings > Wi-Fi > Overflow > Add Network
952 // CATEGORY: SETTINGS
953 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500954 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700957 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500958 // CATEGORY: SETTINGS
959 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500960 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: Settings > Wi-Fi > Overflow > Refresh
963 // CATEGORY: SETTINGS
964 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500965 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500966
967 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
968 // CATEGORY: SETTINGS
969 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500970 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700973 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500974 // CATEGORY: SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // ACTION: Settings > Wi-Fi > Toggle on
979 // CATEGORY: SETTINGS
980 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500981 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500984 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500985
986 // OPEN: Settings > Sound & notification > DND > Priority only allows
987 // CATEGORY: SETTINGS
988 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500989 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500990
991 // OPEN: Settings > Sound & notification > DND > Automatic rules
992 // CATEGORY: SETTINGS
993 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500994 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500995
996 // OPEN: Settings > Apps > Configure apps > App links
997 // CATEGORY: SETTINGS
998 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500999 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -05001000
1001 // OPEN: Settings > Sound & notification > DND > [Time based rule]
1002 // CATEGORY: SETTINGS
1003 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001004 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // OPEN: Settings > Sound & notification > DND > [External rule]
1007 // CATEGORY: SETTINGS
1008 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001009 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -05001010
1011 // OPEN: Settings > Sound & notification > DND > [Event rule]
1012 // CATEGORY: SETTINGS
1013 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001014 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -05001015
Howard Ro8b56f752018-08-07 15:44:25 -07001016 // ACTION: App notification settings > Block Notifications or long press on
1017 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -05001018 // CATEGORY: SETTINGS
Howard Ro8b56f752018-08-07 15:44:25 -07001019 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -05001020 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -05001021
1022 // ACTION: Notification shade > Dismiss all button
1023 // CATEGORY: NOTIFICATION
1024 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001025 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -05001026
1027 // OPEN: QS Do Not Disturb detail panel
1028 // CATEGORY: QUICK_SETTINGS
1029 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001030 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -05001031
1032 // OPEN: QS Bluetooth detail panel
1033 // CATEGORY: QUICK_SETTINGS
1034 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001035 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -05001036
1037 // OPEN: QS Cast detail panel
1038 // CATEGORY: QUICK_SETTINGS
1039 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001040 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -05001041
1042 // OPEN: QS Wi-Fi detail panel
1043 // CATEGORY: QUICK_SETTINGS
1044 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001045 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -05001046
1047 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
1048 // SUBTYPE: 0 is off, 1 is on
1049 // CATEGORY: QUICK_SETTINGS
1050 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001051 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -05001052
1053 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
1054 // SUBTYPE: 0 is off, 1 is on
1055 // CATEGORY: QUICK_SETTINGS
1056 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001057 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -05001058
1059 // ACTION: QS Cellular detail panel > Cellular toggle
1060 // SUBTYPE: 0 is off, 1 is on
1061 // CATEGORY: QUICK_SETTINGS
1062 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001063 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -05001064
1065 // ACTION: QS User list panel > Select different user
1066 // CATEGORY: QUICK_SETTINGS
1067 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001068 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -05001069
1070 // ACTION: QS Cast detail panel > Select cast device
1071 // CATEGORY: QUICK_SETTINGS
1072 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001073 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001074
1075 // ACTION: QS Cast detail panel > Disconnect cast device
1076 // CATEGORY: QUICK_SETTINGS
1077 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001078 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001079
1080 // ACTION: Settings > Bluetooth > Toggle
1081 // SUBTYPE: 0 is off, 1 is on
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // ACTION: Settings > Bluetooth > Overflow > Refresh
1087 // CATEGORY: SETTINGS
1088 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001089 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001090
1091 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1092 // CATEGORY: SETTINGS
1093 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001094 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001095
1096 // ACTION: Settings > Bluetooth > Overflow > Show received files
1097 // CATEGORY: SETTINGS
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: QS DND details panel > Increase / Decrease exit time
1102 // SUBTYPE: true is increase, false is decrease
1103 // CATEGORY: QUICK_SETTINGS
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: QS DND details panel > [Exit condition]
1108 // CATEGORY: QUICK_SETTINGS
1109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001110 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: QS DND details panel > [DND mode]
1113 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1114 // CATEGORY: QUICK_SETTINGS
1115 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001116 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001117
1118 // ACTION: QS DND detail panel > DND toggle
1119 // SUBTYPE: 0 is off, 1 is on
1120 // CATEGORY: QUICK_SETTINGS
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // ACTION: DND Settings > Priority only allows > Reminder toggle
1125 // SUBTYPE: 0 is off, 1 is on
1126 // CATEGORY: SETTINGS
1127 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001128 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // ACTION: DND Settings > Priority only allows > Event toggle
1131 // SUBTYPE: 0 is off, 1 is on
1132 // CATEGORY: SETTINGS
1133 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001134 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001135
1136 // ACTION: DND Settings > Priority only allows > Messages
1137 // SUBTYPE: 0 is off, 1 is on
1138 // CATEGORY: SETTINGS
1139 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: DND Settings > Priority only allows > Calls
1143 // SUBTYPE: 0 is off, 1 is on
1144 // CATEGORY: SETTINGS
1145 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001146 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001147
1148 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1149 // SUBTYPE: 0 is off, 1 is on
1150 // CATEGORY: SETTINGS
1151 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001152 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001153
1154 // ACTION: DND Settings > Automatic rules > Add rule
1155 // CATEGORY: SETTINGS
1156 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001157 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001158
1159 // ACTION: DND Settings > Automatic rules > Add rule > OK
1160 // CATEGORY: SETTINGS
1161 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001162 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001163
1164 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1165 // CATEGORY: SETTINGS
1166 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001167 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001168
1169 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1170 // CATEGORY: SETTINGS
1171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001172 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1175 // SUBTYPE: 0 is off, 1 is on
1176 // CATEGORY: SETTINGS
1177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001178 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // ACTION: Settings > More > Airplane mode toggle
1181 // SUBTYPE: 0 is off, 1 is on
1182 // CATEGORY: SETTINGS
1183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001184 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001185
1186 // ACTION: Settings > Data usage > Cellular data toggle
1187 // SUBTYPE: 0 is off, 1 is on
1188 // CATEGORY: SETTINGS
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // OPEN: Settings > Sound & notification > Notification access
1193 // CATEGORY: SETTINGS
1194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001195 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001196
1197 // OPEN: Settings > Sound & notification > Do Not Disturb access
1198 // CATEGORY: SETTINGS
1199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001200 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // OPEN: Settings > Apps > Configure apps > Default Apps
1203 // CATEGORY: SETTINGS
1204 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001205 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001206
1207 // OPEN: Settings > Internal storage > Apps storage
1208 // CATEGORY: SETTINGS
1209 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001210 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001211
1212 // OPEN: Settings > Security > Usage access
1213 // CATEGORY: SETTINGS
1214 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001215 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001216
1217 // OPEN: Settings > Battery > Battery optimization
1218 // CATEGORY: SETTINGS
1219 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001220 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001221
1222 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001223 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Lockscreen > Unlock gesture
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // ACTION: Lockscreen > Pull shade open
1231 // CATEGORY: GLOBAL_SYSTEM_UI
1232 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001233 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // ACTION: Lockscreen > Tap on lock, shows hint
1236 // CATEGORY: GLOBAL_SYSTEM_UI
1237 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001238 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Lockscreen > Camera
1241 // CATEGORY: GLOBAL_SYSTEM_UI
1242 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001243 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Lockscreen > Dialer
1246 // CATEGORY: GLOBAL_SYSTEM_UI
1247 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001248 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // ACTION: Lockscreen > Tap on lock, locks phone
1251 // CATEGORY: GLOBAL_SYSTEM_UI
1252 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001253 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // ACTION: Lockscreen > Tap on notification, false touch rejection
1256 // CATEGORY: GLOBAL_SYSTEM_UI
1257 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // ACTION: Lockscreen > Swipe down to open quick settings
1261 // CATEGORY: GLOBAL_SYSTEM_UI
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // ACTION: Swipe down to open quick settings when unlocked
1266 // CATEGORY: GLOBAL_SYSTEM_UI
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Notification shade > Tap to open quick settings
1271 // CATEGORY: GLOBAL_SYSTEM_UI
1272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001273 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // OPEN: Lockscreen
1276 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1277 // CATEGORY: GLOBAL_SYSTEM_UI
1278 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001279 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001280
1281 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1282 // CATEGORY: GLOBAL_SYSTEM_UI
1283 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001284 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001285
1286 // OPEN: Screen turned on
1287 // SUBTYPE: 2 is user action
1288 // CATEGORY: GLOBAL_SYSTEM_UI
1289 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001290 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // OPEN: Notification caused sound, vibration, and/or LED blink
1293 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1294 // CATEGORY: NOTIFICATION
1295 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001296 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001297
1298 // ACTION: Lockscreen > Emergency Call button
1299 // CATEGORY: GLOBAL_SYSTEM_UI
1300 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001301 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1304 // CATEGORY: SETTINGS
1305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001306 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001307
1308 // OPEN: Settings > Memory
1309 // CATEGORY: SETTINGS
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // ACTION: Settings > Display > When device is rotated
1314 // CATEGORY: SETTINGS
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // ACTION: Long press on notification to view controls
1319 // CATEGORY: NOTIFICATION
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // ACTION: Notificatoin controls > Info button
1324 // CATEGORY: NOTIFICATION
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // ACTION: Notification controls > Settings button
1329 // CATEGORY: NOTIFICATION
1330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001331 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001332
1333 // OPEN: Volume Dialog (with hardware buttons)
1334 // CATEGORY: GLOBAL_SYSTEM_UI
1335 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001336 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001337
1338 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1339 // CATEGORY: GLOBAL_SYSTEM_UI
1340 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001341 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001342
1343 // ACTION: Volume dialog > Adjust volume slider
1344 // SUBTYPE: volume level (0-7)
1345 // CATEGORY: GLOBAL_SYSTEM_UI
1346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001347 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001348
1349 // ACTION: Volume dialog > Select non-active stream
1350 // SUBTYPE: stream (defined in AudioSystem.java)
1351 // CATEGORY: GLOBAL_SYSTEM_UI
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // ACTION: Adjust volume with hardware key
1356 // SUBTYPE: volume level (0-7)
1357 // CATEGORY: GLOBAL_SYSTEM_UI
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // ACTION: Volume dialog > Mute a stream by tapping icon
1362 // SUBTYPE: mute is 1, audible is 2
1363 // CATEGORY: GLOBAL_SYSTEM_UI
1364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001365 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // ACTION: Volume dialog > Change ringer mode by tapping icon
1368 // SUBTYPE: 2 is audible, 3 is vibrate
1369 // CATEGORY: GLOBAL_SYSTEM_UI
1370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001371 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // ACTION: Chooser shown (share target, file open, etc.)
1374 // CATEGORY: GLOBAL_SYSTEM_UI
1375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001376 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // ACTION: Chooser > User taps an app target
1379 // SUBTYPE: Index of target
1380 // CATEGORY: GLOBAL_SYSTEM_UI
1381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001382 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001383
1384 // ACTION: Chooser > User taps a service target
1385 // SUBTYPE: Index of target
1386 // CATEGORY: GLOBAL_SYSTEM_UI
1387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001388 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001389
1390 // ACTION: Chooser > User taps a standard target
1391 // SUBTYPE: Index of target
1392 // CATEGORY: GLOBAL_SYSTEM_UI
1393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001394 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001395
1396 // ACTION: QS Brightness Slider (with auto brightness disabled)
1397 // SUBTYPE: slider value
1398 // CATEGORY: QUICK_SETTINGS
1399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001400 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001401
1402 // ACTION: QS Brightness Slider (with auto brightness enabled)
1403 // SUBTYPE: slider value
1404 // CATEGORY: QUICK_SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Settings > Display > Brightness Slider
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001412
Christine Franks47175c32017-03-14 10:21:25 -07001413 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Display has entered dream mode
1419 // CATEGORY: GLOBAL_SYSTEM_UI
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Display has entered ambient notification mode
1424 // CATEGORY: GLOBAL_SYSTEM_UI
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: Overview
1429 // CATEGORY: GLOBAL_SYSTEM_UI
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Settings > About phone > Legal information
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // OPEN: Settings > Search > Perform search
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Settings > System UI Tuner
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Settings > System UI Tuner > Quick Settings
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Settings > System UI Tuner > Demo mode
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1459 // PACKAGE: Tile
1460 // CATEGORY: SETTINGS
1461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001462 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001463
1464 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1465 // PACKAGE: Tile
1466 // CATEGORY: SETTINGS
1467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001468 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001469
1470 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1471 // PACKAGE: Tile
1472 // CATEGORY: SETTINGS
1473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001474 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001475
1476 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1477 // PACKAGE: Icon
1478 // CATEGORY: SETTINGS
1479 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001480 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001481
1482 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1483 // PACKAGE: Icon
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1489 // SUBTYPE: false is disabled, true is enabled
1490 // CATEGORY: SETTINGS
1491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001492 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001493
1494 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1495 // SUBTYPE: false is disabled, true is enabled
1496 // CATEGORY: SETTINGS
1497 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001498 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001499
1500 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1501 // SUBTYPE: 0 is disabled, 1 is enabled
1502 // CATEGORY: SETTINGS
1503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001504 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001505
1506 // OPEN: Settings > Developer options > Inactive apps
1507 // CATEGORY: SETTINGS
1508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001509 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001510
1511 // ACTION: Long press home to bring up assistant
1512 // CATEGORY: GLOBAL_SYSTEM_UI
1513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001514 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001515
1516 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1517 // CATEGORY: SETTINGS
1518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001519 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001520
1521 // OPEN: Fingerprint Enroll > Find Sensor
1522 // CATEGORY: SETTINGS
1523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001524 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001525
1526 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1527 // CATEGORY: SETTINGS
1528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001529 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001530
1531 // OPEN: Fingerprint Enroll introduction
1532 // CATEGORY: SETTINGS
1533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001534 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001535
1536 // OPEN: Fingerprint Enroll onboarding
1537 // CATEGORY: SETTINGS
1538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001539 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001540
1541 // OPEN: Fingerprint Enroll > Let's Start!
1542 // CATEGORY: SETTINGS
1543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001544 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001545
1546 // OPEN: Fingerprint Enroll SUW > Let's Start!
1547 // CATEGORY: SETTINGS
1548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001549 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001550
1551 // OPEN: Fingerprint Enroll SUW > Find Sensor
1552 // CATEGORY: SETTINGS
1553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001554 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001555
1556 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1557 // CATEGORY: SETTINGS
1558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001559 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001560
1561 // OPEN: Fingerprint Enroll SUW introduction
1562 // CATEGORY: SETTINGS
1563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001564 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001565
1566 // OPEN: Fingerprint Enroll SUW onboarding
1567 // CATEGORY: SETTINGS
1568 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001569 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001570
1571 // ACTION: Add fingerprint > Enroll fingerprint
1572 // CATEGORY: SETTINGS
1573 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001574 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001575
1576 // ACTION: Authenticate using fingerprint
1577 // CATEGORY: SETTINGS
1578 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001579 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001580
1581 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1582 // CATEGORY: SETTINGS
1583 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001584 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001585
1586 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1587 // CATEGORY: SETTINGS
1588 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001589 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001590
1591 // ACTION: Double tap camera shortcut
1592 // CATEGORY: GLOBAL_SYSTEM_UI
1593 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001594 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001595
1596 // ACTION: Double twist camera shortcut
1597 // CATEGORY: GLOBAL_SYSTEM_UI
1598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001599 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001600
1601 // OPEN: QS Work Mode tile shown
1602 // ACTION: QS Work Mode tile tapped
1603 // SUBTYPE: 0 is off, 1 is on
1604 // CATEGORY: QUICK_SETTINGS
1605 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001606 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001607
1608 // OPEN: Settings > Developer Options > Background Check
1609 // CATEGORY: SETTINGS
1610 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001611 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001612
1613 // OPEN: QS Lock tile shown
1614 // ACTION: QS Lock tile tapped
1615 // SUBTYPE: 0 is off, 1 is on
1616 // CATEGORY: QUICK_SETTINGS
1617 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001618 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001619
1620 // OPEN: QS User Tile shown
1621 // CATEGORY: QUICK_SETTINGS
1622 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001623 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001624
1625 // OPEN: QS Battery tile shown
1626 // CATEGORY: QUICK_SETTINGS
1627 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001628 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001629
1630 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1631 // CATEGORY: SETTINGS
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001634
1635 // ACTION: Visual interruptions > No screen interuptions toggle
1636 // SUBTYPE: 0 is off, 1 is on
1637 // CATEGORY: SETTINGS
1638 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001639 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001640
1641 // ACTION: Visual interruptions > No notification light toggle
1642 // SUBTYPE: 0 is off, 1 is on
1643 // CATEGORY: SETTINGS
1644 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001645 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001646
Julia Reynolds005c8b92017-08-24 10:35:53 -04001647 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001648 // CATEGORY: SETTINGS
1649 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001650 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001651
1652 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1653 // PACKAGE: Selected SMS app
1654 // CATEGORY: SETTINGS
1655 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001656 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001657
1658 // OPEN: QS Color modification tile shown
1659 // ACTION: QS Color modification tile tapped
1660 // SUBTYPE: 0 is off, 1 is on
1661 // CATEGORY: QUICK_SETTINGS
1662 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001663 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001664
1665 // OPEN: QS Custom tile shown
1666 // ACTION: QS Work Mode tile tapped
1667 // CATEGORY: QUICK_SETTINGS
1668 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001669 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001670
1671 // ACTION: Visual interruptions > Never turn off the screen toggle
1672 // SUBTYPE: 0 is off, 1 is on
1673 // CATEGORY: SETTINGS
1674 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001675 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001676
Chris Wren7c516842016-03-01 16:44:32 -05001677 // ACTION: Overview > Long-press task, drag to enter split-screen
1678 // CATEGORY: GLOBAL_SYSTEM_UI
1679 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001680 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1681
Chris Wren7c516842016-03-01 16:44:32 -05001682 // ACTION: In App > Long-press Overview button to enter split-screen
1683 // CATEGORY: GLOBAL_SYSTEM_UI
1684 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001685 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1686
Chris Wren7c516842016-03-01 16:44:32 -05001687 // ACTION: In App > Swipe Overview button to enter split-screen
1688 // CATEGORY: GLOBAL_SYSTEM_UI
1689 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001690 ACTION_WINDOW_DOCK_SWIPE = 272;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: Launch profile-specific app > Confirm credentials
1693 // CATEGORY: GLOBAL_SYSTEM_UI
1694 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001695 PROFILE_CHALLENGE = 273;
1696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // OPEN: QS Battery detail panel
1698 // CATEGORY: GLOBAL_SYSTEM_UI
1699 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001700 QS_BATTERY_DETAIL = 274;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // OPEN: Overview > History
1703 // CATEGORY: GLOBAL_SYSTEM_UI
1704 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001705 OVERVIEW_HISTORY = 275;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: Overview > Page by tapping Overview button
1708 // CATEGORY: GLOBAL_SYSTEM_UI
1709 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001710 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: Overview > Select app
1713 // CATEGORY: GLOBAL_SYSTEM_UI
1714 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001715 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001716
Chris Wren7c516842016-03-01 16:44:32 -05001717 // ACTION: View emergency info
1718 // CATEGORY: GLOBAL_SYSTEM_UI
1719 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001720 ACTION_VIEW_EMERGENCY_INFO = 278;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: Edit emergency info activity
1723 // CATEGORY: SETTINGS
1724 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001725 ACTION_EDIT_EMERGENCY_INFO = 279;
1726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: Edit emergency info field
1728 // CATEGORY: SETTINGS
1729 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001730 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1731
Chris Wren7c516842016-03-01 16:44:32 -05001732 // ACTION: Add emergency contact
1733 // CATEGORY: SETTINGS
1734 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001735 ACTION_ADD_EMERGENCY_CONTACT = 281;
1736
Chris Wren7c516842016-03-01 16:44:32 -05001737 // ACTION: Delete emergency contact
1738 // CATEGORY: SETTINGS
1739 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001740 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1741
Chris Wren7c516842016-03-01 16:44:32 -05001742 // ACTION: Call emergency contact
1743 // CATEGORY: SETTINGS
1744 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001745 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001746
Chris Wren7c516842016-03-01 16:44:32 -05001747 // OPEN: QS Data Saver tile shown
1748 // ACTION: QS Data Saver tile tapped
1749 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001750 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001751
Robin Lee8c1306e2016-02-01 11:37:02 +00001752 // OPEN: Settings > Security > User credentials
1753 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001754 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001755 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001756
Chris Wren7c516842016-03-01 16:44:32 -05001757 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1758 // CATEGORY: GLOBAL_SYSTEM_UI
1759 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001760 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001761
1762 // Logged when the user scrolls through overview manually
1763 OVERVIEW_SCROLL = 287;
1764
1765 // Logged when the overview times out automatically selecting an app
1766 OVERVIEW_SELECT_TIMEOUT = 288;
1767
1768 // Logged when a user dismisses a task in overview
1769 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001770
1771 // Logged when the user modifying the notification importance slider.
1772 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1773
1774 // Logged when the user saves a modification to notification importance. Negative numbers
1775 // indicate the user lowered the importance; positive means they increased it.
1776 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001777
Chris Wren7c516842016-03-01 16:44:32 -05001778 // ACTION: Long-press power button, then tap "Take bug report" option.
1779 // CATEGORY: GLOBAL_SYSTEM_UI
1780 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001781 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1782
Chris Wren7c516842016-03-01 16:44:32 -05001783 // ACTION: Long-press power button, then long-press "Take bug report" option.
1784 // CATEGORY: GLOBAL_SYSTEM_UI
1785 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001786 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1787
Chris Wren7c516842016-03-01 16:44:32 -05001788 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1789 // CATEGORY: SETTINGS
1790 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001791 // Interactive bug report initiated from Settings.
1792 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1793
Chris Wren7c516842016-03-01 16:44:32 -05001794 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1795 // CATEGORY: SETTINGS
1796 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001797 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001798 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1799
Chris Wren7c516842016-03-01 16:44:32 -05001800 // ACTION: User tapped notification action to cancel a bug report
1801 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001802 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001803 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1804
Chris Wren7c516842016-03-01 16:44:32 -05001805 // ACTION: User tapped notification action to launch bug report details screen
1806 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001807 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001808 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1809
Chris Wren7c516842016-03-01 16:44:32 -05001810 // ACTION: User tapped notification action to take adition screenshot on bug report
1811 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001812 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001813 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1814
Chris Wren7c516842016-03-01 16:44:32 -05001815 // ACTION: User tapped notification to share bug report
1816 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001817 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001818 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1819
Chris Wren7c516842016-03-01 16:44:32 -05001820 // ACTION: User changed bug report name using the details screen
1821 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001822 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001823 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1824
Chris Wren7c516842016-03-01 16:44:32 -05001825 // ACTION: User changed bug report title using the details screen
1826 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001827 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001828 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1829
Chris Wren7c516842016-03-01 16:44:32 -05001830 // ACTION: User changed bug report description using the details screen
1831 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001832 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001833 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1834
Chris Wren7c516842016-03-01 16:44:32 -05001835 // ACTION: User tapped Save in the bug report details screen.
1836 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001837 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001838 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1839
Chris Wren7c516842016-03-01 16:44:32 -05001840 // ACTION: User tapped Cancel in the bug report details screen.
1841 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001842 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001843 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001844
1845 // Tuner: Open/close calibrate dialog.
1846 TUNER_CALIBRATE_DISPLAY = 305;
1847
1848 // Tuner: Open/close color and appearance.
1849 TUNER_COLOR_AND_APPEARANCE = 306;
1850
1851 // Tuner: Apply calibrate dialog.
1852 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1853
1854 // Tuner: Open/close night mode.
1855 TUNER_NIGHT_MODE = 308;
1856
1857 // Tuner: Change night mode.
1858 ACTION_TUNER_NIGHT_MODE = 309;
1859
1860 // Tuner: Change night mode auto.
1861 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1862
1863 // Tuner: Change night mode adjust dark theme.
1864 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1865
1866 // Tuner: Change night mode adjust tint.
1867 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1868
1869 // Tuner: Change night mode adjust brightness.
1870 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1871
1872 // Tuner: Change do not disturb in volume panel.
1873 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1874
1875 // Tuner: Change do not disturb volume buttons shortcut.
1876 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001877
1878 // Logs the action the user takes when an app crashed.
1879 ACTION_APP_CRASH = 316;
1880
1881 // Logs the action the user takes when an app ANR'd.
1882 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001883
1884 // Logged when a user double taps the overview button to launch the previous task
1885 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001886
1887 // Logged when we execute an app transition. This indicates the total delay from startActivity
1888 // until the app transition is starting to animate, in milliseconds.
1889 APP_TRANSITION_DELAY_MS = 319;
1890
1891 // Logged when we execute an app transition. This indicates the reason why the transition
1892 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1893 APP_TRANSITION_REASON = 320;
1894
1895 // Logged when we execute an app transition and we drew a starting window. This indicates the
1896 // delay from startActivity until the starting window was drawn.
1897 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1898
1899 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1900 // the delay from startActivity until all windows have been drawn.
1901 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1902
1903 // Logged when we execute an app transition. This indicates the component name of the current
1904 // transition.
1905 APP_TRANSITION_COMPONENT_NAME = 323;
1906
1907 // Logged when we execute an app transition. This indicates whether the process was already
1908 // running.
1909 APP_TRANSITION_PROCESS_RUNNING = 324;
1910
1911 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1912 // the transition was executed.
1913 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001914
Chris Wren38f98812016-07-13 14:28:40 -04001915 // ACTION: app requested access to a scoped directory, user granted it.
1916 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1917 // CATEGORY: GLOBAL_SYSTEM_UI
1918 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001919 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1920
Chris Wren38f98812016-07-13 14:28:40 -04001921 // ACTION: app requested access to a scoped directory, user denied it.
1922 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1923 // CATEGORY: GLOBAL_SYSTEM_UI
1924 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001925 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1926
Chris Wren38f98812016-07-13 14:28:40 -04001927 // ACTION: app requested access to a scoped directory, user granted it.
1928 // PACKAGE: app that requested access
1929 // CATEGORY: GLOBAL_SYSTEM_UI
1930 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001931 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1932
Chris Wren38f98812016-07-13 14:28:40 -04001933 // ACTION: app requested access to a scoped directory, user denied it.
1934 // PACKAGE: app that requested access.
1935 // CATEGORY: GLOBAL_SYSTEM_UI
1936 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001937 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1938
Chris Wren38f98812016-07-13 14:28:40 -04001939 // ACTION: app requested access to a directory user has already been granted
1940 // access before.
1941 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1942 // CATEGORY: GLOBAL_SYSTEM_UI
1943 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001944 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1945
Chris Wren38f98812016-07-13 14:28:40 -04001946 // ACTION: app requested access to a directory user has already been granted
1947 // access before.
1948 // PACKAGE: app that requested access.
1949 // CATEGORY: GLOBAL_SYSTEM_UI
1950 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001951 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001952
Chris Wren38f98812016-07-13 14:28:40 -04001953 // ACTION: Logged when the user slides a notification and reveals the gear
1954 // beneath it.
1955 // CATEGORY: NOTIFICATION
1956 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001957 ACTION_REVEAL_GEAR = 332;
1958
Chris Wren38f98812016-07-13 14:28:40 -04001959 // ACTION: Logged when the user taps on the gear beneath a notification.
1960 // CATEGORY: NOTIFICATION
1961 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001962 ACTION_TOUCH_GEAR = 333;
1963
Ruben Brunke24b9a62016-02-16 21:38:24 -08001964 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001965 // CATEGORY: SETTINGS
1966 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001967 VR_MANAGE_LISTENERS = 334;
1968
Jason Monk6f5354d2016-03-08 14:18:08 -05001969 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001970 // CATEGORY: SETTINGS
1971 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001972 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001973
Jason Monk6f5354d2016-03-08 14:18:08 -05001974 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001975 // CATEGORY: SETTINGS
1976 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001977 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001978
Jason Monk6f5354d2016-03-08 14:18:08 -05001979 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001980 // CATEGORY: SETTINGS
1981 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001982 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001983
Jason Monk6f5354d2016-03-08 14:18:08 -05001984 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001985 // CATEGORY: SETTINGS
1986 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001987 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001988
Jason Monk6f5354d2016-03-08 14:18:08 -05001989 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001990 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001991 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001992
Jason Monk6f5354d2016-03-08 14:18:08 -05001993 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001994 // CATEGORY: SETTINGS
1995 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001996 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001997
Jason Monk6f5354d2016-03-08 14:18:08 -05001998 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001999 // CATEGORY: SETTINGS
2000 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002001 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04002002
Jason Monk6f5354d2016-03-08 14:18:08 -05002003 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04002004 // CATEGORY: SETTINGS
2005 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002006 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04002007
Jason Monk6f5354d2016-03-08 14:18:08 -05002008 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04002009 // CATEGORY: SETTINGS
2010 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002011 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04002012
Jason Monk6f5354d2016-03-08 14:18:08 -05002013 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04002014 // CATEGORY: SETTINGS
2015 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002016 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04002017
Jason Monk6f5354d2016-03-08 14:18:08 -05002018 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04002019 // CATEGORY: SETTINGS
2020 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002021 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04002022
Jason Monk6f5354d2016-03-08 14:18:08 -05002023 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04002024 // CATEGORY: SETTINGS
2025 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002026 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04002027
Jason Monk6f5354d2016-03-08 14:18:08 -05002028 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04002029 // CATEGORY: SETTINGS
2030 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002031 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04002032
Jason Monk6f5354d2016-03-08 14:18:08 -05002033 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04002034 // CATEGORY: SETTINGS
2035 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002036 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04002037
Jason Monk6f5354d2016-03-08 14:18:08 -05002038 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04002039 // CATEGORY: SETTINGS
2040 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002041 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
2042
2043 // Used for generic logging of Settings Preference Persistence, should not be used
2044 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04002045 // CATEGORY: SETTINGS
2046 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002047 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04002048
Jason Monk6f5354d2016-03-08 14:18:08 -05002049 // Settings -> Apps -> Gear -> Special access
2050 SPECIAL_ACCESS = 351;
2051
Muyuan Lia2129992016-03-03 18:30:39 -08002052 // Logs that the user docks window via shortcut key.
2053 WINDOW_DOCK_SHORTCUTS = 352;
2054
Felipe Lemeadccb992016-03-09 17:40:49 -08002055 // User already denied access to the request folder; action takes an integer
2056 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002057 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002058 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
2059
2060 // User already denied access to the request folder; action pass package name
2061 // of calling package.
2062 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
2063
2064 // User denied access to the request folder and checked 'Do not ask again';
2065 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002066 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002067 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
2068
2069 // User denied access to the request folder and checked 'Do not ask again';
2070 // action pass package name of calling package.
2071 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2072
Winson3b6ba1a2016-03-22 15:37:54 -07002073 // Logged when a user dismisses all task in overview
2074 OVERVIEW_DISMISS_ALL = 357;
2075
Jason Monk96defbe2016-03-29 16:51:03 -04002076 // Quick Settings -> Edit
2077 QS_EDIT = 358;
2078
2079 // Quick Settings -> Edit -> Overflow -> Reset
2080 ACTION_QS_EDIT_RESET = 359;
2081
2082 // QS -> Edit - Drag a tile out of the active tiles.
2083 // The _SPEC contains either the spec of the tile or
2084 // the package of the 3rd party app in the PKG field.
2085 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2086 ACTION_QS_EDIT_REMOVE = 361;
2087
2088 // QS -> Edit - Drag a tile into the active tiles.
2089 // The _SPEC contains either the spec of the tile or
2090 // the package of the 3rd party app in the PKG field.
2091 ACTION_QS_EDIT_ADD_SPEC = 362;
2092 ACTION_QS_EDIT_ADD = 363;
2093
2094 // QS -> Edit - Drag a tile within the active tiles.
2095 // The _SPEC contains either the spec of the tile or
2096 // the package of the 3rd party app in the PKG field.
2097 ACTION_QS_EDIT_MOVE_SPEC = 364;
2098 ACTION_QS_EDIT_MOVE = 365;
2099
2100 // Long-press on a QS tile. Tile spec in package field.
2101 ACTION_QS_LONG_PRESS = 366;
2102
Anna Galuszadad131f2016-03-22 13:49:02 -07002103 // OPEN: SUW Welcome Screen -> Vision Settings
2104 // CATEGORY: SETTINGS
2105 // OS: N
2106 SUW_ACCESSIBILITY = 367;
2107
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002108 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2109 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2110 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002111 // ACTION: New magnification gesture configuration is chosen
2112 // SUBTYPE: 0 is off, 1 is on
2113 // CATEGORY: SETTINGS
2114 // OS: N
2115 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2116
2117 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2118 // ACTION: New font size is chosen
2119 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2120 // CATEGORY: SETTINGS
2121 // OS: N
2122 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2123
2124 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2125 // ACTION: New display size is chosen
2126 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2127 // CATEGORY: SETTINGS
2128 // OS: N
2129 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2130
2131 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2132 // ACTION: New screen reader configuration is chosen
2133 // SUBTYPE: 0 is off, 1 is on
2134 // CATEGORY: SETTINGS
2135 // OS: N
2136 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2137
Jason Monkc3620392016-03-30 15:46:03 -04002138 // ------- Begin N Settings conditionals -----
2139 // Conditionals are the green bars at the top of the settings dashboard
2140 // All conditionals will have visible/hide events onResume/onPause
2141 // but they will also be used as extra ints in the
2142 // dismiss/expand/collapse/click/button events
2143
2144 // swipe away conditional
2145 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2146
2147 // click on collapsed conditional or clicks expand button
2148 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2149
2150 // click collapse button on expanded conditional
2151 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2152
2153 // click main area of expanded conditional
2154 ACTION_SETTINGS_CONDITION_CLICK = 375;
2155
2156 // click a direct button on expanded conditional
2157 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2158
2159 // Airplane mode on
2160 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2161 // AKA Data saver on
2162 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2163 // Battery saver on
2164 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2165 // Cellular data off
2166 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2167 // Do not disturb on
2168 SETTINGS_CONDITION_DND = 381;
2169 // Hotspot on
2170 SETTINGS_CONDITION_HOTSPOT = 382;
2171 // Work profile off
2172 SETTINGS_CONDITION_WORK_MODE = 383;
2173
Jason Monk1b5d87b2016-03-30 16:03:15 -04002174 // ------- Begin N Settings suggestions -----
2175 // Since suggestions come from system apps, suggestions will
2176 // have generic constants and the package providing the suggestion
2177 // will be put in the package field. For suggestions in the Settings
2178 // package, the class name will be filled in instead (since settings
2179 // provides several suggetions).
2180
2181 // Settings shown/hidden on main settings dashboard.
2182 // These are actually visibility events, but visible/hidden doesn't
2183 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002184 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2185 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002186
2187 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002188 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002189
2190 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002191 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002192
Jason Monk397df682016-03-28 15:48:34 -04002193 // Settings > Apps > Gear > Special Access > Premium SMS access
2194 PREMIUM_SMS_ACCESS = 388;
2195
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002196 // Logged when the user resizes the docked stack. Arguments:
2197 // 0: Split 50:50
2198 // 1: Docked smaller
2199 // 2: Docked larger
2200 ACTION_WINDOW_DOCK_RESIZE = 389;
2201
2202 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2203 // 0: Docked gets maximized
2204 // 1: Fullscreen gets maximized
2205 ACTION_WINDOW_UNDOCK_MAX = 390;
2206
2207 // User tried to dock an unresizable app.
2208 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2209
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002210 // System UI Tuner > Other > Power notification controls
2211 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2212
2213 // System UI Tuner > Other > Power notification controls > Toggle on/off
2214 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2215
Chris Wren38f98812016-07-13 14:28:40 -04002216 // Action: user enable / disabled data saver using Settings
2217 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2218 // VALUE: 1 for enabled, 0 for disabled
2219 // CATEGORY: SETTINGS
2220 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002221 ACTION_DATA_SAVER_MODE = 394;
2222
Chris Wren38f98812016-07-13 14:28:40 -04002223 // User whitelisted an app for Data Saver mode; action pass package name of app
2224 // Action: user enable / disabled data saver using Settings
2225 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2226 // or
2227 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2228 // VALUE: package name of APP
2229 // CATEGORY: SETTINGS
2230 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002231 ACTION_DATA_SAVER_WHITELIST = 395;
2232
Chris Wren38f98812016-07-13 14:28:40 -04002233 // User blacklisted an app for Data Saver mode; action pass package name of app
2234 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2235 // VALUE: package name of APP
2236 // CATEGORY: SETTINGS
2237 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002238 ACTION_DATA_SAVER_BLACKLIST = 396;
2239
Adrian Roosceeb04c2016-04-25 14:00:54 -07002240 // User opened a remote input view associated with a notification. Passes package name of app
2241 // that posted the notification. Note that this can also happen transiently during notification
2242 // reinflation.
2243 ACTION_REMOTE_INPUT_OPEN = 397;
2244
2245 // User attempt to send data through a remote input view associated with a notification.
2246 // Passes package name of app that posted the notification. May succeed or fail.
2247 ACTION_REMOTE_INPUT_SEND = 398;
2248
2249 // Failed attempt to send data through a remote input view associated with a
2250 // notification. Passes package name of app that posted the notification.
2251 ACTION_REMOTE_INPUT_FAIL = 399;
2252
2253 // User closed a remote input view associated with a notification. Passes package name of app
2254 // that posted the notification. Note that this can also happen transiently during notification
2255 // reinflation.
2256 ACTION_REMOTE_INPUT_CLOSE = 400;
2257
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002258 // OPEN: Settings > Accounts > Work profile settings
2259 // CATEGORY: SETTINGS
2260 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2261
Jason Monk25118d12016-05-10 13:25:50 -04002262 // Settings -> Dev options -> Convert to file encryption
2263 CONVERT_FBE = 402;
2264
2265 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2266 CONVERT_FBE_CONFIRM = 403;
2267
2268 // Settings -> Dev options -> Running services
2269 RUNNING_SERVICES = 404;
2270
Jason Monka1f697f2016-05-06 15:09:44 -04002271 // The dialog shown by 3P intent to change current webview implementation.
2272 WEBVIEW_IMPLEMENTATION = 405;
2273
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002274 // Settings launched from expanded quick settings.
2275 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2276
Chris Wren698b1702016-05-23 11:16:32 -04002277 // Notification expansion state toggled by the expand affordance.
2278 ACTION_NOTIFICATION_EXPANDER = 407;
2279
2280 // Notification group expansion state toggled by the expand affordance.
2281 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2282
Chris Wren7ee84182016-05-27 13:34:02 -04002283
Chris Wren6abeeb92016-05-26 14:44:38 -04002284 // Notification expansion state toggled by the expand gesture.
2285 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2286
2287 // Notification group expansion state toggled by the expand gesture.
2288 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2289
Bhavik Singh3451da42016-06-01 18:25:59 -07002290 // User performs gesture that activates the ambient display
2291 // 1: Gesture performed is Nudge
2292 // 2: Gesture performed is Pickup
2293 // 4: Gesture performed is Double Tap
Lucas Dupinc81702e2018-08-09 15:41:55 -07002294 // 6: Gesture performed is Reach
Bhavik Singh3451da42016-06-01 18:25:59 -07002295 ACTION_AMBIENT_GESTURE = 411;
2296
Jason Monk9fa5f822016-05-11 10:26:31 -04002297 // ---- End N Constants, all N constants go above this line ----
2298
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002299 // ------- Begin N App Disambig Shade -----
2300 // Application disambig shade opened or closed with a featured app.
2301 // These are actually visibility events, but visible/hidden doesn't
2302 // take a package, so these are being logged as actions.
2303 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002304 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2305 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002306
2307 // Application disambig shade opened or closed without a featured app.
2308 // These are actually visibility events, but visible/hidden doesn't
2309 // take a package, so these are being logged as actions.
2310 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002311 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2312 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002313
2314 // User opens in an app by pressing “Always” in the application disambig shade.
2315 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002316 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002317
2318 // User opens in an app by pressing “Just Once” in the application disambig shade.
2319 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002320 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002321
2322 // User opens in an app by tapping on its name in the application disambig shade.
2323 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002324 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002325
Daniel Nishi010aa492016-05-11 09:42:24 -07002326 // OPEN: Settings > Internal storage > Storage manager
2327 // CATEGORY: SETTINGS
2328 STORAGE_MANAGER_SETTINGS = 458;
2329
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002330 // OPEN: Settings -> Gestures
2331 // CATEGORY: SETTINGS
2332 SETTINGS_GESTURES = 459;
2333
Daniel Nishi597e67f2016-05-18 13:56:13 -07002334 // ------ Begin Deletion Helper ------
2335 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2336 // SUBTYPE: false is off, true is on
2337 // CATEGORY: SETTINGS
2338 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002339
Daniel Nishi597e67f2016-05-18 13:56:13 -07002340 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2341 // SUBTYPE: false is off, true is on
2342 // CATEGORY: SETTINGS
2343 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2344
2345 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2346 // CATEGORY: SETTINGS
2347 // PACKAGE: Unchecked app
2348 ACTION_DELETION_SELECTION_APP_ON = 462;
2349
2350 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2351 // CATEGORY: SETTINGS
2352 // PACKAGE: Checked app
2353 ACTION_DELETION_SELECTION_APP_OFF = 463;
2354
2355 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2356 // SUBTYPE: false is expanded, true is collapsed
2357 // CATEGORY: SETTINGS
2358 ACTION_DELETION_APPS_COLLAPSED = 464;
2359
2360 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2361 // SUBTYPE: false is off, true is on
2362 // CATEGORY: SETTINGS
2363 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2364
2365 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2366 // SUBTYPE: false is expanded, true is collapsed
2367 // CATEGORY: SETTINGS
2368 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2369
2370 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2371 // CATEGORY: SETTINGS
2372 ACTION_DELETION_HELPER_CLEAR = 467;
2373
2374 // ACTION: Settings > Storage > Free Up Space > Cancel
2375 // CATEGORY: SETTINGS
2376 ACTION_DELETION_HELPER_CANCEL = 468;
2377
2378 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2379 // CATEGORY: SETTINGS
2380 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2381
2382 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2383 // CATEGORY: SETTINGS
2384 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2385
2386 // Deletion helper encountered an error during package deletion.
2387 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2388
2389 // Deletion helper encountered an error during downloads folder deletion.
2390 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2391
2392 // Deletion helper encountered an error during photo and video deletion.
2393 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2394
Fan Zhang5e956e82016-05-06 10:51:47 -07002395 // OPEN: Settings (root page if there are multiple tabs)
2396 // CATEGORY: SETTINGS
2397 DASHBOARD_CONTAINER = 474;
2398
2399 // OPEN: Settings -> SUPPORT TAB
2400 // CATEGORY: SETTINGS
2401 SUPPORT_FRAGMENT = 475;
2402
2403 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002404 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002405 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002406
2407 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002408 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002409 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2410
Fan Zhanga1985502016-06-16 16:48:38 -07002411 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002412 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002413 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2414
2415 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002416 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002417 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2418
2419 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002420 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002421 ACTION_SUPPORT_SIGN_IN = 480;
2422
2423 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002424 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002425 ACTION_SUPPORT_PHONE = 481;
2426
2427 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002428 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002429 ACTION_SUPPORT_CHAT = 482;
2430
2431 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002432 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002433 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2434
2435 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002436 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002437 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2438
Fan Zhang80807212016-06-30 12:26:55 -07002439 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002440 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002441 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2442
2443 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002444 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002445 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2446
2447 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002448 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002449 ACTION_SUPPORT_DIAL_TOLLED = 487;
2450
Justin Klaassen19494272016-07-18 21:38:24 -07002451 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002452 // CATEGORY: SETTINGS
2453 NIGHT_DISPLAY_SETTINGS = 488;
2454
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002455 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002456 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002457 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2458
Jason Monk484fd362016-07-13 15:24:32 -04002459 // Settings launched from collapsed quick settings.
2460 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2461
Justin Klaassen19494272016-07-18 21:38:24 -07002462 // OPEN: QS Night Light tile shown
2463 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002464 // SUBTYPE: 0 is off, 1 is on
2465 // CATEGORY: QUICK_SETTINGS
2466 QS_NIGHT_DISPLAY = 491;
2467
Justin Klaassen19494272016-07-18 21:38:24 -07002468 // Night Light on
2469 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2470
Doris Ling3c00afb2016-07-19 17:04:21 -07002471 // System navigation key up.
2472 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2473
2474 // System navigation key down.
2475 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2476
Doris Ling6dd3e462016-08-04 13:17:27 -07002477 // OPEN: Settings > Display -> Ambient Display
2478 // CATEGORY: SETTINGS
2479 ACTION_AMBIENT_DISPLAY = 495;
2480
Adrian Roos159ef7b2016-02-25 11:58:32 -08002481 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2482
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002483 // ACTION: The lockscreen gets shown because the SIM card was removed
2484 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2485 // CATEGORY: GLOBAL_SYSTEM_UI
2486 // OS: N-MR2
2487 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2488
2489 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2490
Clara Bayarric17a5982016-04-15 12:26:47 +01002491 // ------- Begin N Keyboard Shortcuts Helper -----
2492 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002493 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002494
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002495 // OPEN: Print Preview screen
2496 // Package: Package of app where print job is from
2497 PRINT_PREVIEW = 501;
2498
2499 // OPEN: User expands full print job options shade in print preview.
2500 PRINT_JOB_OPTIONS = 502;
2501
2502 // OPEN: “All Printers” screen for selecting printer
2503 // Subtype: # of printers listed
2504 PRINT_ALL_PRINTERS = 503;
2505
2506 // OPEN: “Add Printers” screen for adding printers
2507 // Subtype: # of enabled print service listed
2508 PRINT_ADD_PRINTERS = 504;
2509
2510 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2511 // Package: Package of print service.
2512 ACTION_PRINT = 505;
2513
2514 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2515 // Count all ACTION_PRINTER_SELECT_ALL actions.
2516 // Package: Package of print service tied to printer
2517 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2518
2519 // ACTION: User selects a printer from the “All printers” screen.
2520 // Package: Package of print service tied to printer
2521 ACTION_PRINTER_SELECT_ALL = 507;
2522
2523 // ACTION: User changes an option for the print job from print preview.
2524 // Subtype: 1: Copies
2525 // 2: Color mode
2526 // 3: Duplex mode
2527 // 4: Media (==Paper) size
2528 // 5: Orientation
2529 // 6: Page range
2530 // Package: Package of print service tied to printer
2531 ACTION_PRINT_JOB_OPTIONS = 508;
2532
2533 // ACTION: User searches for printer from All Printers
2534 ACTION_PRINTER_SEARCH = 509;
2535
2536 // ACTION: User selects “Add print service” button from All Printers
2537 ACTION_PRINT_SERVICE_ADD = 510;
2538
2539 // ACTION: User Enables/Disables Print Service via any means.
2540 // Subtype: 0: Enabled
2541 // 1: Disabled
2542 ACTION_PRINT_SERVICE_TOGGLE = 511;
2543
2544 // ACTION: User installs print recommended print service
2545 // Package: Package of print service
2546 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2547
Doris Ling88a6b162016-08-08 16:17:43 -07002548 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2549 // SUBTYPE: sub settings classname
2550 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2551
Fan Zhang92c60382016-08-08 14:03:53 -07002552 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2553 USER_DICTIONARY_SETTINGS = 514;
2554
2555 // OPEN: Settings > Date & time > Select time zone
2556 ZONE_PICKER = 515;
2557
2558 // OPEN: Settings > Security > Device administrators
2559 DEVICE_ADMIN_SETTINGS = 516;
2560
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002561 // ACTION: Managed provisioning was launched to set this package as DPC app.
2562 // PACKAGE: DPC's package name.
2563 PROVISIONING_DPC_PACKAGE_NAME = 517;
2564
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002565 // ACTION: Managed provisioning triggered DPC installation.
2566 // PACKAGE: Package name of package which installed DPC.
2567 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2568
2569 // ACTION: Logged when provisioning activity finishes.
2570 // TIME: Indicates time taken by provisioning activity to finish in MS.
2571 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2572
2573 // ACTION: Logged when preprovisioning activity finishes.
2574 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2575 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2576
2577 // ACTION: Logged when encrypt device activity finishes.
2578 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2579 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2580
2581 // ACTION: Logged when web activity finishes.
2582 // TIME: Indicates total time taken by web activity to finish in MS.
2583 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2584
2585 // ACTION: Logged when trampoline activity finishes.
2586 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2587 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2588
2589 // ACTION: Logged when encryption activity finishes.
2590 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2591 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2592
2593 // ACTION: Logged when finalization activity finishes.
2594 // TIME: Indicates time taken by finalization activity to finish in MS.
2595 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002596
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002597 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002598 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002599
Fan Zhang95094182016-08-24 18:14:16 -07002600 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002601 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002602
2603 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002604 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002605
2606 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002607 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002608
2609 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002610 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002611
2612 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002613 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002614
Fan Zhangc1352ae2016-09-16 12:46:11 -07002615 // OPEN: Settings > Security > Use one lock dialog
2616 DIALOG_UNIFICATION_CONFIRMATION = 532;
2617
2618 // OPEN: Settings > Security > User Credential
2619 DIALOG_USER_CREDENTIAL = 533;
2620
2621 // OPEN: Settings > Accounts > Remove account
2622 DIALOG_REMOVE_USER = 534;
2623
2624 // OPEN: Settings > Accounts > Confirm auto sync dialog
2625 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2626
2627 // OPEN: Settings > Apps > Dialog for running service details
2628 DIALOG_RUNNIGN_SERVICE = 536;
2629
2630 // OPEN: Settings > Dialog for hiding home settings
2631 DIALOG_NO_HOME = 537;
2632
2633 // OPEN: Settings > Bluetooth > Rename this device
2634 DIALOG_BLUETOOTH_RENAME = 538;
2635
2636 // OPEN: Settings > Bluetooth > Paired device profile
2637 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2638
2639 // OPEN: Settings > Battery optimization > details for app
2640 DIALOG_HIGH_POWER_DETAILS = 540;
2641
2642 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2643 DIALOG_KEYBOARD_LAYOUT = 541;
2644
2645 // OPEN: Settings > Wifi > WPS Setup dialog
2646 DIALOG_WPS_SETUP = 542;
2647
2648 // OPEN: Settings > WIFI Scan permission dialog
2649 DIALOG_WIFI_SCAN_MODE = 543;
2650
2651 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2652 DIALOG_WIFI_SKIP = 544;
2653
2654 // OPEN: Settings > Wireless > VPN > Config dialog
2655 DIALOG_LEGACY_VPN_CONFIG = 545;
2656
2657 // OPEN: Settings > Wireless > VPN > Config dialog for app
2658 DIALOG_VPN_APP_CONFIG = 546;
2659
2660 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2661 DIALOG_VPN_CANNOT_CONNECT = 547;
2662
2663 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2664 DIALOG_VPN_REPLACE_EXISTING = 548;
2665
2666 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2667 DIALOG_BILLING_CYCLE = 549;
2668
2669 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2670 DIALOG_BILLING_BYTE_LIMIT = 550;
2671
2672 // OPEN: Settings > Billing cycle > turn on data limit dialog
2673 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2674
2675 // OPEN: Settings > Service > Turn off notification access dialog
2676 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2677
2678 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2679 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2680
2681 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2682 DIALOG_ZEN_ACCESS_GRANT = 554;
2683
2684 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2685 DIALOG_ZEN_ACCESS_REVOKE = 555;
2686
2687 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2688 DIALOG_ZEN_TIMEPICKER = 556;
2689
2690 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2691 DIALOG_SERVICE_ACCESS_WARNING = 557;
2692
2693 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2694 DIALOG_APP_INFO_ACTION = 558;
2695
2696 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2697 DIALOG_VOLUME_FORGET = 559;
2698
2699 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2700 DIALOG_VOLUME_SLOW_WARNING = 560;
2701
2702 // OPEN: Settings > Storage > Dialog for initializing a volume
2703 DIALOG_VOLUME_INIT = 561;
2704
2705 // OPEN: Settings > Storage > Dialog for unmounting a volume
2706 DIALOG_VOLUME_UNMOUNT = 562;
2707
2708 // OPEN: Settings > Storage > Dialog for renaming a volume
2709 DIALOG_VOLUME_RENAME = 563;
2710
2711 // OPEN: Settings > Storage > Dialog for clear cache
2712 DIALOG_STORAGE_CLEAR_CACHE = 564;
2713
2714 // OPEN: Settings > Storage > Dialog for system info
2715 DIALOG_STORAGE_SYSTEM_INFO = 565;
2716
2717 // OPEN: Settings > Storage > Dialog for other info
2718 DIALOG_STORAGE_OTHER_INFO = 566;
2719
2720 // OPEN: Settings > Storage > Dialog for user info
2721 DIALOG_STORAGE_USER_INFO = 567;
2722
2723 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2724 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2725
2726 // OPEN: Settings > Add fingerprint > Error dialog
2727 DIALOG_FINGERPINT_ERROR = 569;
2728
2729 // OPEN: Settings > Fingerprint > Rename or delete dialog
2730 DIALOG_FINGERPINT_EDIT = 570;
2731
2732 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2733 DIALOG_FINGERPINT_DELETE_LAST = 571;
2734
2735 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2736 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2737
2738 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2739 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2740
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002741 // OPEN: Settings > Proxy Selector error dialog
2742 DIALOG_PROXY_SELECTOR_ERROR = 574;
2743
2744 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2745 DIALOG_WIFI_P2P_DISCONNECT = 575;
2746
2747 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2748 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2749
2750 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2751 DIALOG_WIFI_P2P_RENAME = 577;
2752
2753 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2754 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2755
2756 // OPEN: Settings > APN > Restore default dialog
2757 DIALOG_APN_RESTORE_DEFAULT = 579;
2758
2759 // OPEN: Settings > Dream > When to dream dialog
2760 DIALOG_DREAM_START_DELAY = 580;
2761
2762 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2763 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2764
2765 // OPEN: Settings > Tether > AP setting dialog
2766 DIALOG_AP_SETTINGS = 582;
2767
2768 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2769 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2770
2771 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2772 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2773
2774 // OPEN: Settings > Account > Remove account dialog
2775 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2776
2777 // OPEN: Settings > Account > Remove account failed dialog
2778 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2779
2780 // OPEN: Settings > Account > Cannot do onetime sync dialog
2781 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2782
2783 // OPEN: Settings > Display > Night light > Set start time dialog
2784 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2785
2786 // OPEN: Settings > Display > Night light > Set end time dialog
2787 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2788
2789 // OPEN: Settings > User > Edit info dialog
2790 DIALOG_USER_EDIT = 590;
2791
2792 // OPEN: Settings > User > Confirm remove dialog
2793 DIALOG_USER_REMOVE = 591;
2794
2795 // OPEN: Settings > User > Enable calling dialog
2796 DIALOG_USER_ENABLE_CALLING = 592;
2797
2798 // OPEN: Settings > User > Enable calling and sms dialog
2799 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2800
2801 // OPEN: Settings > User > Cannot manage device message dialog
2802 DIALOG_USER_CANNOT_MANAGE = 594;
2803
2804 // OPEN: Settings > User > Add user dialog
2805 DIALOG_USER_ADD = 595;
2806
2807 // OPEN: Settings > User > Setup user dialog
2808 DIALOG_USER_SETUP = 596;
2809
2810 // OPEN: Settings > User > Setup profile dialog
2811 DIALOG_USER_SETUP_PROFILE = 597;
2812
2813 // OPEN: Settings > User > Choose user type dialog
2814 DIALOG_USER_CHOOSE_TYPE = 598;
2815
2816 // OPEN: Settings > User > Need lockscreen dialog
2817 DIALOG_USER_NEED_LOCKSCREEN = 599;
2818
2819 // OPEN: Settings > User > Confirm exit guest mode dialog
2820 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2821
2822 // OPEN: Settings > User > Edit user profile dialog
2823 DIALOG_USER_EDIT_PROFILE = 601;
2824
2825 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2826 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2827
2828 // OPEN: Settings > Wifi > Edit AP dialog
2829 DIALOG_WIFI_AP_EDIT = 603;
2830
2831 // OPEN: Settings > Wifi > PBC Config dialog
2832 DIALOG_WIFI_PBC = 604;
2833
2834 // OPEN: Settings > Wifi > Display pin dialog
2835 DIALOG_WIFI_PIN = 605;
2836
2837 // OPEN: Settings > Wifi > Write config to NFC dialog
2838 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002839 // OPEN: Settings > Date > Date picker dialog
2840 DIALOG_DATE_PICKER = 607;
2841
2842 // OPEN: Settings > Date > Time picker dialog
2843 DIALOG_TIME_PICKER = 608;
2844
2845 // OPEN: Settings > Wireless > Manage wireless plan dialog
2846 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002847
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002848 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002849 PROVISIONING_NETWORK_TYPE = 610;
2850
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002851 // ACTION: Logs action which triggered provisioning.
2852 PROVISIONING_ACTION = 611;
2853
Mahaver Chopraab282072016-10-06 19:19:23 +01002854 // ACTION: Logs extra passed by the dpc while provisioning.
2855 PROVISIONING_EXTRA = 612;
2856
Salvador Martinez64867c12016-10-14 15:25:09 -07002857 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2858 BLUETOOTH_DIALOG_FRAGMENT = 613;
2859
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002860 // ACTION: Logs provisioning started by zero touch.
2861 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2862
2863 // ACTION: Logs provisioning started by NFC bump.
2864 PROVISIONING_ENTRY_POINT_NFC = 615;
2865
2866 // ACTION: Logs provisioning started using QR code.
2867 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2868
2869 // ACTION: Logs provisioning started using adb.
2870 PROVISIONING_ENTRY_POINT_ADB = 617;
2871
2872 // ACTION: Logs provisioning started by trusted source.
2873 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2874
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002875 // ACTION: Logged when copy account task finishes.
2876 // TIME: Indicates time taken by copy account task to finish in MS.
2877 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2878
2879 // ACTION: Logged when create profile task finishes.
2880 // TIME: Indicates time taken by create profile task to finish in MS.
2881 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2882
2883 // ACTION: Logged when start profile task finishes.
2884 // TIME: Indicates time taken by start profile task to finish in MS.
2885 PROVISIONING_START_PROFILE_TASK_MS = 621;
2886
2887 // ACTION: Logged when download package task finishes.
2888 // TIME: Indicates time taken by download package task to finish in MS.
2889 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2890
2891 // ACTION: Logged when install package task finishes.
2892 // TIME: Indicates time taken by install package task to finish in MS.
2893 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2894
2895 // ACTION: User cancelled provisioning.
2896 PROVISIONING_CANCELLED = 624;
2897
2898 // ACTION: Logged when provisioning throws an error.
2899 PROVISIONING_ERROR = 625;
2900
2901 // ACTION: Logs the status of copying user account during provisioning.
2902 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2903
2904 // ACTION: Logs the end to end time taken by all provisioning tasks.
2905 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2906
tmfanga3f63a92018-11-05 19:05:18 +08002907 // OPEN: Settings > Security
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002908 // CATEGORY: SETTINGS
2909 // OS: O
2910 ENTERPRISE_PRIVACY_SETTINGS = 628;
2911
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002912 // ACTION: Longpress on a TextView.
2913 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2914 // CATEGORY: TEXT_CONTROLS
2915 // OS: O
2916 TEXT_LONGPRESS = 629;
2917
Chris Wren3824c392017-11-27 12:54:14 -05002918 // ACTION: An app requested an unknown permission
2919 // PACKAGE: The package name of the app requesting the permission
2920 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002921 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2922
Chris Wren3824c392017-11-27 12:54:14 -05002923 // ACTION: An app was granted an unknown permission
2924 // PACKAGE: The package name of the app that was granted the permission
2925 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002926 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2927
Chris Wren3824c392017-11-27 12:54:14 -05002928 // ACTION: An app requested an unknown permission and the request was denied
2929 // PACKAGE: The package name of the app requesting the permission
2930 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002931 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2932
Chris Wren3824c392017-11-27 12:54:14 -05002933 // ACTION: An unknown permission was revoked for an app
2934 // PACKAGE: The package name of the app the permission was revoked for
2935 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002936 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2937
Chris Wren3824c392017-11-27 12:54:14 -05002938 // ACTION: An app requested the permission READ_CALENDAR
2939 // PACKAGE: The package name of the app requesting the permission
2940 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002941 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2942
Chris Wren3824c392017-11-27 12:54:14 -05002943 // ACTION: An app was granted the permission READ_CALENDAR
2944 // PACKAGE: The package name of the app that was granted the permission
2945 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002946 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2947
Chris Wren3824c392017-11-27 12:54:14 -05002948 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2949 // PACKAGE: The package name of the app requesting the permission
2950 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002951 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2952
Chris Wren3824c392017-11-27 12:54:14 -05002953 // ACTION: The permission READ_CALENDAR was revoked for an app
2954 // PACKAGE: The package name of the app the permission was revoked for
2955 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002956 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2957
Chris Wren3824c392017-11-27 12:54:14 -05002958 // ACTION: An app requested the permission WRITE_CALENDAR
2959 // PACKAGE: The package name of the app requesting the permission
2960 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002961 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2962
Chris Wren3824c392017-11-27 12:54:14 -05002963 // ACTION: An app was granted the permission WRITE_CALENDAR
2964 // PACKAGE: The package name of the app that was granted the permission
2965 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002966 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2967
Chris Wren3824c392017-11-27 12:54:14 -05002968 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2969 // PACKAGE: The package name of the app requesting the permission
2970 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002971 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2972
Chris Wren3824c392017-11-27 12:54:14 -05002973 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2974 // PACKAGE: The package name of the app the permission was revoked for
2975 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002976 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2977
Chris Wren3824c392017-11-27 12:54:14 -05002978 // ACTION: An app requested the permission CAMERA
2979 // PACKAGE: The package name of the app requesting the permission
2980 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002981 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2982
Chris Wren3824c392017-11-27 12:54:14 -05002983 // ACTION: An app was granted the permission CAMERA
2984 // PACKAGE: The package name of the app that was granted the permission
2985 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002986 ACTION_PERMISSION_GRANT_CAMERA = 643;
2987
Chris Wren3824c392017-11-27 12:54:14 -05002988 // ACTION: An app requested the permission CAMERA and the request was denied
2989 // PACKAGE: The package name of the app requesting the permission
2990 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002991 ACTION_PERMISSION_DENIED_CAMERA = 644;
2992
Chris Wren3824c392017-11-27 12:54:14 -05002993 // ACTION: The permission CAMERA was revoked for an app
2994 // PACKAGE: The package name of the app the permission was revoked for
2995 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002996 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2997
Chris Wren3824c392017-11-27 12:54:14 -05002998 // ACTION: An app requested the permission READ_CONTACTS
2999 // PACKAGE: The package name of the app requesting the permission
3000 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003001 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
3002
Chris Wren3824c392017-11-27 12:54:14 -05003003 // ACTION: An app was granted the permission READ_CONTACTS
3004 // PACKAGE: The package name of the app that was granted the permission
3005 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003006 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
3007
Chris Wren3824c392017-11-27 12:54:14 -05003008 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
3009 // PACKAGE: The package name of the app requesting the permission
3010 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003011 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
3012
Chris Wren3824c392017-11-27 12:54:14 -05003013 // ACTION: The permission READ_CONTACTS was revoked for an app
3014 // PACKAGE: The package name of the app the permission was revoked for
3015 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003016 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
3017
Chris Wren3824c392017-11-27 12:54:14 -05003018 // ACTION: An app requested the permission WRITE_CONTACTS
3019 // PACKAGE: The package name of the app requesting the permission
3020 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003021 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
3022
Chris Wren3824c392017-11-27 12:54:14 -05003023 // ACTION: An app was granted the permission WRITE_CONTACTS
3024 // PACKAGE: The package name of the app that was granted the permission
3025 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003026 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
3027
Chris Wren3824c392017-11-27 12:54:14 -05003028 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
3029 // PACKAGE: The package name of the app requesting the permission
3030 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003031 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
3032
Chris Wren3824c392017-11-27 12:54:14 -05003033 // ACTION: The permission WRITE_CONTACTS was revoked for an app
3034 // PACKAGE: The package name of the app the permission was revoked for
3035 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003036 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
3037
Chris Wren3824c392017-11-27 12:54:14 -05003038 // ACTION: An app requested the permission GET_ACCOUNTS
3039 // PACKAGE: The package name of the app requesting the permission
3040 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003041 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
3042
Chris Wren3824c392017-11-27 12:54:14 -05003043 // ACTION: An app was granted the permission GET_ACCOUNTS
3044 // PACKAGE: The package name of the app that was granted the permission
3045 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003046 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
3047
Chris Wren3824c392017-11-27 12:54:14 -05003048 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
3049 // PACKAGE: The package name of the app requesting the permission
3050 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003051 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
3052
Chris Wren3824c392017-11-27 12:54:14 -05003053 // ACTION: The permission GET_ACCOUNTS was revoked for an app
3054 // PACKAGE: The package name of the app the permission was revoked for
3055 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003056 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
3057
Chris Wren3824c392017-11-27 12:54:14 -05003058 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
3059 // PACKAGE: The package name of the app requesting the permission
3060 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003061 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
3062
Chris Wren3824c392017-11-27 12:54:14 -05003063 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
3064 // PACKAGE: The package name of the app that was granted the permission
3065 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003066 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
3067
Chris Wren3824c392017-11-27 12:54:14 -05003068 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
3069 // PACKAGE: The package name of the app requesting the permission
3070 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003071 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
3072
Chris Wren3824c392017-11-27 12:54:14 -05003073 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3074 // PACKAGE: The package name of the app the permission was revoked for
3075 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003076 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3077
Chris Wren3824c392017-11-27 12:54:14 -05003078 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3079 // PACKAGE: The package name of the app requesting the permission
3080 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003081 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3082
Chris Wren3824c392017-11-27 12:54:14 -05003083 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3084 // PACKAGE: The package name of the app that was granted the permission
3085 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003086 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3087
Chris Wren3824c392017-11-27 12:54:14 -05003088 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3089 // PACKAGE: The package name of the app requesting the permission
3090 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003091 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3092
Chris Wren3824c392017-11-27 12:54:14 -05003093 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3094 // PACKAGE: The package name of the app the permission was revoked for
3095 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003096 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3097
Chris Wren3824c392017-11-27 12:54:14 -05003098 // ACTION: An app requested the permission RECORD_AUDIO
3099 // PACKAGE: The package name of the app requesting the permission
3100 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003101 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3102
Chris Wren3824c392017-11-27 12:54:14 -05003103 // ACTION: An app was granted the permission RECORD_AUDIO
3104 // PACKAGE: The package name of the app that was granted the permission
3105 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003106 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3107
Chris Wren3824c392017-11-27 12:54:14 -05003108 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3109 // PACKAGE: The package name of the app requesting the permission
3110 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003111 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3112
Chris Wren3824c392017-11-27 12:54:14 -05003113 // ACTION: The permission RECORD_AUDIO was revoked for an app
3114 // PACKAGE: The package name of the app the permission was revoked for
3115 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003116 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3117
Chris Wren3824c392017-11-27 12:54:14 -05003118 // ACTION: An app requested the permission READ_PHONE_STATE
3119 // PACKAGE: The package name of the app requesting the permission
3120 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003121 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3122
Chris Wren3824c392017-11-27 12:54:14 -05003123 // ACTION: An app was granted the permission READ_PHONE_STATE
3124 // PACKAGE: The package name of the app that was granted the permission
3125 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003126 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3127
Chris Wren3824c392017-11-27 12:54:14 -05003128 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3129 // PACKAGE: The package name of the app requesting the permission
3130 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003131 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3132
Chris Wren3824c392017-11-27 12:54:14 -05003133 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3134 // PACKAGE: The package name of the app the permission was revoked for
3135 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003136 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3137
Chris Wren3824c392017-11-27 12:54:14 -05003138 // ACTION: An app requested the permission CALL_PHONE
3139 // PACKAGE: The package name of the app requesting the permission
3140 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003141 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3142
Chris Wren3824c392017-11-27 12:54:14 -05003143 // ACTION: An app was granted the permission CALL_PHONE
3144 // PACKAGE: The package name of the app that was granted the permission
3145 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003146 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3147
Chris Wren3824c392017-11-27 12:54:14 -05003148 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3149 // PACKAGE: The package name of the app requesting the permission
3150 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003151 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3152
Chris Wren3824c392017-11-27 12:54:14 -05003153 // ACTION: The permission CALL_PHONE was revoked for an app
3154 // PACKAGE: The package name of the app the permission was revoked for
3155 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003156 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3157
Chris Wren3824c392017-11-27 12:54:14 -05003158 // ACTION: An app requested the permission READ_CALL_LOG
3159 // PACKAGE: The package name of the app requesting the permission
3160 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003161 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3162
Chris Wren3824c392017-11-27 12:54:14 -05003163 // ACTION: An app was granted the permission READ_CALL_LOG
3164 // PACKAGE: The package name of the app that was granted the permission
3165 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003166 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3167
Chris Wren3824c392017-11-27 12:54:14 -05003168 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3169 // PACKAGE: The package name of the app requesting the permission
3170 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003171 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3172
Chris Wren3824c392017-11-27 12:54:14 -05003173 // ACTION: The permission READ_CALL_LOG was revoked for an app
3174 // PACKAGE: The package name of the app the permission was revoked for
3175 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003176 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3177
Chris Wren3824c392017-11-27 12:54:14 -05003178 // ACTION: An app requested the permission WRITE_CALL_LOG
3179 // PACKAGE: The package name of the app requesting the permission
3180 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003181 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3182
Chris Wren3824c392017-11-27 12:54:14 -05003183 // ACTION: An app was granted the permission WRITE_CALL_LOG
3184 // PACKAGE: The package name of the app that was granted the permission
3185 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003186 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3187
Chris Wren3824c392017-11-27 12:54:14 -05003188 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3189 // PACKAGE: The package name of the app requesting the permission
3190 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003191 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3192
Chris Wren3824c392017-11-27 12:54:14 -05003193 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3194 // PACKAGE: The package name of the app the permission was revoked for
3195 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003196 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3197
Chris Wren3824c392017-11-27 12:54:14 -05003198 // ACTION: An app requested the permission ADD_VOICEMAIL
3199 // PACKAGE: The package name of the app requesting the permission
3200 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003201 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3202
Chris Wren3824c392017-11-27 12:54:14 -05003203 // ACTION: An app was granted the permission ADD_VOICEMAIL
3204 // PACKAGE: The package name of the app that was granted the permission
3205 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003206 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3207
Chris Wren3824c392017-11-27 12:54:14 -05003208 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3209 // PACKAGE: The package name of the app requesting the permission
3210 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003211 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3212
Chris Wren3824c392017-11-27 12:54:14 -05003213 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3214 // PACKAGE: The package name of the app the permission was revoked for
3215 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003216 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3217
Chris Wren3824c392017-11-27 12:54:14 -05003218 // ACTION: An app requested the permission USE_SIP
3219 // PACKAGE: The package name of the app requesting the permission
3220 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003221 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3222
Chris Wren3824c392017-11-27 12:54:14 -05003223 // ACTION: An app was granted the permission USE_SIP
3224 // PACKAGE: The package name of the app that was granted the permission
3225 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003226 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3227
Chris Wren3824c392017-11-27 12:54:14 -05003228 // ACTION: An app requested the permission USE_SIP and the request was denied
3229 // PACKAGE: The package name of the app requesting the permission
3230 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003231 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3232
Chris Wren3824c392017-11-27 12:54:14 -05003233 // ACTION: The permission USE_SIP was revoked for an app
3234 // PACKAGE: The package name of the app the permission was revoked for
3235 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003236 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3237
Chris Wren3824c392017-11-27 12:54:14 -05003238 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3239 // PACKAGE: The package name of the app requesting the permission
3240 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003241 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3242
Chris Wren3824c392017-11-27 12:54:14 -05003243 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3244 // PACKAGE: The package name of the app that was granted the permission
3245 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003246 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3247
Chris Wren3824c392017-11-27 12:54:14 -05003248 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3249 // PACKAGE: The package name of the app requesting the permission
3250 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003251 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3252
Chris Wren3824c392017-11-27 12:54:14 -05003253 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3254 // PACKAGE: The package name of the app the permission was revoked for
3255 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003256 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3257
Chris Wren3824c392017-11-27 12:54:14 -05003258 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3259 // PACKAGE: The package name of the app requesting the permission
3260 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003261 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3262
Chris Wren3824c392017-11-27 12:54:14 -05003263 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3264 // PACKAGE: The package name of the app that was granted the permission
3265 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003266 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3267
Chris Wren3824c392017-11-27 12:54:14 -05003268 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3269 // PACKAGE: The package name of the app requesting the permission
3270 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003271 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3272
Chris Wren3824c392017-11-27 12:54:14 -05003273 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3274 // PACKAGE: The package name of the app the permission was revoked for
3275 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003276 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3277
Chris Wren3824c392017-11-27 12:54:14 -05003278 // ACTION: An app requested the permission BODY_SENSORS
3279 // PACKAGE: The package name of the app requesting the permission
3280 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003281 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3282
Chris Wren3824c392017-11-27 12:54:14 -05003283 // ACTION: An app was granted the permission BODY_SENSORS
3284 // PACKAGE: The package name of the app that was granted the permission
3285 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003286 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3287
Chris Wren3824c392017-11-27 12:54:14 -05003288 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3289 // PACKAGE: The package name of the app requesting the permission
3290 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003291 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3292
Chris Wren3824c392017-11-27 12:54:14 -05003293 // ACTION: The permission BODY_SENSORS was revoked for an app
3294 // PACKAGE: The package name of the app the permission was revoked for
3295 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003296 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3297
Chris Wren3824c392017-11-27 12:54:14 -05003298 // ACTION: An app requested the permission SEND_SMS
3299 // PACKAGE: The package name of the app requesting the permission
3300 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003301 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3302
Chris Wren3824c392017-11-27 12:54:14 -05003303 // ACTION: An app was granted the permission SEND_SMS
3304 // PACKAGE: The package name of the app that was granted the permission
3305 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003306 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3307
Chris Wren3824c392017-11-27 12:54:14 -05003308 // ACTION: An app requested the permission SEND_SMS and the request was denied
3309 // PACKAGE: The package name of the app requesting the permission
3310 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003311 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3312
Chris Wren3824c392017-11-27 12:54:14 -05003313 // ACTION: The permission SEND_SMS was revoked for an app
3314 // PACKAGE: The package name of the app the permission was revoked for
3315 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003316 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3317
Chris Wren3824c392017-11-27 12:54:14 -05003318 // ACTION: An app requested the permission RECEIVE_SMS
3319 // PACKAGE: The package name of the app requesting the permission
3320 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003321 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3322
Chris Wren3824c392017-11-27 12:54:14 -05003323 // ACTION: An app was granted the permission RECEIVE_SMS
3324 // PACKAGE: The package name of the app that was granted the permission
3325 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003326 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3327
Chris Wren3824c392017-11-27 12:54:14 -05003328 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3329 // PACKAGE: The package name of the app requesting the permission
3330 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003331 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3332
Chris Wren3824c392017-11-27 12:54:14 -05003333 // ACTION: The permission RECEIVE_SMS was revoked for an app
3334 // PACKAGE: The package name of the app the permission was revoked for
3335 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003336 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3337
Chris Wren3824c392017-11-27 12:54:14 -05003338 // ACTION: An app requested the permission READ_SMS
3339 // PACKAGE: The package name of the app requesting the permission
3340 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003341 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3342
Chris Wren3824c392017-11-27 12:54:14 -05003343 // ACTION: An app was granted the permission READ_SMS
3344 // PACKAGE: The package name of the app that was granted the permission
3345 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003346 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3347
Chris Wren3824c392017-11-27 12:54:14 -05003348 // ACTION: An app requested the permission READ_SMS and the request was denied
3349 // PACKAGE: The package name of the app requesting the permission
3350 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003351 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3352
Chris Wren3824c392017-11-27 12:54:14 -05003353 // ACTION: The permission READ_SMS was revoked for an app
3354 // PACKAGE: The package name of the app the permission was revoked for
3355 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003356 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3357
Chris Wren3824c392017-11-27 12:54:14 -05003358 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3359 // PACKAGE: The package name of the app requesting the permission
3360 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003361 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3362
Chris Wren3824c392017-11-27 12:54:14 -05003363 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3364 // PACKAGE: The package name of the app that was granted the permission
3365 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003366 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3367
Chris Wren3824c392017-11-27 12:54:14 -05003368 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3369 // PACKAGE: The package name of the app requesting the permission
3370 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003371 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3372
Chris Wren3824c392017-11-27 12:54:14 -05003373 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3374 // PACKAGE: The package name of the app the permission was revoked for
3375 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003376 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3377
Chris Wren3824c392017-11-27 12:54:14 -05003378 // ACTION: An app requested the permission RECEIVE_MMS
3379 // PACKAGE: The package name of the app requesting the permission
3380 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003381 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3382
Chris Wren3824c392017-11-27 12:54:14 -05003383 // ACTION: An app was granted the permission RECEIVE_MMS
3384 // PACKAGE: The package name of the app that was granted the permission
3385 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003386 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3387
Chris Wren3824c392017-11-27 12:54:14 -05003388 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3389 // PACKAGE: The package name of the app requesting the permission
3390 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003391 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3392
Chris Wren3824c392017-11-27 12:54:14 -05003393 // ACTION: The permission RECEIVE_MMS was revoked for an app
3394 // PACKAGE: The package name of the app the permission was revoked for
3395 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003396 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3397
Chris Wren3824c392017-11-27 12:54:14 -05003398 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3399 // PACKAGE: The package name of the app requesting the permission
3400 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003401 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3402
Chris Wren3824c392017-11-27 12:54:14 -05003403 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3404 // PACKAGE: The package name of the app that was granted the permission
3405 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003406 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3407
Chris Wren3824c392017-11-27 12:54:14 -05003408 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3409 // PACKAGE: The package name of the app requesting the permission
3410 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003411 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3412
Chris Wren3824c392017-11-27 12:54:14 -05003413 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3414 // PACKAGE: The package name of the app the permission was revoked for
3415 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003416 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3417
Chris Wren3824c392017-11-27 12:54:14 -05003418 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3419 // PACKAGE: The package name of the app requesting the permission
3420 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003421 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3422
Chris Wren3824c392017-11-27 12:54:14 -05003423 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3424 // PACKAGE: The package name of the app that was granted the permission
3425 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003426 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3427
Chris Wren3824c392017-11-27 12:54:14 -05003428 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3429 // PACKAGE: The package name of the app requesting the permission
3430 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003431 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3432
Chris Wren3824c392017-11-27 12:54:14 -05003433 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3434 // PACKAGE: The package name of the app the permission was revoked for
3435 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003436 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3437
Mahaverfa6566e2016-11-29 21:08:14 +00003438 // ACTION: Logged when a provisioning session has started
3439 PROVISIONING_SESSION_STARTED = 734;
3440
3441 // ACTION: Logged when a provisioning session has completed
3442 PROVISIONING_SESSION_COMPLETED = 735;
3443
Chris Wren3824c392017-11-27 12:54:14 -05003444 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3445 // PACKAGE: The package name of the app requesting the permission
3446 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003447 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003448
Chris Wren3824c392017-11-27 12:54:14 -05003449 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3450 // PACKAGE: The package name of the app that was granted the permission
3451 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003452 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003453
Chris Wren3824c392017-11-27 12:54:14 -05003454 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3455 // PACKAGE: The package name of the app requesting the permission
3456 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003457 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003458
Chris Wren3824c392017-11-27 12:54:14 -05003459 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3460 // PACKAGE: The package name of the app the permission was revoked for
3461 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003462 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003463
Santos Cordon3107d292016-09-20 15:50:35 -07003464 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3465 // SUBTYPE: slider value
3466 // CATEGORY: QUICK_SETTINGS
3467 // OS: 6.0
3468 ACTION_BRIGHTNESS_FOR_VR = 498;
3469
Hugo Benichie1cbf152016-12-08 09:36:52 +09003470 // ACTION: A captive portal was detected during network validation
3471 // CATEGORY: NOTIFICATION
3472 // OS: N-MR2
3473 NOTIFICATION_NETWORK_SIGN_IN = 740;
3474
3475 // ACTION: An unvalidated network without Internet was selected by the user
3476 // CATEGORY: NOTIFICATION
3477 // OS: N-MR2
3478 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3479
3480 // ACTION: A validated network failed revalidation and lost Internet access
3481 // CATEGORY: NOTIFICATION
3482 // OS: N-MR2
3483 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3484
3485 // ACTION: The system default network switched to a different network
3486 // CATEGORY: NOTIFICATION
3487 // OS: N-MR2
3488 NOTIFICATION_NETWORK_SWITCH = 743;
3489
Fan Zhang074c4cb2016-12-21 12:10:33 -08003490 // OPEN: Settings > System
3491 SETTINGS_SYSTEM_CATEGORY = 744;
3492
3493 // OPEN: Settings > Storage
3494 SETTINGS_STORAGE_CATEGORY = 745;
3495
3496 // OPEN: Settings > Network & Internet
3497 SETTINGS_NETWORK_CATEGORY = 746;
3498
3499 // OPEN: Settings > Connected Device
3500 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3501
3502 // OPEN: Settings > App & Notification
3503 SETTINGS_APP_NOTIF_CATEGORY = 748;
3504
3505 // OPEN: Settings > System > Input & Gesture
3506 SETTINGS_INPUT_CATEGORY = 749;
3507
3508 // OPEN: Settings > System > Language & Region
3509 SETTINGS_LANGUAGE_CATEGORY = 750;
3510
3511 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3512 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3513
3514 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3515 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3516
3517 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3518 SETTINGS_GESTURE_PICKUP = 753;
3519
3520 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3521 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3522
3523 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3524 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3525
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003526 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3527 // CATEGORY: Settings
3528 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3529
Alison Cichowlas803054d2016-12-13 14:38:01 -05003530 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003531 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003532 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3533 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3534 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003535
Salvador Martinezc43ab062016-12-21 11:09:11 -08003536 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3537 // user accepted
3538 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003539
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003540 // Enclosing category for group of APP_TRANSITION_FOO events,
3541 // logged when we execute an app transition.
3542 APP_TRANSITION = 761;
3543
Fan Zhang945deea2017-01-11 16:37:49 -08003544 // ACTION: User leaves Settings search UI without entering any query.
3545 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3546
3547 // ACTION: Clicking on any search result in Settings.
3548 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003549
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003550 // ACTION: Allow Battery optimization for an app
3551 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3552
3553 // ACTION: Deny Battery optimization for an app
3554 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3555
3556 // ACTION: Enable Device Admin app
3557 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3558
3559 // ACTION: Disable Device Admin app
3560 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3561
3562 // ACTION: Allow "Do Not Disturb access" for an app
3563 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3564
3565 // ACTION: Deny "Do Not Disturb access" for an app
3566 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3567
3568 // ACTION: Allow "Draw over other apps" for an app
3569 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3570
Christine Franks47175c32017-03-14 10:21:25 -07003571 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003572 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3573
3574 // ACTION: Allow "VR helper services" for an app
3575 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3576
3577 // ACTION: Deny "VR helper services" for an app
3578 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3579
3580 // ACTION: Allow "Modify system settings" for an app
3581 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3582
3583 // ACTION: Deny "Modify system settings" for an app
3584 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3585
3586 // ACTION: Allow "Notification access" for an app
3587 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3588
3589 // ACTION: Deny "Notification access" for an app
3590 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3591
3592 // ACTION: "Premium SMS access" for an app - "ask user" option
3593 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3594
3595 // ACTION: "Premium SMS access" for an app - "never allow" option
3596 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3597
3598 // ACTION: "Premium SMS access" for an app - "always allow" option
3599 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3600
3601 // ACTION: Allow "Unrestricted data access" for an app
3602 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3603
3604 // ACTION: Deny "Unrestricted data access" for an app
3605 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3606
3607 // ACTION: Allow "Usage access" for an app
3608 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3609
3610 // ACTION: Deny "Usage access" for an app
3611 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3612
Fan Zhangad5dacc2017-01-18 14:18:54 -08003613 // OPEN: Settings > Apps > Default Apps > Default browser
3614 DEFAULT_BROWSER_PICKER = 785;
3615
3616 // OPEN: Settings > Apps > Default Apps > Default emergency app
3617 DEFAULT_EMERGENCY_APP_PICKER = 786;
3618
3619 // OPEN: Settings > Apps > Default Apps > Default home
3620 DEFAULT_HOME_PICKER = 787;
3621
3622 // OPEN: Settings > Apps > Default Apps > Default phone
3623 DEFAULT_PHONE_PICKER = 788;
3624
3625 // OPEN: Settings > Apps > Default Apps > Default sms
3626 DEFAULT_SMS_PICKER = 789;
3627
Fabian Kozynski171f40d2019-02-20 12:53:17 -05003628 // OPEN: Settings > Apps > Notification > Notification Assistant
Fan Zhangad5dacc2017-01-18 14:18:54 -08003629 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3630
3631 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3632 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3633
Jason Long1b51da62017-01-24 11:35:31 -08003634 // OPEN: Settings > Apps > Default Apps > Default autofill app
3635 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003636
Chris Wren26ca65d2016-11-29 10:43:28 -05003637 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003638 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003639 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3640 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3641 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3642 NOTIFICATION_ID = 796;
3643 NOTIFICATION_TAG = 797;
3644 NOTIFICATION_SHADE_INDEX = 798;
3645 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003646
Anas Karbilaf7648f42016-12-11 00:55:02 +01003647 // OPEN: QS NFC tile shown
3648 // ACTION: QS NFC tile tapped
3649 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003650 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003651
Chris Wren26ca65d2016-11-29 10:43:28 -05003652 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003653 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003654 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3655 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3656 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3657 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3658 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3659 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3660
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003661 // ACTION: "Force stop" action on an app
3662 ACTION_APP_FORCE_STOP = 807;
3663
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003664 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3665 // CATEGORY: SETTINGS
3666 // OS: 8.0
3667 MANAGE_EXTERNAL_SOURCES = 808;
3668
Mahaver6cd47162017-01-23 09:59:33 +00003669 // ACTION: Logged when terms activity finishes.
3670 // TIME: Indicates time taken by terms activity to finish in MS.
3671 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3672
3673 // Indicates number of terms displayed on the terms screen.
3674 PROVISIONING_TERMS_COUNT = 810;
3675
3676 // Indicates number of terms read on the terms screen.
3677 PROVISIONING_TERMS_READ = 811;
3678
Winson Chung59fda9e2017-01-20 16:14:51 -08003679 // Logs that the user has edited the picture-in-picture settings.
3680 // CATEGORY: SETTINGS
3681 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3682
Winson Chungf4ac0632017-03-17 12:34:12 -07003683 // ACTION: Allow "Enable picture-in-picture" for an app
3684 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003685
Winson Chungf4ac0632017-03-17 12:34:12 -07003686 // ACTION: Deny "Enable picture-in-picture" for an app
3687 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003688
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003689 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3690 // CATEGORY: SETTINGS
3691 // OS: 8.0
3692 TTS_SLIDERS = 815;
3693
Jason Monk524fb402017-01-25 10:33:31 -05003694 // ACTION: Settings -> Display -> Theme
3695 ACTION_THEME = 816;
3696
chchaob8e253a2017-01-25 12:12:09 -08003697 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3698 // ACTION: Select to Speak configuration is chosen
3699 // SUBTYPE: 0 is off, 1 is on
3700 // CATEGORY: SETTINGS
3701 // OS: N
3702 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3703
Anton Philippov95a553e2017-01-27 00:08:24 +00003704 // OPEN: Settings > System > Backup
3705 // CATEGORY: SETTINGS
3706 // OS: O
3707 BACKUP_SETTINGS = 818;
3708
Winson Chung14fbe142016-12-19 16:18:24 -08003709 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003710 // VALUE: true if it was entered while hiding as a result of moving to
3711 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003712 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3713
3714 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3715 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3716 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3717
3718 // ACTION: The activity currently in picture-in-picture was minimized
3719 // VALUE: True if the PiP was minimized, false otherwise
3720 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3721
3722 // ACTION: Picture-in-picture was dismissed via the dismiss button
3723 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3724 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3725
3726 // ACTION: The visibility of the picture-in-picture meny
3727 // VALUE: Whether or not the menu is visible
3728 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3729
3730 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3731 // logged when the aspect ratio changes
3732 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3733
3734 // The current aspect ratio of the PiP, logged when it changes.
3735 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3736
Chris Wren27a52fa2017-02-01 14:21:43 -05003737 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3738 // CATEGORY: GLOBAL_SYSTEM_UI
3739 // OS: O
3740 FIELD_GESTURE_LENGTH = 826;
3741
3742 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3743 // CATEGORY: GLOBAL_SYSTEM_UI
3744 // OS: O
3745 FIELD_GESTURE_VELOCITY = 827;
3746
Christine Franks27fde392017-02-07 10:21:55 -08003747 // OPEN: Carrier demo mode password dialog
3748 CARRIER_DEMO_MODE_PASSWORD = 828;
3749
Fan Zhang70967f32017-02-13 16:02:24 -08003750 // ACTION: Create a Settings shortcut item.
3751 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3752
3753 // ACTION: A tile in Settings information architecture is clicked
3754 ACTION_SETTINGS_TILE_CLICK = 830;
3755
Julia Reynolds520df6e2017-02-13 09:05:10 -05003756 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
Julia Reynolds67c1e962019-01-04 14:01:10 -05003757 // updated. TYPE_DISMISS: snoozing canceled due to data being cleared on package
Julia Reynolds520df6e2017-02-13 09:05:10 -05003758 // CATEGORY: NOTIFICATION
3759 // OS: O
3760 NOTIFICATION_SNOOZED = 831;
3761
3762 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3763 // OS: O
3764 NOTIFICATION_SNOOZED_CRITERIA = 832;
3765
Fan Zhang65899432017-02-14 13:36:53 -08003766 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003767 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003768 FIELD_CONTEXT = 833;
3769
Fan Zhangd95dcb42017-02-14 13:48:09 -08003770 // ACTION: Settings advanced button is expanded
3771 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3772
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003773 // ACTION: Logs the number of times the saved network evaluator was used to
3774 // recommend a wifi network
3775 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3776
3777 // ACTION: Logs the number of times the recommended network evaluator was
3778 // used to recommend a wifi network
3779 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3780
3781 // ACTION: Logs the number of times a recommended network was resulted in a
3782 // successful connection
3783 // VALUE: true if the connection was successful, false if the connection failed
3784 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3785
Daniel Nishic581bfc2017-02-08 10:18:19 -08003786 // OPEN: Settings > Storage > Games
3787 // CATEGORY: SETTINGS
3788 // OS: O
3789 APPLICATIONS_STORAGE_GAMES = 838;
3790
3791 // OPEN: Settings > Storage > Audio and Music
3792 // CATEGORY: SETTINGS
3793 // OS: O
3794 APPLICATIONS_STORAGE_MUSIC = 839;
3795
3796 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3797 // CATEGORY: SETTINGS
3798 // OS: O
3799 STORAGE_FREE_UP_SPACE_NOW = 840;
3800
3801 // ACTION: Settings > Storage > Files to open the File Manager
3802 // CATEGORY: SETTINGS
3803 // OS: O
3804 STORAGE_FILES = 841;
3805
Fan Zhangb1d49222017-02-15 17:12:58 -08003806 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003807 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003808
Fan Zhang7f2cace2017-02-17 12:05:48 -08003809 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3810 DEFAULT_ASSIST_PICKER = 843;
3811
3812 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3813 DEFAULT_VOICE_INPUT_PICKER = 844;
3814
Daniel Nishi4058a842017-02-21 17:11:35 -08003815 // OPEN: Settings > Storage > [Profile]
3816 SETTINGS_STORAGE_PROFILE = 845;
3817
Doris Lingedb84c32017-02-23 10:56:01 -08003818 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3819 // CATEGORY: SETTINGS
3820 // OS: O
3821 ENCRYPTION_AND_CREDENTIAL = 846;
3822
Fan Zhangb66e5422017-02-24 14:37:45 -08003823 // ACTION: Settings > About device > Build number
3824 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3825
3826 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3827 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3828
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003829 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3830 // CATEGORY: SETTINGS
3831 // OS: O
3832 WIFI_NETWORK_DETAILS = 849;
3833
jackqdyuleia2a14342017-02-28 16:20:48 -08003834 // ACTION: Settings > Battery > Menu > Usage Alerts
3835 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3836
3837 // ACTION: Settings > Battery > Menu > Optimization
3838 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3839
3840 // ACTION: Settings > Battery > Menu > Apps Toggle
3841 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3842
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003843 // ACTION: Settings > Any preference is changed
3844 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3845
3846 // FIELD: The name of preference when it is changed in Settings
3847 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3848
3849 // FIELD: The new value of preference when it is changed in Settings
3850 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3851
Julia Reynoldsd373d782017-03-03 13:32:57 -05003852 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3853 // channel updated
3854 // PACKAGE: the package the channel belongs too
3855 // CATEGORY: NOTIFICATION
3856 // OS: O
3857 ACTION_NOTIFICATION_CHANNEL = 856;
3858
3859 // Tagged data for notification channel. String.
3860 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3861
3862 // Tagged data for notification channel. int.
3863 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3864
3865 // OPEN: Notification channel group created.
3866 // PACKAGE: the package the group belongs to
3867 // CATEGORY: NOTIFICATION
3868 // OS: O
3869 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3870
3871 // Tagged data for notification channel group. String.
3872 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3873
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003874 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3875 // CATEGORY: SETTINGS
3876 // OS: O
3877 SETTINGS_NETWORK_SCORER = 861;
3878
Fan Zhang99861312017-03-07 14:32:38 -08003879 // OPEN: Settings > About device > Model > Hardware info dialog
3880 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3881
mariagpuyol0f5512e2017-03-01 12:09:56 -08003882 // ACTION: Checks whether a contact's phone still exists
3883 // Value 0: It doesn't exist anymore
3884 // Value 1: It still exists
3885 // Value 2: A SecurityException was thrown
3886 // CATEGORY: SETTINGS
3887 // OS: N
3888 ACTION_PHONE_EXISTS = 863;
3889
3890 // ACTION: Retrieves a contact from CP2
3891 // Value 0: Contact retrieved without issues
3892 // Value 1: An IllegalArgumentException was thrown
3893 // CATEGORY: SETTINGS
3894 // OS: N
3895 ACTION_GET_CONTACT = 864;
3896
Chris Wren4d6b54d2017-04-27 16:56:54 -04003897 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003898 // internal platform metrics use.
3899 RESERVED_FOR_LOGBUILDER_PID = 865;
3900
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003901 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3902 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3903
3904 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3905 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3906
3907 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3908 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3909
3910 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3911 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3912
3913 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3914 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3915
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003916 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003917 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003918
Fan Zhang082d21c2017-03-13 15:25:54 -07003919 // ACTION: Settings > App detail > Uninstall
3920 ACTION_SETTINGS_UNINSTALL_APP = 872;
3921
3922 // ACTION: Settings > App detail > Uninstall Device admin app
3923 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3924
3925 // ACTION: Settings > App detail > Disable app
3926 ACTION_SETTINGS_DISABLE_APP = 874;
3927
3928 // ACTION: Settings > App detail > Enable app
3929 ACTION_SETTINGS_ENABLE_APP = 875;
3930
3931 // ACTION: Settings > App detail > Clear data
3932 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3933
3934 // ACTION: Settings > App detail > Clear cache
3935 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3936
3937 // ACTION: Clicking on any search result in Settings.
3938 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3939
3940 // FIELD: Settings inline search result name
3941 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3942
3943 // FIELD: Settings inline search result value
3944 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3945
Fan Zhang53797932017-03-13 17:46:24 -07003946 // ACTION: Settings > Search > Click saved queries
3947 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3948
Doris Lingbf8d9de2017-03-15 11:52:50 -07003949 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3950 // CATEGORY: SETTINGS
3951 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3952
Chris Wren3824c392017-11-27 12:54:14 -05003953 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3954 // PACKAGE: The package name of the app requesting the permission
3955 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003956 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3957
Chris Wren3824c392017-11-27 12:54:14 -05003958 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3959 // PACKAGE: The package name of the app that was granted the permission
3960 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003961 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3962
Chris Wren3824c392017-11-27 12:54:14 -05003963 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3964 // PACKAGE: The package name of the app requesting the permission
3965 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003966 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3967
Chris Wren3824c392017-11-27 12:54:14 -05003968 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3969 // PACKAGE: The package name of the app the permission was revoked for
3970 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003971 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3972
Chris Wren3824c392017-11-27 12:54:14 -05003973 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3974 // PACKAGE: The package name of the app requesting the permission
3975 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003976 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3977
Chris Wren3824c392017-11-27 12:54:14 -05003978 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3979 // PACKAGE: The package name of the app that was granted the permission
3980 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003981 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3982
Chris Wren3824c392017-11-27 12:54:14 -05003983 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3984 // PACKAGE: The package name of the app requesting the permission
3985 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003986 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3987
Chris Wren3824c392017-11-27 12:54:14 -05003988 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3989 // PACKAGE: The package name of the app the permission was revoked for
3990 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003991 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3992
Chris Wren3824c392017-11-27 12:54:14 -05003993 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3994 // PACKAGE: The package name of the app requesting the permission
3995 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003996 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3997
Chris Wren3824c392017-11-27 12:54:14 -05003998 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3999 // PACKAGE: The package name of the app that was granted the permission
4000 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004001 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
4002
Chris Wren3824c392017-11-27 12:54:14 -05004003 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
4004 // PACKAGE: The package name of the app requesting the permission
4005 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004006 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
4007
Chris Wren3824c392017-11-27 12:54:14 -05004008 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
4009 // PACKAGE: The package name of the app the permission was revoked for
4010 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004011 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
4012
Chris Wren3824c392017-11-27 12:54:14 -05004013 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
4014 // PACKAGE: The package name of the app requesting the permission
4015 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004016 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
4017
Chris Wren3824c392017-11-27 12:54:14 -05004018 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
4019 // PACKAGE: The package name of the app that was granted the permission
4020 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004021 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
4022
Chris Wren3824c392017-11-27 12:54:14 -05004023 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
4024 // PACKAGE: The package name of the app requesting the permission
4025 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004026 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
4027
Chris Wren3824c392017-11-27 12:54:14 -05004028 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
4029 // PACKAGE: The package name of the app the permission was revoked for
4030 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004031 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
4032
Todd Kennedy7e5407e2017-03-16 09:51:11 -07004033 // ACTION: Phase 1 of instant application resolution occurred
4034 // OS: O
4035 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
4036
4037 // ACTION: Phase 2 of instant application resolution occurred
4038 // OS: O
4039 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
4040
4041 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
4042 // OS: O
4043 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
4044
4045 // FIELD: The status of an ephemeral resolution phase
4046 // Value 0: success
4047 // Value 1: no full hash match
4048 // OS: O
4049 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
4050
4051 // FIELD - A token to identify all events that are part of the same instant application launch
4052 // OS: O
4053 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
4054
4055 // FIELD - The name of the package responsible for launching the activity
4056 // OS: O
4057 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
4058
4059 // FIELD - Whether or not the launched activity is part of an instant application
4060 // OS: O
4061 APP_TRANSITION_IS_EPHEMERAL = 905;
4062
Felipe Leme21fb1a32018-05-21 11:18:46 -07004063 // An autofill session was started.
4064 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004065 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08004066 // NOTE: starting on OS MR1, it also added the following field:
4067 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4068 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07004069 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004070 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
4071 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
4072 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004073 AUTOFILL_SESSION_STARTED = 906;
4074
4075 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004076 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4077 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004078 // Package: Package of app that is autofilled
4079 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004080 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004081 // the service returned a null response
4082 // NOTE: starting on OS P, it also added the following fields:
4083 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004084 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004085 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4086 // with 1.
4087 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4088 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4089 // was focused.
4090 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004091 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004092 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004093 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004094 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4095 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4096 // - AUTOFILL_UI_LATENCY
4097 // - AUTOFILL_AUTHENTICATED;
4098 // - AUTOFILL_DATASET_AUTHENTICATED
4099 // - AUTOFILL_INVALID_AUTHENTICATION
4100 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Felipe Lemed9dc9542018-09-19 11:54:28 -07004101 // NOTE: starting on OS Q, it also added the following fields:
4102 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Felipe Lemea3033852019-01-18 16:32:33 -08004103 // Tag FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS: number of requests made to the augmented
4104 // autofill service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004105 AUTOFILL_REQUEST = 907;
4106
4107 // Tag of a field for a package of an autofill service
4108 FIELD_AUTOFILL_SERVICE = 908;
4109
4110 // Tag of a field for the number of datasets
4111 FIELD_AUTOFILL_NUM_DATASETS = 909;
4112
4113 // An autofill dataset selection UI was shown
4114 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4115 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4116 // Type TYPE_ACTION: dataset was selected
4117 // Type TYPE_DETAIL: authentication was selected
4118 // Package: Package of app that was autofilled
4119 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4120 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004121 // NOTE: starting on OS P, it also added the following fields:
4122 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004123 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004124 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004125 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004126 AUTOFILL_FILL_UI = 910;
4127
4128 // Tag of a field for the length of the filter text
4129 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4130
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004131 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004132 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004133 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004134 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004135 AUTOFILL_AUTHENTICATED = 912;
4136
4137 // An activity was autofilled and all values could be applied
4138 // Package: Package of app that is autofilled
4139 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4140 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004141 // NOTE: starting on OS P, it also added the following fields:
4142 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004143 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004144 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004145 AUTOFILL_DATASET_APPLIED = 913;
4146
4147 // Tag of a field for the number values to be filled in
4148 FIELD_AUTOFILL_NUM_VALUES = 914;
4149
4150 // Tag of a field for the number of views that were filled
4151 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4152
4153 // An autofill save UI was shown
4154 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4155 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4156 // Type TYPE_ACTION: data was saved
4157 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004158 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004159 // NOTE: starting on OS P, it also added the following fields:
4160 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004161 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004162 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004163 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004164 // NOTE: starting on OS Q, it also added the following fields:
4165 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004166 AUTOFILL_SAVE_UI = 916;
4167
4168 // Tag of a field for the number of saveable ids
4169 FIELD_AUTOFILL_NUM_IDS = 917;
4170
Felipe Leme21fb1a32018-05-21 11:18:46 -07004171 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004172 // Type TYPE_SUCCESS: The request succeeded right away
4173 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004174 // Type TYPE_FAILURE: The request failed
4175 // Package: Package of app that was autofilled
4176 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004177 // NOTE: starting on OS P, it also added the following fields:
4178 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004179 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004180 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemed9dc9542018-09-19 11:54:28 -07004181 // NOTE: starting on OS Q, it also added the following fields:
4182 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004183 AUTOFILL_DATA_SAVE_REQUEST = 918;
4184
4185 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004186 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004187 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004188 // NOTE: starting on OS P, it also added the following fields:
4189 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004190 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004191 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4192 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4193 // is logged by a separate AUTOFILL_REQUEST metric)
Felipe Lemec0df8952019-05-02 14:09:04 -07004194 // NOTE: starting on OS Q, it also added the following fields:
4195 // TAg FIELD_AUTOFILL_AUGMENTED_ONLY: if the session was used just for augmented autofill
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004196 AUTOFILL_SESSION_FINISHED = 919;
4197
Chris Wren148805582017-03-17 17:18:11 -04004198 // meta-event: a reader has checkpointed the log here.
4199 METRICS_CHECKPOINT = 920;
4200
Fan Zhanged1845f2017-03-23 14:46:59 -07004201 // OPEN: Settings -> Display -> When in VR Mode
4202 VR_DISPLAY_PREFERENCE = 921;
4203
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004204 // OPEN: Settings > Accessibility > Magnification
4205 // CATEGORY: SETTINGS
4206 // OS: O
4207 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004208
4209 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4210 // app.
4211 // VALUE: The package name of the app
4212 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4213
Fan Zhang1a34e752017-03-24 13:44:51 -07004214 // OPEN: Settings -> System -> Reset options
4215 RESET_DASHBOARD = 924;
4216
Jason Monk8c09ac72017-03-16 11:53:40 -04004217 // ACTION: QS -> Tile clicked
4218 ACTION_QS_CLICK = 925;
4219
4220 // ACTION: QS -> Secondary click
4221 ACTION_QS_SECONDARY_CLICK = 926;
4222
4223 // FIELD: Position info in QS clicks
4224 FIELD_QS_POSITION = 927;
4225
4226 // FIELD: The value of a QS tile when clicked (if applicable)
4227 FIELD_QS_VALUE = 928;
4228
4229 // ACTION: QS -> Detail panel -> more settings
4230 ACTION_QS_MORE_SETTINGS = 929;
4231
4232 // ACTION: QS -> Click date
4233 ACTION_QS_DATE = 930;
4234
Jason Monk1b775652017-03-31 15:42:27 -04004235 // ACTION: Event on nav button
4236 ACTION_NAV_BUTTON_EVENT = 931;
4237
4238 // FIELD: Flags for a nav button event
4239 FIELD_FLAGS = 932;
4240
4241 // FIELD: Action for a nav button event
4242 FIELD_NAV_ACTION = 933;
4243
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004244 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4245 // CATEGORY: SETTINGS
4246 // OS: O
4247 FINGERPRINT_REMOVE_SIDECAR = 934;
4248
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004249 // OPEN: Settings > Storage > Movies & TV
4250 // CATEGORY: SETTINGS
4251 // OS: O
4252 APPLICATIONS_STORAGE_MOVIES = 935;
4253
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004254 // OPEN: Text selection "assist" menu item shown.
4255 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4256 // CATEGORY: TEXT_CONTROLS
4257 // OS: O
4258 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4259
4260 // ACTION: Text selection "assist" menu item clicked.
4261 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4262 // CATEGORY: TEXT_CONTROLS
4263 // OS: O
4264 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4265
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004266 // OPEN: Settings > Security > Managed Device Info > Apps installed
4267 // CATEGORY: SETTINGS
4268 // OS: O
4269 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4270
4271 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4272 // CATEGORY: SETTINGS
4273 // OS: O
4274 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4275
4276 // OPEN: Settings > Security > Managed Device Info > Default apps
4277 // CATEGORY: SETTINGS
4278 // OS: O
4279 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4280
Julia Reynolds80b18072017-04-23 12:27:07 -04004281 // OPEN: Settings > Notifications > An app > A channel > Importance
4282 // CATEGORY: SETTINGS
4283 // OS: O
4284 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4285
4286 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4287 // CATEGORY: SETTINGS
4288 // OS: O
4289 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4290
Chris Wren4d6b54d2017-04-27 16:56:54 -04004291 // This value should never appear in log outputs - it is reserved for
4292 // internal platform metrics use.
4293 RESERVED_FOR_LOGBUILDER_UID = 943;
4294
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004295 // OPEN: Running background apps notification > List of background apps
4296 // CATEGORY: GLOBAL_SYSTEM_UI
4297 // OS: O
4298 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4299
Jorim Jaggi515dd682017-05-05 15:05:07 +02004300 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4301 // client.
4302 // OS: O
4303 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4304
Chris Wrenb3921792017-06-01 13:34:46 -04004305 // FIELD - The group ID of a notification.
4306 // Type: string
4307 // OS: O
4308 FIELD_NOTIFICATION_GROUP_ID = 946;
4309
4310 // FIELD - If the notification is a group summary: 1.
4311 // Type: int encoded boolean
4312 // OS: O
4313 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4314
Felipe Leme637e05e2017-12-06 12:09:37 -08004315 // An app attempted to forge a different component name in the AssisStructure that would be
4316 // passed to the autofill service.
4317 // OS: O (security patch)
4318 // Package: Real package of the app being autofilled
4319 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4320 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004321 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004322 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004323 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4324
4325 // FIELD - The component that an app tried tro forged.
4326 // Type: string
4327 // OS: O (security patch)
4328 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4329
Chris Wren26ca65d2016-11-29 10:43:28 -05004330 // ---- End O Constants, all O constants go above this line ----
4331
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004332 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4333 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4334
jackqdyulei92e492e2017-04-28 13:04:42 -07004335 // OPEN: Settings > Battery > High Usage > Abnormal app page
4336 // CATEGORY: SETTINGS
4337 FUELGAUGE_ANOMALY_DETAIL = 987;
4338
4339 // OPEN: Settings > Battery > High Usage
4340 DIALOG_HANDLE_ANOMALY = 988;
4341
Jonathan Solnita4138162017-05-10 21:06:04 -07004342 // ACTION: Camera lift gesture
4343 // CATEGORY: GLOBAL_SYSTEM_UI
4344 // OS: O
4345 ACTION_CAMERA_LIFT_TRIGGER = 989;
4346
Maurice Lam76ae09c2017-05-05 12:03:49 -07004347 // OPEN: Choose screen lock dialog in Settings
4348 // CATEGORY: SETTINGS
4349 // OS: O DR
4350 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4351
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004352 // OPEN: Assist Gesture training intro in Settings
4353 // CATEGORY: SETTINGS
4354 // OS: O DR
4355 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4356
4357 // OPEN: Assist Gesture training enrolling in Settings
4358 // CATEGORY: SETTINGS
4359 // OS: O DR
4360 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4361
4362 // OPEN: Assist Gesture training finished in Settings
4363 // CATEGORY: SETTINGS
4364 // OS: O DR
4365 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4366
Fan Zhangc666a202017-05-18 17:50:20 -07004367 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4368 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4369
4370 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4371 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4372
Philip Quinn0f9566d2017-05-23 10:32:08 -07004373 // OPEN: Settings > System > Languages & input > Assist gesture
4374 // CATEGORY: SETTINGS
4375 // OS: O DR
4376 SETTINGS_ASSIST_GESTURE = 996;
4377
4378 // ACTION: Assist gesture released without triggering
4379 // CATEGORY: GLOBAL_SYSTEM_UI
4380 // OS: O DR
4381 ASSIST_GESTURE_RELEASED = 997;
4382
4383 // ACTION: Assist gesture primed
4384 // CATEGORY: GLOBAL_SYSTEM_UI
4385 // OS: O DR
4386 ASSIST_GESTURE_PRIMED = 998;
4387
4388 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004389 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004390 // CATEGORY: GLOBAL_SYSTEM_UI
4391 // OS: O DR
4392 ASSIST_GESTURE_TRIGGERED = 999;
4393
Fan Zhang238162b2017-05-25 14:01:41 -07004394 // ACTION: Update default app from Settings
4395 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4396
4397 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004398 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004399
4400 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004401 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004402
Adrian Roos1c81d772017-05-25 18:00:21 -07004403 // OPEN: Settings > Display > Ambient Display
4404 // CATEGORY: SETTINGS
4405 // OS: O DR
4406 AMBIENT_DISPLAY_SETTINGS = 1003;
4407
Hugo Benichi11da42b2017-05-31 11:11:37 +09004408 // ACTION: CaptivePortalLoginActivity starts
4409 // CATEGORY: GLOBAL_SYSTEM_UI
4410 // OS: O DR
4411 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4412
4413 // ACTION: CaptivePortalLoginActivity auto-closes
4414 // CATEGORY: GLOBAL_SYSTEM_UI
4415 // OS: O DR
4416 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4417
4418 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4419 // CATEGORY: GLOBAL_SYSTEM_UI
4420 // OS: O DR
4421 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4422
4423 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4424 // CATEGORY: GLOBAL_SYSTEM_UI
4425 // OS: O DR
4426 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4427
4428 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4429 // CATEGORY: SETTINGS
4430 // OS: O DR
4431 ACTION_WIFI_SIGNIN = 1008;
4432
Antony Sargentf3cc3172017-05-04 14:58:06 -07004433 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4434 // CATEGORY: SETTINGS
4435 // OS: O DR
4436 BLUETOOTH_DEVICE_DETAILS = 1009;
4437
fanzhang172255759d2017-06-05 21:43:47 -07004438 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4439 CONFIGURE_KEYGUARD_DIALOG = 1010;
4440
Fan Zhange33c70d2017-06-06 12:37:13 -07004441 // Open: Settings > Search > No Result View
4442 SETTINGS_SEARCH_NO_RESULT = 1011;
4443
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004444 // OPEN: Assist Gesture before training
4445 // CATEGORY: SETTINGS
4446 // OS: O DR
4447 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4448
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004449 // CaptivePortalLoginActivity displays SSL error page
4450 // CATEGORY: GLOBAL_SYSTEM_UI
4451 // OS: O DR
4452 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4453
Fan Zhang1a0fc992017-06-13 13:45:21 -07004454 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4455 WIFI_TETHER_SETTINGS = 1014;
4456
Antony Sargentc3b5da62017-06-16 11:50:13 -07004457 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4458 // -> Edit name button.
4459 // CATEGORY: SETTINGS
4460 // OS: O DR
4461 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4462
Fan Zhang543587d2017-06-19 12:32:14 -07004463 // ACTION: Settings > Notification Settings > Open application notification
4464 // CATEGORY: SETTINGS
4465 // OS: O DR
4466 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4467
4468 // ACTION: Settings > App Info > Open app settings
4469 // CATEGORY: SETTINGS
4470 // OS: O DR
4471 ACTION_OPEN_APP_SETTING = 1017;
4472
jackqdyulei2f1a3592017-06-19 13:11:05 -07004473 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4474 // CATEGORY: SETTINGS
4475 // OS: O DR
4476 BLUETOOTH_PAIRING = 1018;
4477
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004478 // ACTION: Collect PSD Signals
4479 // CATEGORY: SETTINGS
4480 // OS: O DR
4481 ACTION_PSD_LOADER = 1019;
4482
jackqdyulei602bcc92017-06-21 15:17:53 -07004483 // ACTION: Background check action on an app
4484 // CATEGORY: SETTINGS
4485 // OS: O DR
4486 ACTION_APP_BACKGROUND_CHECK = 1020;
4487
4488 // ACTION: Location check action on an app
4489 // CATEGORY: SETTINGS
4490 // OS: O DR
4491 ACTION_APP_LOCATION_CHECK = 1021;
4492
Charlie Wang15a36ed2017-06-14 14:46:39 -07004493 // Device headset status
4494 // CATEGORY: OTHER
4495 // SUBTYPE: 1 is DON, 2 is DOFF
4496 // OS: O DR
4497 ACTION_HEADSET_STATUS = 1022;
4498
4499 // Device Headset Plug status
4500 // CATEGORY: OTHER
4501 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4502 // OS: O DR
4503 ACTION_HEADSET_PLUG = 1023;
4504
4505 // Device Headset battery level on Plug
4506 // CATEGORY: OTHER
4507 // FIELD - The battery percentage when the user decided to plug in
4508 // Type: integer
4509 // OS: O DR
4510 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4511
Charlie Wang566ec702017-06-26 15:30:03 -07004512 // Device Headset battery level on Plug
4513 // CATEGORY: OTHER
4514 // FIELD - The battery percentage when the user decided to plug in
4515 // Type: integer
4516 // OS: O DR
4517 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4518
Charlie Wang15a36ed2017-06-14 14:46:39 -07004519 // Device Headset Pose status
4520 // CATEGORY: OTHER
4521 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4522 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004523 ACTION_HEADSET_POSE_STATUS = 1026;
4524
4525 // Device Headset Usage session time
4526 // CATEGORY: OTHER
4527 // FIELD - The time the headset was used in a session
4528 // OS: O DR
4529 FIELD_SESSION_TIME_MS = 1027;
4530
4531 // Device Headset Idle time
4532 // CATEGORY: OTHER
4533 // FIELD - The time in between each session
4534 // OS: O DR
4535 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4536
4537 // Device Headset charge session time
4538 // CATEGORY: OTHER
4539 // FIELD - The time taken for each charge
4540 // OS: O DR
4541 FIELD_TIME_OF_CHARGE_MS = 1029;
4542
4543 // Device Headset time between charge
4544 // CATEGORY: OTHER
4545 // FIELD - The time in between each charge
4546 // OS: O DR
4547 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004548
Antony Sargentca701a22017-07-05 17:02:00 -07004549 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4550 // -> Forget button.
4551 // CATEGORY: SETTINGS
4552 // OS: O DR
4553 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4554
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004555 // An event from the camera service
4556 // CATEGORY: OTHER
4557 // SUBTYPE: CameraEvent
4558 // OS: O DR
4559 ACTION_CAMERA_EVENT = 1032;
4560
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004561 // OPEN: Settings > Trampoline Intent > Settings page
4562 // CATEGORY: SETTINGS
4563 // OS: O DR
4564 TRAMPOLINE_SETTINGS_EVENT = 1033;
4565
Chris Wren9a4f2662017-06-29 10:10:02 -04004566 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4567
Malcolm Chen21062542017-06-20 11:36:01 -07004568 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4569 // CATEGORY: SETTINGS
4570 // OS: O MR
4571 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4572
4573 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4574 // CATEGORY: SETTINGS
4575 // OS: O MR
4576 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4577
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004578 // FIELD - State of asynchronous ranking when Settings search result is clicked
4579 // CATEGORY: SETTINGS
4580 // OS: O MR
4581 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4582
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004583 // ACTION: Settings > Connected devices > SMS Mirroring
4584 // CATEGORY: SETTINGS
4585 // OS: O MR
4586 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4587
Kang Li2c571892017-07-05 14:47:32 -07004588 // ACTION: Chooser picked a ranked target.
4589 // CATEGORY: GLOBAL_SYSTEM_UI
4590 // OS: O MR
4591 ACTION_TARGET_SELECTED = 1085;
4592
4593 // FIELD - is category used in Chooser: 1.
4594 // Type: int encoded boolean
4595 // CATEGORY: GLOBAL_SYSTEM_UI
4596 // OS: O MR
4597 FIELD_IS_CATEGORY_USED = 1086;
4598
4599 // FIELD - ranked position of selected target for Chooser.
4600 // CATEGORY: GLOBAL_SYSTEM_UI
4601 // OS: O MR
4602 FIELD_RANKED_POSITION = 1087;
4603
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004604 // OPEN: Settings > Data plan usage
4605 // CATEGORY: SETTINGS
4606 // OS: O MR
4607 DATA_PLAN_USAGE_SUMMARY = 1088;
4608
Doris Lingce007eb2017-08-09 13:59:46 -07004609 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4610 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4611
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004612 // ACTION: Logged when the app has notified that it has fully drawn. See
4613 // Activity.reportFullyDrawn().
4614 APP_TRANSITION_REPORTED_DRAWN = 1090;
4615
4616 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4617 // the app transition.
4618 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4619
Daniel Nishia86115f2017-08-23 10:27:08 -07004620 // OPEN: Settings > Storage > Photos & Videos
4621 // CATEGORY: SETTINGS
4622 // OS: O MR
4623 APPLICATIONS_STORAGE_PHOTOS = 1092;
4624
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004625 // ACTION: Logged when the status bar icons change.
4626 // OS: O MR
4627 STATUS_BAR_ICONS_CHANGED = 1093;
4628
4629 // FIELD: Bitfield indicating which icons are shown.
4630 // OS: O MR
4631 FIELD_STATUS_ICONS = 1094;
4632
4633 // FIELD: Number of status icons currently shown.
4634 // OS: O MR
4635 FIELD_NUM_STATUS_ICONS = 1095;
4636
Jack He4b605792017-09-01 11:48:30 -07004637 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4638 // CATEGORY: SETTINGS
4639 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004640 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004641
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004642 // FIELD - Whether smart suggestion ranking was enabled or not
4643 // Type: int encoded boolean
4644 // CATEGORY: SETTINGS
4645 // OS: O MR
4646 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4647
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004648 // ACTION: The device boots
4649 ACTION_BOOT = 1098;
4650
4651 // FIELD: A string value representing some state of the platform, e.g., boot reason
4652 FIELD_PLATFORM_REASON = 1099;
4653
Jan Althaus786a39d2017-09-15 10:41:16 +02004654 // CATEGORY: The category for all actions relating to selection session logging.
4655 // OS: O MR
4656 TEXT_SELECTION_SESSION = 1100;
4657
4658 // ACTION: A selection session started (i.e. the selection handles appeared)
4659 // CATEGORY: TEXT_SELECTION_SESSION
4660 // OS: O MR
4661 ACTION_TEXT_SELECTION_START = 1101;
4662
4663 // ACTION: The user modified the selection (e.g. by dragging the handles)
4664 // CATEGORY: TEXT_SELECTION_SESSION
4665 // OS: O MR
4666 ACTION_TEXT_SELECTION_MODIFY = 1102;
4667
4668 // ACTION: The user modified the selection by pressing the "select all" button.
4669 // CATEGORY: TEXT_SELECTION_SESSION
4670 // OS: O MR
4671 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4672
4673 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4674 // CATEGORY: TEXT_SELECTION_SESSION
4675 // OS: O MR
4676 ACTION_TEXT_SELECTION_RESET = 1104;
4677
4678 // ACTION: Smart selection made a single word prediction
4679 // CATEGORY: TEXT_SELECTION_SESSION
4680 // OS: O MR
4681 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4682
4683 // ACTION: Smart selection made a multi word prediction
4684 // CATEGORY: TEXT_SELECTION_SESSION
4685 // OS: O MR
4686 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4687
4688 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4689 // CATEGORY: TEXT_SELECTION_SESSION
4690 // OS: O MR
4691 ACTION_TEXT_SELECTION_AUTO = 1107;
4692
4693 // ACTION: A selection session ended with the user typing over the text
4694 // CATEGORY: TEXT_SELECTION_SESSION
4695 // OS: O MR
4696 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4697
4698 // ACTION: A selection session ended with the user copying the text
4699 // CATEGORY: TEXT_SELECTION_SESSION
4700 // OS: O MR
4701 ACTION_TEXT_SELECTION_COPY = 1109;
4702
4703 // ACTION: A selection session ended with the user pasting over the text
4704 // CATEGORY: TEXT_SELECTION_SESSION
4705 // OS: O MR
4706 ACTION_TEXT_SELECTION_PASTE = 1110;
4707
4708 // ACTION: A selection session ended with the user cutting the text
4709 // CATEGORY: TEXT_SELECTION_SESSION
4710 // OS: O MR
4711 ACTION_TEXT_SELECTION_CUT = 1111;
4712
4713 // ACTION: A selection session ended with the user pressing the share button
4714 // CATEGORY: TEXT_SELECTION_SESSION
4715 // OS: O MR
4716 ACTION_TEXT_SELECTION_SHARE = 1112;
4717
4718 // ACTION: A selection session ended with the user pressing the smart share button
4719 // CATEGORY: TEXT_SELECTION_SESSION
4720 // OS: O MR
4721 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4722
4723 // ACTION: A selection session ended with the user dragging the text
4724 // CATEGORY: TEXT_SELECTION_SESSION
4725 // OS: O MR
4726 ACTION_TEXT_SELECTION_DRAG = 1114;
4727
4728 // ACTION: A selection session ended with the user abandoning the selection
4729 // CATEGORY: TEXT_SELECTION_SESSION
4730 // OS: O MR
4731 ACTION_TEXT_SELECTION_ABANDON = 1115;
4732
4733 // ACTION: A selection session ended with the user picking an unhandled action bar item
4734 // CATEGORY: TEXT_SELECTION_SESSION
4735 // OS: O MR
4736 ACTION_TEXT_SELECTION_OTHER = 1116;
4737
4738 // FIELD: Time in milliseconds from the start of the session to this event
4739 // CATEGORY: TEXT_SELECTION_SESSION
4740 // OS: O MR
4741 FIELD_SELECTION_SINCE_START = 1117;
4742
4743 // FIELD: time in milliseconds between the last event in the session and this one
4744 // CATEGORY: TEXT_SELECTION_SESSION
4745 // OS: O MR
4746 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4747
4748 // FIELD: a random uid for a selection session (lasting from select start to end)
4749 // CATEGORY: TEXT_SELECTION_SESSION
4750 // OS: O MR
4751 FIELD_SELECTION_SESSION_ID = 1119;
4752
4753 // FIELD: the sequence number of the event in the session
4754 // CATEGORY: TEXT_SELECTION_SESSION
4755 // OS: O MR
4756 FIELD_SELECTION_SESSION_INDEX = 1120;
4757
4758 // FIELD: a concatenation of the widget type and ML model version.
4759 // CATEGORY: TEXT_SELECTION_SESSION
4760 // OS: O MR
4761 FIELD_SELECTION_VERSION_TAG = 1121;
4762
4763 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4764 // packed 16bit integers. (start in MSBs, end in LSBs)
4765 // CATEGORY: TEXT_SELECTION_SESSION
4766 // OS: O MR
4767 FIELD_SELECTION_RANGE = 1122;
4768
4769 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4770 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4771 // CATEGORY: TEXT_SELECTION_SESSION
4772 // OS: O MR
4773 FIELD_SELECTION_SMART_RANGE = 1123;
4774
Felipe Lemeb22d6352017-09-08 20:03:53 -07004775 // The value of an autofillable and savable view was reset
4776 // Package: Package of app that was autofilled
4777 // OS: O MR
4778 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4779 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004780 // NOTE: starting on OS P, it also added the following fields:
4781 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004782 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004783 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004784 AUTOFILL_VALUE_RESET = 1124;
4785
4786 // Tag of AUTOFILL_VALUE_RESET
4787 // OS: O MR
4788 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4789
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004790 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004791 // Package: Package of app that was autofilled
4792 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004793 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004794 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4795
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004796 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004797 // Package: Package of app that was autofilled
4798 // OS: O MR
4799 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004800 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004801 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4802
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004803 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004804 // Package: Package of app that was autofilled
4805 // OS: O MR
4806 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004807 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004808 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4809
Felipe Leme2c888422017-10-26 12:46:35 -07004810 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004811 // Package: Package of app that is autofilled
4812 // OS: O MR
4813 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4814 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004815 // NOTE: starting on OS P, it also added the following fields:
4816 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004817 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004818 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004819 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4820
4821 // FIELD - Type of save object passed by the service when the Save UI is shown
4822 // OS: O MR
4823 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4824
Felipe Leme2c888422017-10-26 12:46:35 -07004825 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004826 // Package: Package of app that is autofilled
4827 // OS: O MR
4828 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4829 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004830 // NOTE: starting on OS P, it also added the following fields:
4831 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004832 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004833 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004834 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4835
Felipe Leme2c888422017-10-26 12:46:35 -07004836 // 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 -07004837 // Package: Package of app that is autofilled
4838 // OS: O MR
4839 // Type TYPE_UNKNOWN: The link was not properly set by the service
4840 // Type TYPE_OPEN: The link launched an activity
4841 // Type TYPE_FAILURE: The link could not launc an activity
4842 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4843 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004844 // NOTE: starting on OS P, it also added the following fields:
4845 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004846 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004847 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004848 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4849
4850 // Result of the validation on save when an autofill service provided a validator
4851 // Package: Package of app that is autofilled
4852 // OS: O MR
4853 // Type TYPE_FAILURE: The validation could not be performed due to an error
4854 // Type TYPE_SUCCESS: The validation passed
4855 // Type TYPE_DISMISS: The validation failed
4856 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4857 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004858 // NOTE: starting on OS P, it also added the following fields:
4859 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004860 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004861 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004862 AUTOFILL_SAVE_VALIDATION = 1133;
4863
Felipe Leme2c888422017-10-26 12:46:35 -07004864 // 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 -07004865 // provided by the autofill service
4866 // Package: Package of app that is autofilled
4867 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004868 // Type TYPE_OPEN: The autofill save UI was restored
4869 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004870 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004871 // NOTE: starting on OS P, it also added the following fields:
4872 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004873 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004874 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004875 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4876
Felipe Leme9d414492017-09-20 13:55:28 -07004877 // Autofill service called API that disables itself
4878 // Package: Package of the autofill service
4879 // OS: O MR
4880 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4881
Felipe Leme21fb1a32018-05-21 11:18:46 -07004882 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004883 // Reports how long it took to show the autofill UI after a field was focused
4884 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004885 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4886 // Package: Package of the autofill service
4887 // OS: O MR
4888 AUTOFILL_UI_LATENCY = 1136;
4889
Chris Wren21a2e722017-10-02 17:44:53 -04004890 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4891 // OS: O MR
4892 NOTIFICATION_SNOOZE_CLICKED = 1137;
4893
4894 // Action: user selected a notification snooze duration from the drop down
4895 // OS: O MR
4896 NOTIFICATION_SELECT_SNOOZE = 1138;
4897
4898 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4899 // OS: O MR
4900 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4901
4902 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4903 // OS: O MR
4904 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4905
4906 // Action: user tapped undo on the notification snooze leave-behind
4907 // OS: O MR
4908 NOTIFICATION_UNDO_SNOOZE = 1141;
4909
4910 // Action: user togged the visibility of the notification snooze options drop down
4911 // OS: O MR
4912 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4913
Romain Guy62e8c172017-10-24 21:37:34 +01004914 // OPEN: Settings > Display > Colors
4915 // CATEGORY: SETTINGS
4916 // OS: O MR
4917 COLOR_MODE_SETTINGS = 1143;
4918
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004919 // Enclosing category for group of APP_TRANSITION_FOO events,
4920 // logged when we cancel an app transition.
4921 APP_TRANSITION_CANCELLED = 1144;
4922
Felipe Lemeb659adb2018-01-18 15:21:36 -08004923 // Tag of a field representing a duration on autofill-related metrics.
4924 FIELD_AUTOFILL_DURATION = 1145;
4925
Doris Lingce007eb2017-08-09 13:59:46 -07004926 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4927
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004928 // OPEN: Settings > Network & Internet > Mobile network
4929 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004930 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004931
4932 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4933 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004934 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004935
4936 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4937 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004938 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004939
4940 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4941 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004942 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004943
4944 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4945 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004946 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004947
4948 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4949 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004950 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004951
4952 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4953 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004954 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004955
4956 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4957 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004958 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004959
4960 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4961 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004962 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004963
4964 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4965 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004966 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004967
4968 // ACTION: Settings > Network & Internet > Mobile network > Network
4969 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004970 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004971
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004972 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004973 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004974
4975 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4976 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004977 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004978
4979 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4980 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004981 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004982
4983 // OPEN: Settings > Network & Internet > Mobile network > System select
4984 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004985 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004986
4987 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4988 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004989 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004990
4991 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4992 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004993 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004994
Fan Zhanga2f2c912017-08-15 17:20:37 -07004995 // OPEN: Settings > Developer Options > Experiment dashboard
4996 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004997 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004998
Julia Reynolds005c8b92017-08-24 10:35:53 -04004999 // OPEN: Settings > Notifications > [App] > Topic Notifications
5000 // CATEGORY: SETTINGS
5001 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005002 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04005003
Fan Zhang3af4fbc2017-09-10 14:38:29 -07005004 // OPEN: Settings > Developer options > Enable > Info dialog
5005 // CATEGORY: SETTINGS
5006 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005007 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07005008
jeffreyhuang57359c02017-09-18 11:34:00 -07005009 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
5010 // CATEGORY: SETTINGS
5011 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005012 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07005013
Kevin Chyn60eea712017-09-26 16:03:05 -07005014 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
5015 // CATEGORY: SETTINGS
5016 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005017 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07005018
jeffreyhuang37c4b132017-09-21 14:09:20 -07005019 // OPEN: Settings > Developer options > USB debugging > Info dialog
5020 // CATEGORY: SETTINGS
5021 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005022 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07005023
jeffreyhuang9afc8d72017-10-02 15:50:12 -07005024 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
5025 // CATEGORY: SETTINGS
5026 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04005027 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07005028
Fan Zhange5b34302017-10-09 15:58:38 -07005029 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07005030 // CATEGORY: SETTINGS
5031 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07005032 DEVELOPMENT_QS_TILE_CONFIG = 1224;
5033
jeffreyhuang49de1252017-10-05 15:25:14 -07005034 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
5035 // CATEGORY: SETTINGS
5036 // OS: P
5037 DIALOG_LOG_PERSIST = 1225;
5038
Beverly04216872017-09-28 10:55:32 -04005039 // ACTION: DND Settings > Priority only allows > Alarms toggle
5040 // SUBTYPE: 0 is off, 1 is on
5041 // CATEGORY: SETTINGS
5042 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005043 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04005044
5045 // ACTION: DND Settings > Priority only allows > Media toggle
5046 // SUBTYPE: 0 is off, 1 is on
5047 // CATEGORY: SETTINGS
5048 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005049 ACTION_ZEN_ALLOW_MEDIA = 1227;
5050
5051 // An autofill service explicitly defined which view should commit the autofill context
5052 // Package: Package of app that is autofilled
5053 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005054 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005055 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07005056 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005057 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005058 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
5059
5060 // The autofill context was commited when the user clicked a view explicitly marked by the
5061 // service as committing it
5062 // Package: Package of app that is autofilled
5063 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005064 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07005065 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005066 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005067 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04005068
Malcolm Chen4f17b172017-10-19 13:54:07 -07005069 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
5070 // CATEGORY: SETTINGS
5071 // OS: P
5072 WIFI_CALLING_FOR_SUB = 1230;
5073
Felipe Leme17292d12017-10-24 14:03:10 -07005074 // An autofill service asked to disable autofill for a given application.
5075 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005076 // OS: P
5077 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08005078 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005079 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005080 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005081 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5082
5083 // An autofill service asked to disable autofill for a given activity.
5084 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005085 // OS: P
5086 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5087 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005088 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005089 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005090 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005091 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5092
jackqdyuleide3b7af2017-10-24 16:32:58 -07005093 // ACTION: Stop an app and turn on background check
5094 // CATEGORY: SETTINGS
5095 // OS: P
5096 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5097
5098 // FIELD: The action type for each anomaly
5099 // CATEGORY: SETTINGS
5100 // OS: P
5101 FIELD_ANOMALY_ACTION_TYPE = 1234;
5102
5103 // OPEN: Settings -> Battery -> Wakelock anomaly
5104 // CATEGORY: SETTINGS
5105 // OS: P
5106 ANOMALY_TYPE_WAKELOCK = 1235;
5107
5108 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5109 // CATEGORY: SETTINGS
5110 // OS: P
5111 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5112
5113 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5114 // CATEGORY: SETTINGS
5115 // OS: P
5116 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5117
Fan Zhanga4a01722017-10-30 17:54:24 -07005118 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5119 // OS: P
5120 DIALOG_OEM_LOCK_INFO = 1238;
5121
jackqdyulei331fafb2017-11-01 14:01:24 -07005122 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5123 // CATEGORY: SETTINGS
5124 // OS: P
5125 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5126
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005127 // Open: Settings > System > About phone > IMEI
5128 // CATEGORY: SETTINGS
5129 // OS: P
5130 DIALOG_IMEI_INFO = 1240;
5131
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005132 // In permission action fields tagged like this reference the permission affected
5133 FIELD_PERMISSION = 1241;
5134
5135 // ACTION: An app requested a permission and we asked to user to approve the request
5136 // PACKAGE: The package name of the app requesting the permission
5137 // Tag FIELD_PERMISSION: Name of the permission requested
5138 ACTION_PERMISSION_REQUESTED = 1242;
5139
5140 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5141 // or automatically. In the second case there will not be an
5142 // ACTION_PERMISSION_REQUESTED.
5143 // PACKAGE: The package name of the app that was granted the permission
5144 // Tag FIELD_PERMISSION: Name of the permission granted
5145 ACTION_PERMISSION_GRANTED = 1243;
5146
5147 // ACTION: An app requested the a permission and the request was denied by the user or a device
5148 // policy
5149 // PACKAGE: The package name of the app requesting the permission
5150 // Tag FIELD_PERMISSION: Name of the permission denied
5151 ACTION_PERMISSION_DENIED = 1244;
5152
5153 // ACTION: A permission was revoked
5154 // PACKAGE: The package name of the app the permission was revoked for
5155 // Tag FIELD_PERMISSION: Name of the permission revoked
5156 ACTION_PERMISSION_REVOKED = 1245;
5157
jeffreyhuang594314c2017-11-01 10:26:15 -07005158 // OPEN: Settings > System > About Phone > Sim status
5159 // CATEGORY: SETTINGS
5160 // OS: P
5161 DIALOG_SIM_STATUS = 1246;
5162
jeffreyhuang3bd59782017-11-02 11:08:28 -07005163 // OPEN: Settings > System > About Phone > Android Version
5164 // CATEGORY: SETTINGS
5165 // OS: P
5166 DIALOG_FIRMWARE_VERSION = 1247;
5167
jackqdyulei8fe97542017-11-08 16:23:43 -08005168 // OPEN: Settings > Network & internet > Menu > Private DNS
5169 // CATEGORY: SETTINGS
5170 // OS: P
5171 DIALOG_PRIVATE_DNS = 1248;
5172
5173 // ACTION: A private dns mode been selected by user
5174 // CATEGORY: SETTINGS
5175 // OS: P
5176 ACTION_PRIVATE_DNS_MODE = 1249;
5177
Jan Althausae5eb832017-11-06 12:31:59 +01005178 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5179 // CATEGORY: TEXT_SELECTION_SESSION
5180 // OS: P
5181 FIELD_SELECTION_RANGE_START = 1250;
5182
5183 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5184 // CATEGORY: TEXT_SELECTION_SESSION
5185 // OS: P
5186 FIELD_SELECTION_RANGE_END = 1251;
5187
5188 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5189 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5190 // CATEGORY: TEXT_SELECTION_SESSION
5191 // OS: P
5192 FIELD_SELECTION_SMART_RANGE_START = 1252;
5193
5194 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5195 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5196 // CATEGORY: TEXT_SELECTION_SESSION
5197 // OS: P
5198 FIELD_SELECTION_SMART_RANGE_END = 1253;
5199
5200 // FIELD: the entity type of the text currently selected.
5201 // CATEGORY: TEXT_SELECTION_SESSION
5202 // OS: P
5203 FIELD_SELECTION_ENTITY_TYPE = 1254;
5204
5205 // FIELD: the type of widget the selection was made in.
5206 // CATEGORY: TEXT_SELECTION_SESSION
5207 // OS: P
5208 FIELD_SELECTION_WIDGET_TYPE = 1255;
5209
5210 // FIELD: the name of the text classifier model used.
5211 // CATEGORY: TEXT_SELECTION_SESSION
5212 // OS: P
5213 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5214
Beverly625442d2017-11-03 17:27:02 -04005215 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5216 // CATEGORY: SETTINGS
5217 // OS: P
5218 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5219
5220 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5221 // CATEGORY: SETTINGS
5222 // OS: P
5223 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5224
5225 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5226 // CATEGORY: SETTINGS
5227 // OS: P
5228 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5229
5230 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5231 // CATEGORY: SETTINGS
5232 // OS: P
5233 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5234
5235 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5236 // CATEGORY: SETTINGS
5237 // OS: P
5238 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5239
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005240 // FIELD: the version of the widget the selection was made in.
5241 // CATEGORY: TEXT_SELECTION_SESSION
5242 // OS: P
5243 FIELD_SELECTION_WIDGET_VERSION = 1262;
5244
jackqdyulei63193602017-11-27 13:46:48 -08005245 // OPEN: Settings > Battery(version 2)
5246 // CATEGORY: SETTINGS
5247 // OS: P
5248 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5249
jackqdyulei6139eab2017-11-29 14:38:32 -08005250 // OPEN: Settings > Connected devices > Connection preferences
5251 // CATEGORY: SETTINGS
5252 // OS: P
5253 CONNECTION_DEVICE_ADVANCED = 1264;
5254
Fan Zhang5235c052017-12-05 13:49:35 -08005255 // OPEN: Settings > Security > Screen lock gear icon
5256 // CATEGORY: SETTINGS
5257 // OS: P
5258 SCREEN_LOCK_SETTINGS = 1265;
5259
Beverlybf16c142017-11-27 16:21:34 -05005260 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5261 // CATEGORY: SETTINGS
5262 // OS: P
5263 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005264
Beverlybf16c142017-11-27 16:21:34 -05005265 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5266 // CATEGORY: SETTINGS
5267 // OS: P
5268 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5269
5270 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5271 // CATEGORY: SETTINGS
5272 // OS: P
5273 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5274
5275 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5276 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5277 // CATEGORY: SETTINGS
5278 // OS: P
5279 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5280
5281 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5282 // CATEGORY: SETTINGS
5283 // OS: P
5284 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5285
Felipe Leme5e047202017-12-05 16:30:06 -08005286 // Tag of a field for the number of ids in an autofill field classification request.
5287 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5288
5289 // An autofill service updated its user data
5290 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005291 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5292 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005293 // OS: P
5294 AUTOFILL_USERDATA_UPDATED = 1272;
5295
5296 // Some data entered by the user matched the field classification requested by the service.
5297 // Package: Package of app that is autofilled
5298 // Counter: number of matches found
5299 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005300 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005301 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5302 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005303 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005304 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005305 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5306
5307 // Tag used to report autofill field classification scores
5308 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5309
Jerry Zhang18be8db2017-12-15 15:24:41 -08005310 // ACTION: Usb config has been changed to charging
5311 // CATEGORY: SETTINGS
5312 // OS: P
5313 ACTION_USB_CONFIG_CHARGING = 1275;
5314
5315 // ACTION: Usb config has been changed to mtp (file transfer)
5316 // CATEGORY: SETTINGS
5317 // OS: P
5318 ACTION_USB_CONFIG_MTP = 1276;
5319
5320 // ACTION: Usb config has been changed to ptp (photo transfer)
5321 // CATEGORY: SETTINGS
5322 // OS: P
5323 ACTION_USB_CONFIG_PTP = 1277;
5324
5325 // ACTION: Usb config has been changed to rndis (usb tethering)
5326 // CATEGORY: SETTINGS
5327 // OS: P
5328 ACTION_USB_CONFIG_RNDIS = 1278;
5329
5330 // ACTION: Usb config has been changed to midi
5331 // CATEGORY: SETTINGS
5332 // OS: P
5333 ACTION_USB_CONFIG_MIDI = 1279;
5334
5335 // ACTION: Usb config has been changed to accessory
5336 // CATEGORY: SETTINGS
5337 // OS: P
5338 ACTION_USB_CONFIG_ACCESSORY = 1280;
5339
jackqdyuleie04138d2018-01-08 17:51:57 -08005340 // OPEN: Settings > Battery > Smart Battery
5341 // CATEGORY: SETTINGS
5342 // OS: P
5343 FUELGAUGE_SMART_BATTERY = 1281;
5344
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005345 // ACTION: User tapped Screenshot in the power menu.
5346 // CATEGORY: GLOBAL_SYSTEM_UI
5347 // OS: P
5348 ACTION_SCREENSHOT_POWER_MENU = 1282;
5349
Felipe Leme3e099112018-01-18 12:57:45 -08005350 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005351 // CATEGORY: SETTINGS
5352 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005353 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005354
Felipe Leme3e099112018-01-18 12:57:45 -08005355 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005356 // CATEGORY: SETTINGS
5357 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005358 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005359
jackqdyuleid9821242018-01-09 17:42:52 -08005360 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5361 // CATEGORY: SETTINGS
5362 // OS: P
5363 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5364
Beverly92c25682018-01-22 09:27:19 -05005365 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5366 // CATEGORY: SETTINGS
5367 // OS: P
5368 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5369
Mike Digmanc94759d2018-01-23 11:01:21 -08005370 // ACTION: Rotate suggestion accepted in rotation locked mode
5371 // CATEGORY: GLOBAL_SYSTEM_UI
5372 // OS: P
5373 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5374
5375 // OPEN: Rotation suggestion shown in rotation locked mode
5376 // CATEGORY: GLOBAL_SYSTEM_UI
5377 // OS: P
5378 ROTATION_SUGGESTION_SHOWN = 1288;
5379
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005380 // An autofill service was bound using an unofficial(but still supported) permission.
5381 // Package: Package of the autofill service
5382 // OS: P
5383 AUTOFILL_INVALID_PERMISSION = 1289;
5384
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005385 // OPEN: QS Alarm tile shown
5386 // ACTION: QS Alarm tile tapped
5387 // SUBTYPE: 0 is off, 1 is on
5388 // CATEGORY: QUICK_SETTINGS
5389 // OS: P
5390 QS_ALARM = 1290;
5391
Jerry Zhang79147972018-01-31 16:04:06 -08005392 // OPEN: Settings->Connected Devices->USB->(click on details link)
5393 // CATEGORY: SETTINGS
5394 // OS: P
5395 USB_DEVICE_DETAILS = 1291;
5396
Michael Wright98bdc512018-01-26 19:15:57 +00005397 // OPEN: Settings > Accessibility > Vibration
5398 // CATEGORY: SETTINGS
5399 // OS: P
5400 ACCESSIBILITY_VIBRATION = 1292;
5401
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00005402 // OPEN: Settings > Accessibility > Vibration > Notification vibration
Michael Wright98bdc512018-01-26 19:15:57 +00005403 // CATEGORY: SETTINGS
5404 // OS: P
5405 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5406
5407 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5408 // CATEGORY: SETTINGS
5409 // OS: P
5410 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5411
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005412 // OPEN: Volume panel > output chooser dialog
5413 // OS: P
5414 OUTPUT_CHOOSER = 1295;
5415
5416 // Action: Volume panel > output chooser dialog > tap on device
5417 // OS: P
5418 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5419
5420 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5421 // OS: P
5422 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5423
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005424 // OPEN: TV Settings > Home theater control
5425 // OS: P
5426 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5427
5428 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5429 // OS: P
5430 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5431
5432 // OPEN: TV Settings > Device
5433 // OS: P
5434 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5435
5436 // OPEN: TV Settings > Network > Proxy settings
5437 // OS: P
5438 DIALOG_TV_NETWORK_PROXY = 1301;
5439
Makoto Onuki698f7a02018-02-13 15:02:23 -08005440 // Events for battery saver turning on/off and/or the interactive state changes.
5441 // OS: P
5442 BATTERY_SAVER = 1302;
5443
5444 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5445 // OS: P
5446 FIELD_INTERACTIVE = 1303;
5447
5448 // Time spent in milliseconds in the current mode.
5449 // OS: P
5450 FIELD_DURATION_MILLIS = 1304;
5451
Chris Wren8f7a1442018-05-14 17:16:31 -04005452 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005453 // OS: P
5454 FIELD_START_BATTERY_UA = 1305;
5455
Chris Wren8f7a1442018-05-14 17:16:31 -04005456 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005457 // OS: P
5458 FIELD_END_BATTERY_UA = 1306;
5459
5460 // Battery level in % (0-100) when the current "mode" started.
5461 // OS: P
5462 FIELD_START_BATTERY_PERCENT = 1307;
5463
5464 // Battery level in % (0-100) when this event was created.
5465 // OS: P
5466 FIELD_END_BATTERY_PERCENT = 1308;
5467
Christine Frankse257e452018-01-18 11:06:54 -08005468 // ACTION: Settings > Display > Night Light
Christine Franks0ada2772019-02-25 13:54:57 -08005469 // SUBTYPE: com.android.server.display.color.ColorDisplayService.AutoMode value
Christine Frankse257e452018-01-18 11:06:54 -08005470 // CATEGORY: SETTINGS
5471 // OS: P
5472 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5473
5474 // ACTION: Settings > Display > Night Light
5475 // CATEGORY: SETTINGS
5476 // SUBTYPE: 0 is starting time, 1 is ending time
5477 // OS: P
5478 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5479
5480 // FIELD: Current mode corresponding to a QS tile
5481 // CATEGORY: QUICK SETTINGS
5482 // OS: P
5483 FIELD_QS_MODE = 1311;
5484
Jerry Zhang92306d82018-02-12 18:12:41 -08005485 // OPEN: Settings->Developer Options->Default USB
5486 // CATEGORY: SETTINGS
5487 // OS: P
5488 USB_DEFAULT = 1312;
5489
Jan Althaus31efdc32018-02-19 22:23:13 +01005490 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5491 // OS: P
5492 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5493
5494 // FIELD: milliseconds spent generating links.
5495 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5496 // OS: P
5497 FIELD_LINKIFY_LATENCY = 1314;
5498
5499 // FIELD: length of the input text in characters.
5500 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5501 // OS: P
5502 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5503
5504 // FIELD: number of links detected.
5505 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5506 // OS: P
5507 FIELD_LINKIFY_NUM_LINKS = 1316;
5508
5509 // FIELD: length of all links in characters.
5510 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5511 // OS: P
5512 FIELD_LINKIFY_LINK_LENGTH = 1317;
5513
5514 // FIELD: the type of entity the stats are for.
5515 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5516 // OS: P
5517 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5518
5519 // FIELD: a random uid for a single call to generateLinks
5520 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5521 // OS: P
5522 FIELD_LINKIFY_CALL_ID = 1319;
5523
Calin Juravle759fbda2018-02-20 19:52:30 +00005524 // FIELD: The compiler filter used when when optimizing the package.
5525 // Logged together with app transition events.
5526 // OS: P
5527 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5528
5529 // FIELD: The reason for optimizing the package.
5530 // Logged together with app transition events.
5531 // OS: P
5532 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5533
Emilian Peev6bf0a552018-02-10 02:15:49 +00005534 // FIELD: The camera API level used.
5535 // CATEGORY: CAMERA
5536 // OS: P
5537 FIELD_CAMERA_API_LEVEL = 1322;
5538
jackqdyulei73e6b342018-02-26 14:44:50 -08005539 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5540 // CATEGORY: SETTINGS
5541 // OS: P
5542 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5543
jackqdyuleibb60ea22018-02-26 17:18:12 -08005544 // OPEN: Settings > Battery > Battery tip
5545 // CATEGORY: SETTINGS
5546 // OS: P
5547 ACTION_BATTERY_TIP_SHOWN = 1324;
5548
Maggieb9d76322018-02-16 18:00:30 -08005549 // OPEN: Settings > Security & Location > Location > See all
5550 // CATEGORY: SETTINGS
5551 // OS: P
5552 RECENT_LOCATION_REQUESTS_ALL = 1325;
5553
Evan Laird404a85c2018-02-28 15:31:29 -05005554 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5555 // CATEGORY: GLOBAL_SYSTEM_UI
5556 // OS: P
5557 FIELD_GESTURE_X_PERCENT = 1326;
5558
5559 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5560 // CATEGORY: GLOBAL_SYSTEM_UI
5561 // OS: P
5562 FIELD_GESTURE_Y_PERCENT = 1327;
5563
5564 // ACTION: Expand the notification panel while unlocked
5565 // CATEGORY: GLOBAL_SYSTEM_UI
5566 // OS: P
5567 ACTION_PANEL_VIEW_EXPAND = 1328;
5568
Evan Laird404a85c2018-02-28 15:31:29 -05005569 // FIELD: Rotation of the device
5570 // CATEGORY: GLOBAL_SYSTEM_UI
5571 // OS: P
5572 FIELD_DEVICE_ROTATION = 1329;
5573
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005574 // OPEN: TV Settings > Inputs > Input Options
5575 // CATEGORY: SETTINGS
5576 // OS: P
5577 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5578
5579 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5580 // CATEGORY: SETTINGS
5581 // OS: P
5582 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5583
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005584 // ACTION: DND Settings > What to block > full screen intents
5585 // SUBTYPE: false is allowed, true is blocked
5586 // CATEGORY: SETTINGS
5587 // OS: 6.0
5588 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5589
5590 // ACTION: DND Settings > What to block
5591 // SUBTYPE: false is allowed, true is blocked
5592 // OS: P
5593 ACTION_ZEN_BLOCK_LIGHT = 1333;
5594
5595 // ACTION: DND Settings > What to block
5596 // SUBTYPE: false is allowed, true is blocked
5597 // OS: P
5598 ACTION_ZEN_BLOCK_PEEK = 1334;
5599
5600 // ACTION: DND Settings > What to block
5601 // SUBTYPE: false is allowed, true is blocked
5602 // OS: P
5603 ACTION_ZEN_BLOCK_STATUS = 1335;
5604
5605 // ACTION: DND Settings > What to block
5606 // SUBTYPE: false is allowed, true is blocked
5607 // OS: P
5608 ACTION_ZEN_BLOCK_BADGE = 1336;
5609
5610 // ACTION: DND Settings > What to block
5611 // SUBTYPE: false is allowed, true is blocked
5612 // OS: P
5613 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5614
5615 // ACTION: DND Settings > What to block
5616 // SUBTYPE: false is allowed, true is blocked
5617 // OS: P
5618 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5619
5620 // OPEN: DND Settings > What to block
5621 // OS: P
5622 ZEN_WHAT_TO_BLOCK = 1339;
5623
Beverly8fe33ba2018-03-05 14:32:35 -05005624 // ACTION: DND Settings > Priority only allows > System toggle
5625 // SUBTYPE: 0 is off, 1 is on
5626 // CATEGORY: SETTINGS
5627 // OS: P
5628 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5629
5630 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5631 // CATEGORY: SETTINGS
5632 // OS: P
5633 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5634
5635 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5636 // CATEGORY: SETTINGS
5637 // OS: P
5638 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5639
5640 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5641 // CATEGORY: SETTINGS
5642 // OS: P
5643 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5644
5645 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5646 // CATEGORY: SETTINGS
5647 // OS: P
5648 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5649
Julia Reynolds8dff1862018-03-06 14:20:40 -05005650 // Notification Guts, active app ops variant
5651 // OS: P
5652 APP_OPS_GUTS = 1345;
5653
5654 // ACTION: Notification Guts, active app ops variant > Settings button
5655 // OS: P
5656 ACTION_OPS_GUTS_SETTINGS = 1346;
5657
Lei Yu5674d2d2018-03-08 10:19:43 -08005658 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5659 // OS: P
5660 ACTION_APP_RESTRICTION_TIP = 1347;
5661
5662 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5663 // OS: P
5664 ACTION_HIGH_USAGE_TIP = 1348;
5665
Lei Yue93e5602018-03-08 12:15:38 -08005666 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5667 // OS: P
5668 ACTION_SUMMARY_TIP = 1349;
5669
5670 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5671 // OS: P
5672 ACTION_SMART_BATTERY_TIP = 1350;
5673
5674 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5675 // OS: P
5676 ACTION_EARLY_WARNING_TIP = 1351;
5677
5678 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5679 // OS: P
5680 ACTION_LOW_BATTERY_TIP = 1352;
5681
5682 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5683 // OS: P
5684 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5685
5686 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5687 // OS: P
5688 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5689
Victor Chang76817b82018-03-09 17:22:52 +00005690 // OPEN: Settings > Date & time > Select time zone -> Region
5691 // CATEGORY: SETTINGS
5692 // OS: P
5693 SETTINGS_ZONE_PICKER_REGION = 1355;
5694
5695 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5696 // CATEGORY: SETTINGS
5697 // OS: P
5698 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5699
5700 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5701 // CATEGORY: SETTINGS
5702 // OS: P
5703 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5704
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005705 // Action: notification shade > manage notifications
5706 // OS: P
5707 ACTION_MANAGE_NOTIFICATIONS = 1358;
5708
Chris Wrenaa571c62018-03-14 12:16:04 -04005709 // This value should never appear in log outputs - it is reserved for
5710 // internal platform metrics use.
5711 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5712
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005713 // OPEN: Settings > Gestures > Prevent Ringing
5714 // OS: P
5715 SETTINGS_PREVENT_RINGING = 1360;
5716
Lei Yue92285a2018-03-12 11:28:40 -07005717 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5718 // CATEGORY: SETTINGS
5719 // OS: P
5720 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5721
5722 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5723 // CATEGORY: SETTINGS
5724 // OS: P
5725 ACTION_TIP_RESTRICT_APP = 1362;
5726
5727 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5728 // CATEGORY: SETTINGS
5729 // OS: P
5730 ACTION_TIP_UNRESTRICT_APP = 1363;
5731
5732 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5733 // CATEGORY: SETTINGS
5734 // OS: P
5735 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5736
5737 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5738 // CATEGORY: SETTINGS
5739 // OS: P
5740 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5741
5742 // FIELD: type of anomaly in settings app
5743 // CATEGORY: SETTINGS
5744 // OS: P
5745 FIELD_ANOMALY_TYPE = 1366;
5746
Lei Yu4f704772018-03-20 10:51:58 -07005747 // ACTION: Settings > Anomaly receiver > Anomaly received
5748 // CATEGORY: SETTINGS
5749 // OS: P
5750 ACTION_ANOMALY_TRIGGERED = 1367;
5751
Fan Zhanga85b4872018-03-26 16:52:53 -07005752 // ACTION: Settings > Condition > Device muted
5753 // CATEGORY: SETTINGS
5754 // OS: P
5755 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5756
5757 // ACTION: Settings > Condition > Device vibrate
5758 // CATEGORY: SETTINGS
5759 // OS: P
5760 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5761
hughchen226196b2018-03-27 12:04:59 +08005762 // OPEN: Settings > Connected devices > previously connected devices
5763 // CATEGORY: SETTINGS
5764 // OS: P
5765 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005766
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005767 // ACTION: A Settings Slice is requested
5768 // CATEGORY: SETTINGS
5769 // OS: P
5770 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5771
5772 // ACTION: A Settings Slice is updated with new value
5773 // CATEGORY: SETTINGS
5774 // OS: P
5775 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5776
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005777 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5778 // note: Wifi Scanning must be off for this dialog to show
5779 // CATEGORY: SETTINGS
5780 // OS: P
5781 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5782
Mehdi Alizadeh873f1722019-06-20 18:08:56 -07005783 // OPEN: Settings > System > Gestures > System navigation
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005784 // CATEGORY: SETTINGS
5785 // OS: P
5786 SETTINGS_GESTURE_SWIPE_UP = 1374;
5787
Jeff Sharkey46270712018-04-02 09:53:21 -06005788 // OPEN: Settings > Storage > Dialog to format a storage volume
5789 // CATEGORY: SETTINGS
5790 // OS: P
5791 DIALOG_VOLUME_FORMAT = 1375;
5792
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005793 // OPEN: DND onboarding activity > screen on checkbox
5794 // CATEGORY: SETTINGS
5795 // OS: P
5796 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5797
5798 // OPEN: DND onboarding activity > screen off checkbox
5799 // CATEGORY: SETTINGS
5800 // OS: P
5801 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5802
5803 // OPEN: DND onboarding activity > Ok button
5804 // CATEGORY: SETTINGS
5805 // OS: P
5806 ACTION_ZEN_ONBOARDING_OK = 1378;
5807
5808 // OPEN: DND onboarding activity > Settings link
5809 // CATEGORY: SETTINGS
5810 // OS: P
5811 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5812
5813 // OPEN: DND onboarding activity
5814 // CATEGORY: SETTINGS
5815 // OS: P
5816 SETTINGS_ZEN_ONBOARDING = 1380;
5817
Fan Zhanga496b122018-04-10 12:57:56 -07005818 // OPEN: Settings > Display > Auto brightness
5819 // CATEGORY: SETTINGS
5820 // OS: P
5821 SETTINGS_AUTO_BRIGHTNESS = 1381;
5822
Kenny Guy23991102018-04-05 21:18:38 +01005823 // OPEN: Smart replies in a notification seen at least once
5824 // CATEGORY: NOTIFICATION
5825 // PACKAGE: App that posted the notification
5826 // SUBTYPE: Number of smart replies.
5827 // OS: P
5828 SMART_REPLY_VISIBLE = 1382;
5829
5830 // ACTION: Smart reply in a notification clicked.
5831 // CATEGORY: NOTIFICATION
5832 // PACKAGE: App that posted the notification
5833 // SUBTYPE: Index of smart reply clicked.
5834 // OS: P
5835 SMART_REPLY_ACTION = 1383;
5836
5837 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5838 // OS: P
5839 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5840
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005841 // Volume dialog > ringer toggle
5842 // OS: P
5843 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5844
5845 // Volume dialog > settings button
5846 // OS: P
5847 ACTION_VOLUME_SETTINGS = 1386;
5848
Lei Yufc59a572018-04-10 10:52:08 -07005849 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5850 // CATEGORY: SETTINGS
5851 // OS: P
5852 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005853
Lei Yu97a13212018-04-11 15:45:31 -07005854 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5855 // CATEGORY: SETTINGS
5856 // OS: P
5857 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5858
5859 // FIELD: the version code of an app
5860 // CATEGORY: SETTINGS
5861 // OS: P
5862 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005863
Salvador Martinez8e899682018-04-04 14:42:59 -07005864 // OPEN: Settings > Connected Devices > Bluetooth
5865 // CATEGORY: SETTINGS
5866 // OS: P
5867 BLUETOOTH_FRAGMENT = 1390;
5868
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005869 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5870 // an app uses a hidden API.
5871 ACTION_HIDDEN_API_ACCESSED = 1391;
5872
5873 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5874 // access; see enum HiddenApiAccessMethod
5875 // OS: P
5876 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5877
5878 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5879 // denied to the API.
5880 // OS: P
5881 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5882
5883 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5884 // API that was accessed.
5885 // OS: P
5886 FIELD_HIDDEN_API_SIGNATURE = 1394;
5887
Chris Wren8f7a1442018-05-14 17:16:31 -04005888 // The number of items in the shade when this notification event was logged.
5889 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005890 NOTIFICATION_SHADE_COUNT = 1395;
5891
Julia Reynolds5da746a2018-04-23 09:41:21 -04005892 // ACTION: DND Settings > What to block
5893 // OS: P
5894 ACTION_ZEN_SOUND_ONLY = 1396;
5895
5896 // ACTION: DND Settings > Notifications
5897 // OS: P
5898 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5899
5900 // ACTION: DND Settings > Notifications
5901 // OS: P
5902 ACTION_ZEN_SHOW_CUSTOM = 1398;
5903
5904 // ACTION: DND Settings > Notifications
5905 // OS: P
5906 ACTION_ZEN_CUSTOM = 1399;
5907
5908 // Screen: DND Settings > Notifications
5909 // OS: P
5910 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5911
Chris Wrend63dffd2018-04-19 11:12:46 -04005912 // An event category for slices.
5913 // OPEN: Slice became visible.
5914 // CLOSE: Slice became invisible.
5915 // ACTION: Slice was tapped.
5916 SLICE = 1401;
5917
5918 // The authority part of the slice URI
5919 FIELD_SLICE_AUTHORITY = 1402;
5920
5921 // The path part of the slice URI
5922 FIELD_SLICE_PATH = 1403;
5923
5924 // The authority part of the subslice URI
5925 FIELD_SUBSLICE_AUTHORITY = 1404;
5926
5927 // The path part of the subslice URI
5928 FIELD_SUBSLICE_PATH = 1405;
5929
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005930 // OPEN: DND onboarding activity > don't update button
5931 // CATEGORY: SETTINGS
5932 // OS: P
5933 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5934
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005935 // ACTION: Storage initialization wizard initialization choice of external/portable
5936 // CATEGORY: SETTINGS
5937 // OS: P
5938 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5939
5940 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5941 // CATEGORY: SETTINGS
5942 // OS: P
5943 ACTION_STORAGE_INIT_INTERNAL = 1408;
5944
5945 // ACTION: Storage initialization wizard benchmark fast choice of continue
5946 // CATEGORY: SETTINGS
5947 // OS: P
5948 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5949
5950 // ACTION: Storage initialization wizard benchmark slow choice of continue
5951 // CATEGORY: SETTINGS
5952 // OS: P
5953 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5954
5955 // ACTION: Storage initialization wizard benchmark slow choice of abort
5956 // CATEGORY: SETTINGS
5957 // OS: P
5958 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5959
5960 // ACTION: Storage initialization wizard migration choice of now
5961 // CATEGORY: SETTINGS
5962 // OS: P
5963 ACTION_STORAGE_MIGRATE_NOW = 1412;
5964
5965 // ACTION: Storage initialization wizard migration choice of later
5966 // CATEGORY: SETTINGS
5967 // OS: P
5968 ACTION_STORAGE_MIGRATE_LATER = 1413;
5969
Felipe Leme11166522018-05-07 10:18:47 -07005970 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005971 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005972 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5973
hughchen2bde4092018-05-10 18:04:25 +08005974 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005975 // CATEGORY: SETTINGS
5976 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005977 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5978
5979 // OPEN: Settings > Sound > Switch hfp devices dialog
5980 // CATEGORY: SETTINGS
5981 // OS: P
5982 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005983
Beverlyc4eb9342018-05-10 15:46:03 -04005984 // ACTION: User has started or ended charging
5985 // Type TYPE_DISMISS: Charging has ended
5986 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5987 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5988 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5989 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5990 // Tag FIELD_PLUG_TYPE: Charging plug type
5991 ACTION_CHARGE = 1417;
5992
5993 // Tag used to determine battery level when device started charging
5994 FIELD_BATTERY_LEVEL_START = 1418;
5995
5996 // Tag used to determine battery level when device ended charging
5997 FIELD_BATTERY_LEVEL_END = 1419;
5998
5999 // Tag used to determine length of charging
6000 FIELD_CHARGING_DURATION_MILLIS = 1420;
6001
6002 // Tag used to determine what type of charging was started/ended
6003 // 1 = Plugged AC
6004 // 2 = Plugged USB
Beverlyc47ba512018-09-24 14:02:23 -05006005 // 4 = Wireless
Beverlyc4eb9342018-05-10 15:46:03 -04006006 FIELD_PLUG_TYPE = 1421;
6007
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006008 // ACTION: USB-C Connector connected.
6009 // CATEGORY: OTHER
6010 // OS: P
6011 ACTION_USB_CONNECTOR_CONNECTED = 1422;
6012
6013 // ACTION: USB-C Connector disconnected.
6014 // CATEGORY: OTHER
6015 // OS: P
6016 // uses FIELD_DURATION_MILLIS for connected duration
6017 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
6018
6019 // ACTION: USB-C Audio device connected
6020 // CATEGORY: OTHER
6021 // OS: P
6022 ACTION_USB_AUDIO_CONNECTED = 1424;
6023
6024 // FIELD: VIDPID of connected USB Audio device
6025 // CATEGORY: OTHER
6026 // OS: P
6027 FIELD_USB_AUDIO_VIDPID = 1425;
6028
6029 // ACTION: USB-C Audio device disconnected
6030 // CATEGORY: OTHER
6031 // OS: P
6032 // use FIELD_DURATION_MILLIS for time
6033 ACTION_USB_AUDIO_DISCONNECTED = 1426;
6034
6035 // ACTION: Hardware failure event
6036 // CATEGORY: OTHER
6037 // OS: P
6038 ACTION_HARDWARE_FAILED = 1427;
6039
6040 // FIELD: Hardware failure category
6041 // CATEGORY: OTHER
6042 // OS: P
6043 // Uses enum HardwareType
6044 FIELD_HARDWARE_TYPE = 1428;
6045
6046 // FIELD: Hardware failure category
6047 // CATEGORY: OTHER
6048 // OS: P
6049 // Uses enum HardwareFailureCode
6050 FIELD_HARDWARE_FAILURE_CODE = 1429;
6051
6052 // ACTION: Physical drop event
6053 // CATEGORY: OTHER
6054 // OS: P
6055 // use FIELD_DURATION_MILLIS for time
6056 ACTION_PHYSICAL_DROP = 1430;
6057
6058 // FIELD: Confidence in detection of drop, in integer percentage.
6059 // CATEGORY: OTHER
6060 // OS: P
6061 FIELD_CONFIDENCE_PERCENT = 1431;
6062
6063 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
6064 // CATEGORY: OTHER
6065 // OS: P
6066 FIELD_ACCEL_MILLI_G = 1432;
6067
6068 // ACTION: Battery health snapshot
6069 // CATEGORY: OTHER
6070 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006071 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006072 ACTION_BATTERY_HEALTH = 1433;
6073
6074 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
6075 // CATEGORY: OTHER
6076 // OS: P
6077 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
6078
Andrew Chantc03bc632018-05-18 10:52:00 -07006079 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006080 // CATEGORY: OTHER
6081 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006082 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006083
Andrew Chantc03bc632018-05-18 10:52:00 -07006084 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006085 // CATEGORY: OTHER
6086 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006087 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006088
Andrew Chantc03bc632018-05-18 10:52:00 -07006089 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006090 // CATEGORY: OTHER
6091 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006092 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006093
Andrew Chantc03bc632018-05-18 10:52:00 -07006094 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006095 // fractional threshold of full capacity.
6096 // CATEGORY: OTHER
6097 // OS: P
6098 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6099
Andrew Chantc03bc632018-05-18 10:52:00 -07006100 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6101 // beyond a fractional threshold of full
6102 // capacity. A comma-separated string of
6103 // buckets. If there are eight buckets,
6104 // each bucket represents charging to n/8
6105 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006106 // CATEGORY: OTHER
6107 // OS: P
6108 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6109
Beverly019d6f62018-05-15 16:16:54 -04006110 // ACTION: Hush gesture - volume up + power button
6111 // CATEGORY: GLOBAL_SYSTEM_UI
6112 // OS: P
6113 ACTION_HUSH_GESTURE = 1440;
6114
Petri Gynther778facb2018-05-18 22:59:50 -07006115 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6116 // offload
6117 // CATEGORY: SETTINGS
6118 // OS: P
6119 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6120
Andrew Chantc03bc632018-05-18 10:52:00 -07006121 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6122 // reported aggregated per day when > 0.
6123 // CATEGORY: OTHER
6124 // OS: P
6125 ACTION_SLOW_IO = 1442;
6126
6127 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6128 // The value is an integer from the enum IoOperation.
6129 // CATEGORY: OTHER
6130 // OS: P
6131 FIELD_IO_OPERATION_TYPE = 1443;
6132
6133 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6134 // over the past 24hr (reported only if > 0).
6135 // CATEGORY: OTHER
6136 // OS: P
6137 FIELD_IO_OPERATION_COUNT = 1444;
6138
6139 // ACTION: Speaker Imedance - last recorded speaker impedance.
6140 // reported max once per 24hr.
6141 // CATEGORY: OTHER
6142 // OS: P
6143 ACTION_SPEAKER_IMPEDANCE = 1445;
6144
6145 // FIELD: Speaker Impedance in milliohms.
6146 // CATEGORY: OTHER
6147 // OS: P
6148 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6149
6150 // FIELD: Speaker Location - identifies one of several speakers on a device.
6151 // CATEGORY: OTHER
6152 // OS: P
6153 FIELD_SPEAKER_LOCATION = 1447;
6154
6155 // FIELD: Instantaneous battery resistance in microohms.
6156 // CATEGORY: OTHER
6157 // OS: P
6158 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6159
6160 // FIELD: Instantaneous battery current - in microamps.
6161 // CATEGORY: OTHER
6162 // OS: P
6163 FIELD_BATTERY_CURRENT_UA = 1449;
6164
6165 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6166 // board.
6167 // CATEGORY: OTHER
6168 // OS: P
6169 FIELD_HARDWARE_LOCATION = 1450;
6170
6171 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6172 // action is logged after the subsequent boot.
6173 // CATEGORY: OTHER
6174 // OS: P
6175 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6176
Felipe Leme21fb1a32018-05-21 11:18:46 -07006177 // FIELD: Flags used on autofill-related metrics
6178 // OS: P
6179 FIELD_AUTOFILL_FLAGS = 1452;
6180
6181 // Tag used when the service returned an authenticated dataset or response.
6182 // Used to replace the following individual metrics, which now are logged as the value of this
6183 // field in the AUTOFILL_REQUEST metric:
6184 // - AUTOFILL_AUTHENTICATED;
6185 // - AUTOFILL_DATASET_AUTHENTICATED
6186 // - AUTOFILL_INVALID_AUTHENTICATION
6187 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6188 // OS: P
6189 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6190
6191 // FIELD: Index of the autofill request inside of a session.
6192 // OS: P
6193 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6194
6195 // FIELD: Number of requests made to an autofill service during a session.
6196 // OS: P
6197 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6198
Felipe Leme833c99b2018-05-24 10:41:48 -07006199 // FIELD: Id of the autofill session associated with this metric.
6200 // OS: P
6201 FIELD_AUTOFILL_SESSION_ID = 1456;
6202
Sherry Huangce02ed32019-01-17 20:37:29 +08006203 // FIELD: Device USB overheat alarm trigger.
6204 // CATEGORY: GLOBAL_SYSTEM_UI
6205 // OS: P
6206 POWER_OVERHEAT_ALARM = 1457;
6207
Chris Wren77781d32016-01-11 14:49:26 -05006208 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006209
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006210 // Time since this notification last interrupted (visibly or audible) the user
6211 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6212
6213 // OPEN: Notification interrupted the user, either audibly or visually.
6214 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6215 // CATEGORY: NOTIFICATION
6216 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006217
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006218 // OPEN: Settings
6219 // CATEGORY: SETTINGS
6220 // OS: Q
6221 SETTINGS_HOMEPAGE = 1502;
6222
Fan Zhang0b6bc412018-06-21 17:19:02 -07006223 // OPEN: Settings > Create shortcut(widget)
6224 // CATEGORY: SETTINGS
6225 // OS: Q
6226 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006227
6228 // ACTION: Authenticate using fingerprint
6229 // CATEGORY: SETTINGS
6230 // OS: Q
6231 ACTION_FACE_AUTH = 1504;
6232
6233 // ACTION: Add fingerprint > Enroll fingerprint
6234 // CATEGORY: SETTINGS
6235 // OS: Q
6236 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006237
6238 // OPEN: Face Enroll introduction
6239 // CATEGORY: SETTINGS
6240 // OS: Q
6241 FACE_ENROLL_INTRO = 1506;
6242
6243 // OPEN: Face Enroll introduction
6244 // CATEGORY: SETTINGS
6245 // OS: Q
6246 FACE_ENROLL_ENROLLING = 1507;
6247
6248 // OPEN: Face Enroll introduction
6249 // CATEGORY: SETTINGS
6250 // OS: Q
6251 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006252
6253 // OPEN: Face Enroll sidecar
6254 // CATEGORY: SETTINGS
6255 // OS: Q
6256 FACE_ENROLL_SIDECAR = 1509;
6257
6258 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006259 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006260 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006261
6262 // OPEN: Settings > Security > Face
6263 // CATEGORY: SETTINGS
6264 // OS: Q
6265 FACE = 1511;
6266
timhypeng8c6885d2018-07-30 16:44:36 +08006267 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6268 // CATEGORY: SETTINGS
6269 // OS: Q
6270 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6271
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006272 // ACTION: Activity start
6273 // CATEGORY: OTHER
6274 // OS: Q (will also ship in PQ1A)
6275 ACTION_ACTIVITY_START = 1513;
6276
6277 // Tagged data for ACTION_ACTIVITY_START.
6278 // FIELD: Calling UID
6279 // CATEGORY: OTHER
6280 // OS: Q (will also ship in PQ1A)
6281 FIELD_CALLING_UID = 1514;
6282
6283 // Tagged data for ACTION_ACTIVITY_START.
6284 // FIELD: Calling package name
6285 // CATEGORY: OTHER
6286 // OS: Q (will also ship in PQ1A)
6287 FIELD_CALLING_PACKAGE_NAME = 1515;
6288
6289 // Tagged data for ACTION_ACTIVITY_START.
6290 // FIELD: Calling UID proc state
6291 // CATEGORY: OTHER
6292 // OS: Q (will also ship in PQ1A)
6293 FIELD_CALLING_UID_PROC_STATE = 1516;
6294
6295 // Tagged data for ACTION_ACTIVITY_START.
6296 // FIELD: Calling UID has any visible window
6297 // CATEGORY: OTHER
6298 // OS: Q (will also ship in PQ1A)
6299 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6300
6301 // Tagged data for ACTION_ACTIVITY_START.
6302 // FIELD: Real calling UID
6303 // CATEGORY: OTHER
6304 // OS: Q (will also ship in PQ1A)
6305 FIELD_REAL_CALLING_UID = 1518;
6306
6307 // Tagged data for ACTION_ACTIVITY_START.
6308 // FIELD: Real calling UID proc state
6309 // CATEGORY: OTHER
6310 // OS: Q (will also ship in PQ1A)
6311 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6312
6313 // Tagged data for ACTION_ACTIVITY_START.
6314 // FIELD: Real calling UID has any visible window
6315 // CATEGORY: OTHER
6316 // OS: Q (will also ship in PQ1A)
6317 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6318
6319 // Tagged data for ACTION_ACTIVITY_START.
6320 // FIELD: Target UID
6321 // CATEGORY: OTHER
6322 // OS: Q (will also ship in PQ1A)
6323 FIELD_TARGET_UID = 1521;
6324
6325 // Tagged data for ACTION_ACTIVITY_START.
6326 // FIELD: Target UID package name
6327 // CATEGORY: OTHER
6328 // OS: Q (will also ship in PQ1A)
6329 FIELD_TARGET_PACKAGE_NAME = 1522;
6330
6331 // Tagged data for ACTION_ACTIVITY_START.
6332 // FIELD: Target UID proc state
6333 // CATEGORY: OTHER
6334 // OS: Q (will also ship in PQ1A)
6335 FIELD_TARGET_UID_PROC_STATE = 1523;
6336
6337 // Tagged data for ACTION_ACTIVITY_START.
6338 // FIELD: Target UID has any visible window
6339 // CATEGORY: OTHER
6340 // OS: Q (will also ship in PQ1A)
6341 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6342
6343 // Tagged data for ACTION_ACTIVITY_START.
6344 // FIELD: Target doze whitelist tag
6345 // CATEGORY: OTHER
6346 // OS: Q (will also ship in PQ1A)
6347 FIELD_TARGET_WHITELIST_TAG = 1525;
6348
6349 // Tagged data for ACTION_ACTIVITY_START.
6350 // FIELD: Target short component name
6351 // CATEGORY: OTHER
6352 // OS: Q (will also ship in PQ1A)
6353 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6354
6355 // Tagged data for ACTION_ACTIVITY_START.
6356 // FIELD: Coming from pending intent
6357 // CATEGORY: OTHER
6358 // OS: Q (will also ship in PQ1A)
6359 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6360
6361 // Tagged data for ACTION_ACTIVITY_START.
6362 // FIELD: Intent action
6363 // CATEGORY: OTHER
6364 // OS: Q (will also ship in PQ1A)
6365 FIELD_INTENT_ACTION = 1528;
6366
6367 // Tagged data for ACTION_ACTIVITY_START.
6368 // FIELD: Caller app process record process name
6369 // CATEGORY: OTHER
6370 // OS: Q (will also ship in PQ1A)
6371 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6372
6373 // Tagged data for ACTION_ACTIVITY_START.
6374 // FIELD: Caller app process record current proc state
6375 // CATEGORY: OTHER
6376 // OS: Q (will also ship in PQ1A)
6377 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6378
6379 // Tagged data for ACTION_ACTIVITY_START.
6380 // FIELD: Caller app process record has client activities
6381 // CATEGORY: OTHER
6382 // OS: Q (will also ship in PQ1A)
6383 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6384
6385 // Tagged data for ACTION_ACTIVITY_START.
6386 // FIELD: Caller app process record has foreground services
6387 // CATEGORY: OTHER
6388 // OS: Q (will also ship in PQ1A)
6389 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6390
6391 // Tagged data for ACTION_ACTIVITY_START.
6392 // FIELD: Caller app process record has foreground activities
6393 // CATEGORY: OTHER
6394 // OS: Q (will also ship in PQ1A)
6395 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6396
6397 // Tagged data for ACTION_ACTIVITY_START.
6398 // FIELD: Caller app process record has top UI
6399 // CATEGORY: OTHER
6400 // OS: Q (will also ship in PQ1A)
6401 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6402
6403 // Tagged data for ACTION_ACTIVITY_START.
6404 // FIELD: Caller app process record has overlay UI
6405 // CATEGORY: OTHER
6406 // OS: Q (will also ship in PQ1A)
6407 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6408
6409 // Tagged data for ACTION_ACTIVITY_START.
6410 // FIELD: Caller app process record pending UI clean
6411 // CATEGORY: OTHER
6412 // OS: Q (will also ship in PQ1A)
6413 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6414
6415 // Tagged data for ACTION_ACTIVITY_START.
6416 // FIELD: Millis since caller app's process record last interaction event
6417 // CATEGORY: OTHER
6418 // OS: Q (will also ship in PQ1A)
6419 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6420
6421 // Tagged data for ACTION_ACTIVITY_START.
6422 // FIELD: Millis since caller app's process record fg interaction
6423 // CATEGORY: OTHER
6424 // OS: Q (will also ship in PQ1A)
6425 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6426
6427 // Tagged data for ACTION_ACTIVITY_START.
6428 // FIELD: Millis since caller app's process record last became unimportant
6429 // CATEGORY: OTHER
6430 // OS: Q (will also ship in PQ1A)
6431 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6432
6433 // Tagged data for ACTION_ACTIVITY_START.
6434 // FIELD: Activity record launch mode
6435 // CATEGORY: OTHER
6436 // OS: Q (will also ship in PQ1A)
6437 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6438
6439 // Tagged data for ACTION_ACTIVITY_START.
6440 // FIELD: Activity record target activity
6441 // CATEGORY: OTHER
6442 // OS: Q (will also ship in PQ1A)
6443 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6444
6445 // Tagged data for ACTION_ACTIVITY_START.
6446 // FIELD: Activity record flags
6447 // CATEGORY: OTHER
6448 // OS: Q (will also ship in PQ1A)
6449 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6450
6451 // Tagged data for ACTION_ACTIVITY_START.
6452 // FIELD: Activity record real activity
6453 // CATEGORY: OTHER
6454 // OS: Q (will also ship in PQ1A)
6455 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6456
6457 // Tagged data for ACTION_ACTIVITY_START.
6458 // FIELD: Activity record short component name
6459 // CATEGORY: OTHER
6460 // OS: Q (will also ship in PQ1A)
6461 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6462
6463 // Tagged data for ACTION_ACTIVITY_START.
6464 // FIELD: Activity record process name
6465 // CATEGORY: OTHER
6466 // OS: Q (will also ship in PQ1A)
6467 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6468
6469 // Tagged data for ACTION_ACTIVITY_START.
6470 // FIELD: Activity record is fullscreen
6471 // CATEGORY: OTHER
6472 // OS: Q (will also ship in PQ1A)
6473 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6474
6475 // Tagged data for ACTION_ACTIVITY_START.
6476 // FIELD: Activity record is no display
6477 // CATEGORY: OTHER
6478 // OS: Q (will also ship in PQ1A)
6479 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6480
6481 // Tagged data for ACTION_ACTIVITY_START.
6482 // FIELD: Millis since activity was last visible
6483 // CATEGORY: OTHER
6484 // OS: Q (will also ship in PQ1A)
6485 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6486
6487 // Tagged data for ACTION_ACTIVITY_START.
6488 // FIELD: Activity record's resultTo packageName
6489 // CATEGORY: OTHER
6490 // OS: Q (will also ship in PQ1A)
6491 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6492
6493 // Tagged data for ACTION_ACTIVITY_START.
6494 // FIELD: Activity record's resultTo shortComponentName
6495 // CATEGORY: OTHER
6496 // OS: Q (will also ship in PQ1A)
6497 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6498
6499 // Tagged data for ACTION_ACTIVITY_START.
6500 // FIELD: Activity record is visible
6501 // CATEGORY: OTHER
6502 // OS: Q (will also ship in PQ1A)
6503 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6504
6505 // Tagged data for ACTION_ACTIVITY_START.
6506 // FIELD: Activity record is visible ignoring keyguard
6507 // CATEGORY: OTHER
6508 // OS: Q (will also ship in PQ1A)
6509 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6510
6511 // Tagged data for ACTION_ACTIVITY_START.
6512 // FIELD: Millis since activity's last launch
6513 // CATEGORY: OTHER
6514 // OS: Q (will also ship in PQ1A)
6515 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006516
Kevin Chyn2c94a292018-08-09 15:00:06 -07006517 // OPEN: Settings > Add face
6518 // OS: Q
6519 FACE_ENROLL_PREVIEW = 1554;
6520
Felipe Lemec9f32592018-08-02 14:57:11 -07006521 // Field used to indicate whether a save request was used to update existing user data.
6522 FIELD_AUTOFILL_UPDATE = 1555;
6523
tmfangf391da12018-08-15 17:01:40 +08006524 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6525 // CATEGORY: SETTINGS
6526 // OS: Q
6527 SETTINGS_WIFI_ADD_NETWORK = 1556;
6528
Lucas Dupinc81702e2018-08-09 15:41:55 -07006529 // OPEN: Settings > System > Input & Gesture > Reach up gesture
6530 // OS: Q
Lucas Dupin13b0cb92018-09-28 09:27:46 -07006531 SETTINGS_GESTURE_WAKE_LOCK_SCREEN = 1557;
Lucas Dupinc81702e2018-08-09 15:41:55 -07006532
Leo Hsud8faaf92019-05-03 21:28:07 +08006533 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006534 // OPEN: Emergency dialer opened
6535 // CLOSE: Emergency dialer closed
6536 // SUBTYPE: The entry type that user opened emergency dialer
6537 // CATEGORY: EMERGENCY_DIALER
6538 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006539 EMERGENCY_DIALER = 1558 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006540
Leo Hsud8faaf92019-05-03 21:28:07 +08006541 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006542 // FIELD: The screen is currently locked
6543 // CATEGORY: EMERGENCY_DIALER
6544 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006545 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006546
Leo Hsud8faaf92019-05-03 21:28:07 +08006547 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006548 // FIELD: Bit flag indicating the actions performed by user
6549 // CATEGORY: EMERGENCY_DIALER
6550 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006551 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006552
Leo Hsud8faaf92019-05-03 21:28:07 +08006553 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006554 // FIELD: The duration user stayed at emergency dialer
6555 // CATEGORY: EMERGENCY_DIALER
6556 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006557 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006558
Leo Hsud8faaf92019-05-03 21:28:07 +08006559 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006560 // ACTION: Making call via emergency dialer
6561 // SUBTYPE: The UI that user made phone call
6562 // CATEGORY: EMERGENCY_DIALER
6563 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006564 EMERGENCY_DIALER_MAKE_CALL = 1562 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006565
6566 // FIELD: The phone number type of a call user made
Leo Hsud8faaf92019-05-03 21:28:07 +08006567 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
Shaotang Li4187f7a62018-07-04 14:03:25 +08006568 // OS: Q
6569 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6570
Leo Hsud8faaf92019-05-03 21:28:07 +08006571 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006572 // FIELD: There is a shortcut for the phone number
6573 // CATEGORY: EMERGENCY_DIALER
6574 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006575 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006576
Leo Hsud8faaf92019-05-03 21:28:07 +08006577 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006578 // FIELD: The phone is in pocket while using emergency dialer
6579 // CATEGORY: EMERGENCY_DIALER
6580 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006581 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006582
Leo Hsud8faaf92019-05-03 21:28:07 +08006583 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006584 // ACTION: The second tap on emergency shortcut to make a phone call
6585 // CATEGORY: EMERGENCY_DIALER
6586 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006587 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006588
Leo Hsud8faaf92019-05-03 21:28:07 +08006589 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li4187f7a62018-07-04 14:03:25 +08006590 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6591 // CATEGORY: EMERGENCY_DIALER
6592 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006593 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567 [deprecated=true];
Shaotang Li4187f7a62018-07-04 14:03:25 +08006594
Shaotang Li786da902018-08-02 11:18:00 +08006595 // OPEN: Power menu is opened
6596 // CATEGORY: GLOBAL_SYSTEM_UI
6597 // OS: Q
6598 POWER_MENU = 1568;
6599
Leo Hsud8faaf92019-05-03 21:28:07 +08006600 // DEPRECATED: The metrics for emergency dialer has been revised.
Shaotang Li786da902018-08-02 11:18:00 +08006601 // ACTION: User tapped emergency dialer icon in the power menu.
6602 // CATEGORY: GLOBAL_SYSTEM_UI
6603 // OS: Q
Leo Hsud8faaf92019-05-03 21:28:07 +08006604 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569 [deprecated=true];
Shaotang Li786da902018-08-02 11:18:00 +08006605
Lucas Dupin323f9ff2018-08-27 16:55:56 -07006606 // OPEN: Settings > System > Input & Gesture > Wake screen
6607 // OS: Q
6608 SETTINGS_GESTURE_WAKE_SCREEN = 1570;
6609
jackqdyulei2cc9b4b2018-09-07 13:12:43 -07006610 // OPEN: Settings > Network & internet > Mobile network
6611 // CATEGORY: SETTINGS
6612 // OS: Q
6613 MOBILE_NETWORK = 1571;
6614
Felipe Lemed9dc9542018-09-19 11:54:28 -07006615 // Tag of a field for the length of a text
6616 FIELD_AUTOFILL_TEXT_LEN = 1572;
6617
Julia Reynolds23a46352018-09-25 15:31:47 -04006618 // Action: the notification assistant is changing a notification
6619 // OS: Q
6620 NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
6621
6622 // Subtype: The people attached to a notification was changed
6623 ADJUSTMENT_KEY_PEOPLE = 1574;
6624
6625 // Subtype: The snooze options attached to a notification was changed
6626 ADJUSTMENT_KEY_SNOOZE_CRITERIA = 1575;
6627
6628 // Subtype: The group of a notification was changed
6629 ADJUSTMENT_KEY_GROUP_KEY = 1576;
6630
6631 // Subtype: The user sentiment of a notification was changed
6632 ADJUSTMENT_KEY_USER_SENTIMENT = 1577;
6633
6634 // Subtype: New actions have been added to a notification
6635 ADJUSTMENT_KEY_SMART_ACTIONS = 1578;
6636
6637 // Subtype: New smart replies have been added to a notification
6638 ADJUSTMENT_KEY_SMART_REPLIES = 1579;
6639
6640 // Subtype: The importance of a notification has been changed
6641 ADJUSTMENT_KEY_IMPORTANCE = 1580;
6642
jackqdyuleidb71d282018-10-10 10:37:19 -07006643 // OPEN: Settings > Network & internet > Mobile network > Choose network
6644 // CATEGORY: SETTINGS
6645 // OS: Q
6646 MOBILE_NETWORK_SELECT = 1581;
6647
6648 // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog
6649 // CATEGORY: SETTINGS
6650 // OS: Q
6651 MOBILE_DATA_DIALOG = 1582;
6652
6653 // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog
6654 // CATEGORY: SETTINGS
6655 // OS: Q
6656 MOBILE_ROAMING_DIALOG = 1583;
6657
Fan Zhang916c13b2018-10-16 22:49:45 -07006658 // OPEN: Settings > Display > Lock screen display > On lock screen
6659 // CATEGORY: SETTINGS
6660 // OS: Q
6661 LOCK_SCREEN_NOTIFICATION_CONTENT = 1584;
6662
Kevin Chynf589b6c2018-10-26 08:10:37 -07006663 // ConfirmDeviceCredentials > BiometricPrompt
6664 // CATEGORY: SETTINGS
6665 // OS: Q
6666 BIOMETRIC_FRAGMENT = 1585;
6667
Kevin Chynb879f512018-10-31 17:56:26 -07006668 // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent)
6669 // CATEGORY: SETTINGS
6670 // OS: Q
6671 BIOMETRIC_ENROLL_ACTIVITY = 1586;
6672
tmfanga3f63a92018-11-05 19:05:18 +08006673 // OPEN: Settings > Privacy
6674 // CATEGORY: SETTINGS
6675 // OS: Q
6676 TOP_LEVEL_PRIVACY = 1587;
6677
Beverlyd58cc772018-11-09 16:23:11 -05006678 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6679 // Allow apps to override
6680 // CATEGORY: SETTINGS
6681 // OS: Q
6682 NOTIFICATION_ZEN_MODE_OVERRIDING_APPS = 1588;
6683
6684 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6685 // Allow apps to override > Choose app
6686 // CATEGORY: SETTINGS
6687 // OS: Q
6688 NOTIFICATION_ZEN_MODE_OVERRIDING_APP = 1589;
6689
Esteban Talaveraf9c53b62018-11-14 18:20:29 +00006690 // ACTION: User sent a direct reply
6691 // PACKAGE: App that posted the notification
6692 // CATEGORY: NOTIFICATION
6693 // OS: Q
6694 NOTIFICATION_DIRECT_REPLY_ACTION = 1590;
6695
Chienyuane7a535c2018-11-30 16:01:48 +08006696 // OPEN: Settings > Developer options > Disable > Info dialog
6697 // CATEGORY: SETTINGS
6698 // OS: Q
6699 DIALOG_DISABLE_DEVELOPMENT_OPTIONS = 1591;
6700
Susi Kharraz-Post9b033672018-11-28 08:14:07 -05006701 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6702 // indicating the StatusBarState when menu was pulled down
6703 // CATEGORY: QUICK_SETTINGS
6704 // OS: Q
6705 FIELD_STATUS_BAR_STATE = 1592;
6706
6707 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6708 // indicating whether current state is full QS
6709 // CATEGORY: QUICK_SETTINGS
6710 // OS: Q
6711 FIELD_IS_FULL_QS = 1593;
6712
Issei Suzuki9e5ff4b2018-12-04 14:23:24 +01006713 // ACTION: Display folding state was changed
6714 // CATEGORY: OTHER
6715 // SUBTYPE: 1 if display is folded, 0 if not.
6716 // OS: Q
6717 ACTION_DISPLAY_FOLD = 1594;
6718
Arc Wangb16327a2018-11-30 14:15:52 +08006719 // OPEN: WifiDppConfiguratorActivity (android.settings.WIFI_DPP_CONFIGURATOR_XXX action intents)
6720 // CATEGORY: SETTINGS
6721 // OS: Q
6722 SETTINGS_WIFI_DPP_CONFIGURATOR = 1595;
6723
6724 // OPEN: WifiDppEnrolleeActivity (android.settings.WIFI_DPP_ENROLLEE_XXX action intents)
6725 // CATEGORY: SETTINGS
6726 // OS: Q
6727 SETTINGS_WIFI_DPP_ENROLLEE = 1596;
6728
Hongming Jin5172ec12018-12-13 11:02:42 -08006729 // OPEN: Settings > Apps & Notifications -> Special app access -> Financial Apps Sms Access
6730 // CATEGORY: SETTINGS
6731 // OS: Q
6732 SETTINGS_FINANCIAL_APPS_SMS_ACCESS = 1597;
6733
Chad Brubaker90f391f2018-10-19 10:26:19 -07006734 // OPEN: QS Sensor Privacy Mode tile shown
6735 // ACTION: QS Sensor Privacy Mode tile tapped
6736 // SUBTYPE: 0 is off, 1 is on
6737 // CATEGORY: QUICK_SETTINGS
6738 // OS: Q
6739 QS_SENSOR_PRIVACY = 1598;
6740
Gustav Sennton6f65fc32018-12-12 17:40:28 +00006741 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart actions.
6742 // OS: Q
6743 NOTIFICATION_SMART_ACTION_COUNT = 1599;
6744
6745 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6746 // Whether the notification has notification-assistant generated
6747 // actions/replies.
6748 // OS: Q
6749 NOTIFICATION_SMART_SUGGESTION_ASSISTANT_GENERATED = 1600;
6750
6751 // Tagged data for NOTIFICATION_ITEM_ACTION. Whether the action is a smart
6752 // action.
6753 // OS: Q
6754 NOTIFICATION_ACTION_IS_SMART = 1601;
6755
Beverlyf3c2c862018-12-21 09:57:31 -05006756 // FIELD: true if the associated ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* allows/blocks
6757 // the effect/sound when DND is on. false if set to disallow/show.
6758 // OS: Q
6759 FIELD_ZEN_TOGGLE_EXCEPTION = 1602;
6760
6761 // FIELD: rule id an ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* is associated with
6762 // OS: Q
6763 FIELD_ZEN_RULE_ID = 1603;
6764
6765 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6766 // > Do Not Disturb behavior
6767 // CATEGORY: SETTINGS
6768 // OS: Q
6769 ZEN_CUSTOM_RULE_SETTINGS = 1604;
6770
6771 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6772 // > Do Not Disturb behavior > Custom
6773 // CATEGORY: SETTINGS
6774 // OS: Q
6775 ZEN_CUSTOM_RULE_SOUND_SETTINGS = 1605;
6776
6777 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6778 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6779 // CATEGORY: SETTINGS
6780 // OS: Q
6781 ZEN_CUSTOM_RULE_DEFAULT_SETTINGS = 1606;
6782
6783 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6784 // > Do Not Disturb behavior > Custom
6785 // CATEGORY: SETTINGS
6786 // OS: Q
6787 ZEN_CUSTOM_RULE_CUSTOM_SETTINGS = 1607;
6788
6789 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6790 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6791 // > Notification restriction
6792 // CATEGORY: SETTINGS
6793 // OS: Q
6794 ZEN_CUSTOM_RULE_NOTIFICATION_RESTRICTIONS = 1608;
6795
6796 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6797 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6798 // > Notification restriction > Custom
6799 // CATEGORY: SETTINGS
6800 // OS: Q
6801 ZEN_CUSTOM_RULE_VIS_EFFECTS = 1609;
6802
6803 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6804 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6805 // > Notification restriction > Custom > Allow messages
6806 // CATEGORY: SETTINGS
6807 // OS: Q
6808 ZEN_CUSTOM_RULE_MESSAGES = 1610;
6809
6810 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6811 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6812 // > Notification restriction > Custom > Allow calls
6813 // CATEGORY: SETTINGS
6814 // OS: Q
6815 ZEN_CUSTOM_RULE_CALLS = 1611;
6816
6817 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
6818 // CATEGORY: SETTINGS
6819 // OS: Q
6820 ZEN_CUSTOM_SETTINGS_DIALOG = 1612;
6821
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006822 // OPEN: Settings > Developer Options > Game Driver Preferences
Yiwei Zhang71434b72018-12-28 11:32:42 +08006823 // CATEGORY: SETTINGS
6824 // OS: Q
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006825 SETTINGS_GAME_DRIVER_DASHBOARD = 1613;
Yiwei Zhang71434b72018-12-28 11:32:42 +08006826
Tony Mak5a5f0d52019-01-08 11:07:23 +00006827 // CATEGORY: The category for all actions relating to language detection logging.
6828 // OS: Q
6829 LANGUAGE_DETECTION = 1614;
6830
6831 // CATEGORY: The category for all actions relating to conversation actions logging.
6832 // OS: Q
6833 CONVERSATION_ACTIONS = 1615;
6834
6835 // ACTION: Actions from a text classifier are shown to user.
Tony Mak03a1d032019-01-24 15:12:00 +00006836 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006837 // OS: Q
6838 ACTION_TEXT_CLASSIFIER_ACTIONS_SHOWN = 1616;
6839
Tony Mak03a1d032019-01-24 15:12:00 +00006840 // FIELD: Event time of a text classifier event in unix timestamp.
6841 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006842 // OS: Q
6843 FIELD_TEXT_CLASSIFIER_EVENT_TIME = 1617;
6844
6845 // ACTION: Users compose their own replies instead of using suggested ones.
Tony Mak03a1d032019-01-24 15:12:00 +00006846 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006847 // OS: Q
6848 ACTION_TEXT_CLASSIFIER_MANUAL_REPLY = 1618;
6849
6850 // ACTION: Text classifier generates an action.
Tony Mak03a1d032019-01-24 15:12:00 +00006851 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006852 // OS: Q
6853 ACTION_TEXT_CLASSIFIER_ACTIONS_GENERATED = 1619;
6854
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00006855 // OPEN: Settings > Accessibility > Vibration > Ring vibration
6856 // CATEGORY: SETTINGS
6857 // OS: Q
6858 ACCESSIBILITY_VIBRATION_RING = 1620;
6859
Eyal Posenera9cf9c72018-12-18 16:23:54 +02006860 // ACTION: Notification blocking helper view, which helps the user to block
6861 // application or channel from showing notifications.
6862 // SUBTYPE: NotificationBlockingHelper enum.
6863 // CATEGORY: NOTIFICATION
6864 // OS: Q
6865 NOTIFICATION_BLOCKING_HELPER = 1621;
6866
Ruchi Kandoi6513d9d2019-01-09 13:23:04 -08006867 // ACTION: Tap & Pay -> Default Application Setting -> Use Forground
6868 // OS: Q
6869 ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622;
6870
6871 // ACTION: Tap & Pay -> Default Application Setting -> Use Default
6872 // OS: Q
6873 ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623;
Chris Wren6c109522018-03-12 10:00:12 -04006874
Beverly5015ac82019-01-10 16:33:02 -05006875 // OPEN: Settings > System > Input & Gesture > Skip song gesture
6876 // OS: Q
6877 SETTINGS_GESTURE_SKIP_SONG = 1624;
6878
6879 // OPEN: Settings > System > Input & Gesture > Silence gesture
6880 // OS: Q
6881 SETTINGS_GESTURE_SILENCE = 1625;
6882
Lucas Dupind43bf702019-01-15 13:40:42 -08006883 // OPEN: Settings > System > Input & Gesture > Tap screen gesture
6884 // OS: Q
6885 SETTINGS_GESTURE_TAP_SCREEN = 1626;
6886
Antony Sargent29932062019-01-10 15:59:11 -08006887 // OPEN: Settings > Network & internet > Click Mobile network to land on a page with a list of
6888 // SIM/eSIM subscriptions.
6889 // CATEGORY: SETTINGS
6890 // OS: Q
6891 MOBILE_NETWORK_LIST = 1627;
6892
Alex Salo1dea1e62019-01-18 14:17:20 -08006893 // OPEN: Settings > Display > Adaptive sleep
6894 // OS: Q
6895 SETTINGS_ADAPTIVE_SLEEP = 1628;
Tony Mak03a1d032019-01-24 15:12:00 +00006896
Felipe Leme479294a2019-01-22 17:23:07 -08006897 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6898 // The UI location of the notification containing the smart suggestions.
6899 // This is a NotificationLocation object (see the NotificationLocation
6900 // enum).
6901 // OS: Q
6902 NOTIFICATION_LOCATION = 1629;
6903
Felipe Lemea3033852019-01-18 16:32:33 -08006904 // The autofill system made request to the system-provided augmented autofill service.
6905 // OS: Q
6906 // Package: Package of app that is autofilled
6907 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
6908 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
6909 // request
6910 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
6911 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme479294a2019-01-22 17:23:07 -08006912 AUTOFILL_AUGMENTED_REQUEST = 1630;
Felipe Lemea3033852019-01-18 16:32:33 -08006913
6914 // Tag of a field for the number of augmented autofill requests in a session
6915 // OS: Q
Felipe Leme479294a2019-01-22 17:23:07 -08006916 FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS = 1631;
Gustav Sennton3757d852019-01-21 12:11:40 +00006917
Edgar Wang5ee81542019-01-11 19:30:12 +08006918 // OPEN: Settings > System > Aware
6919 // OS: Q
6920 SETTINGS_AWARE = 1632;
6921
6922 // OPEN: Settings > System > Aware > Disable > Dialog
6923 // OS: Q
6924 DIALOG_AWARE_DISABLE = 1633;
6925
Tony Mak03a1d032019-01-24 15:12:00 +00006926 // FIELD: Session ID of TextClassifierEvent.
6927 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6928 // OS: Q
6929 FIELD_TEXT_CLASSIFIER_SESSION_ID = 1634;
6930
6931 // FIELD: First entity type.
6932 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6933 // OS: Q
6934 FIELD_TEXT_CLASSIFIER_FIRST_ENTITY_TYPE = 1635;
6935 // FIELD: Second entity type.
6936 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6937 // OS: Q
6938 FIELD_TEXT_CLASSIFIER_SECOND_ENTITY_TYPE = 1636;
6939
6940 // FIELD: Third entity type.
6941 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6942 // OS: Q
6943 FIELD_TEXT_CLASSIFIER_THIRD_ENTITY_TYPE = 1637;
6944
6945 // FIELD: Score of the suggestion.
6946 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6947 // OS: Q
6948 FIELD_TEXT_CLASSIFIER_SCORE = 1638;
6949
6950 // FIELD: widget type, e.g: notification, textview
6951 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6952 // OS: Q
6953 FIELD_TEXT_CLASSIFIER_WIDGET_TYPE = 1639;
6954
6955 // FIELD: version of the widget.
6956 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6957 // OS: Q
6958 FIELD_TEXT_CLASSIFIER_WIDGET_VERSION = 1640;
6959
Will Brockman828427e2019-01-28 09:55:45 -05006960 // Tagged data for NOTIFICATION_ITEM. One of the CATEGORY String constants from
6961 // https://developer.android.com/reference/android/app/Notification .
6962 // OS: Q
6963 // CATEGORY: NOTIFICATION
6964 FIELD_NOTIFICATION_CATEGORY = 1641;
6965
Antony Sargent4348de52019-01-29 16:46:13 -08006966 // OPEN: Settings > Settings > Network & internet > Click Mobile network to land on page with
6967 // details for a SIM/eSIM mobile network > Click edit icon to bring up a rename dialog.
6968 // OS: Q
6969 MOBILE_NETWORK_RENAME_DIALOG = 1642;
6970
Sunny Shaoab08c4c2019-01-30 16:04:23 +08006971 // ACTION: Settings > Search Bar > Avatar
6972 // CATEGORY: SETTINGS
6973 // OS: Q
6974 ACTION_CLICK_ACCOUNT_AVATAR = 1643;
6975
Bernard Chaudd6c3b12019-01-31 15:31:22 +00006976 // OPEN: Set new password (action intents android.app.action.SET_NEW_PASSWORD or
6977 // android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6978 // CATEGORY: SETTINGS
6979 // OS: Q
6980 SET_NEW_PASSWORD_ACTIVITY = 1644;
6981
6982 // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD)
6983 // CATEGORY: SETTINGS
6984 // OS: Q
6985 ACTION_SET_NEW_PASSWORD = 1645;
6986
6987 // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6988 // CATEGORY: SETTINGS
6989 // OS: Q
6990 ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646;
6991
Milo Sredkov13d88112019-02-01 12:23:24 +00006992 // Tagged data for SMART_REPLY_VISIBLE and SMART_REPLY_ACTION.
6993 // Whether the smart reply was / is to be sent via direct reply because
6994 // getEditChoicesBeforeSending was enabled.
6995 // OS: Q
6996 NOTIFICATION_SMART_REPLY_EDIT_BEFORE_SENDING = 1647;
6997
6998 // Tagged data for SMART_REPLY_ACTION.
6999 // Whether the smart reply was modified by the user via the direct reply field (implies that
7000 // getEditChoicesBeforeSending was enabled).
7001 // actions/replies.
7002 // OS: Q
7003 NOTIFICATION_SMART_REPLY_MODIFIED_BEFORE_SENDING = 1648;
7004
Susi Kharraz-Post7e2115d2019-02-01 16:51:22 -05007005 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
7006 // Field to add the mimetype for a ChooserActivity
7007 // OS:Q
7008 FIELD_SHARESHEET_MIMETYPE = 1649;
7009
7010 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
7011 // Sharesheet direct targets are ready to show.
7012 // OS:Q
7013 ACTION_ACTIVITY_CHOOSER_SHOWN_DIRECT_TARGET = 1650;
7014
7015 // CATEGORY: ACTION_SHARESHEET_SCROLL
7016 // Sharesheet are either expanded, scrolling through them or compacted again.
7017 // OS:Q
7018 // Subtype 1 means collapsed, 0 expanded
7019 ACTION_SHARESHEET_COLLAPSED_CHANGED = 1651;
7020
7021 // ACTION: Share with screenshot extra
7022 // OS: Q
7023 ACTION_SHARE_WITH_PREVIEW = 1652;
7024
7025 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
7026 // OS:Q
7027 // The time elapsed from triggering the share to displaying the app targets
7028 // formerly: histogram system_cost_for_smart_sharing
7029 FIELD_TIME_TO_APP_TARGETS = 1653;
7030
Matthew Fritze4d1dc0b2019-02-11 13:31:42 -08007031 // Open: Settings > Panel for Internet Connectivity
7032 PANEL_INTERNET_CONNECTIVITY = 1654;
7033
7034 // Open: Settings > Panel for Volume
7035 PANEL_VOLUME = 1655;
7036
7037 // Open: Settings > Panel for NFC
7038 PANEL_NFC = 1656;
7039
7040 // Open: Settings > Panel for Media Output
7041 PANEL_MEDIA_OUTPUT = 1657;
7042
7043 // ACTION: An interaction with a Slice or other component in the Panel.
7044 // CATEGORY: SETTINGS
7045 // OS: Q
7046 ACTION_PANEL_INTERACTION = 1658;
7047
Susi Kharraz-Post9893b8c2019-02-12 14:21:29 -05007048 // ACTION: Change phone orientation
7049 // OS: Q
7050 // SUBTYPE is orientation defined in Configuration.class
7051 ACTION_PHONE_ORIENTATION_CHANGED = 1659;
7052
7053 // CATEGORY: ACTION_PHONE_ORIENTATION_CHANGED
7054 // OS: Q
7055 // Different display can have different orientations, so need to log display id
7056 FIELD_DISPLAY_ID = 1660;
7057
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -05007058 // ACTION: Changing from work to parent profile or vice versa
7059 // OS: Q
7060 ACTION_SWITCH_SHARE_PROFILE = 1661;
7061
Raff Tsaic3d33ca422019-02-19 11:40:36 +08007062 // ACTION: Show Contextual homepage, log latency in loading cards
7063 ACTION_CONTEXTUAL_HOME_SHOW = 1662;
7064
7065 // ACTION: Contextual card displays
7066 ACTION_CONTEXTUAL_CARD_SHOW = 1663;
7067
7068 // ACTION: Contextual cards are eligible to be shown, but don't rank high
7069 ACTION_CONTEXTUAL_CARD_NOT_SHOW = 1664;
7070
7071 // ACTION: Settings > long press a card, and click dismiss
7072 // Contextual card is dismissed
7073 ACTION_CONTEXTUAL_CARD_DISMISS = 1665;
7074
7075 // ACTION: Settings > click a card
7076 // Contextual card is clicked
7077 ACTION_CONTEXTUAL_CARD_CLICK = 1666;
7078
Mariia Sandrikova908d8132019-02-21 20:02:49 +00007079 // Mapping: go/at-mapping
7080 PAGE_ATSSI = 1667;
7081
7082 PAGE_ATSII = 1668;
7083
7084 PAGE_ATUS = 1669;
7085
7086 PAGE_ATSSP = 1670;
7087
7088 PAGE_ATSAP = 1671;
7089
7090 PAGE_ATSCP = 1672;
7091
7092 PAGE_ATHNP = 1673;
7093
7094 ACTION_ATSG = 1674;
7095
7096 ACTION_ATPG = 1675;
7097
7098 ACTION_ATCLPB = 1676;
7099
7100 ACTION_ATCGIB = 1677;
7101
7102 ACTION_ATCPAB = 1678;
7103
7104 ACTION_ATCSAUC = 1679;
7105
7106 ACTION_ATCSCUC = 1680;
7107
7108 ACTION_ATCHNUC = 1681;
7109
Jackal Guo3cc93c42019-02-26 10:31:14 +08007110 // OPEN: Accessibility detail settings (android.settings.ACCESSIBILITY_DETAILS_SETTINGS intent)
7111 ACCESSIBILITY_DETAILS_SETTINGS = 1682;
7112
Mill Chend768dc62019-02-26 18:40:07 +08007113 // Open: Settings will show the conditional when Grayscale mode is on
7114 SETTINGS_CONDITION_GRAYSCALE_MODE = 1683;
7115
Yi-Ling Chuangea9ec7192019-02-26 21:07:53 +08007116 // ACTION: Individual contextual card loading time
7117 ACTION_CONTEXTUAL_CARD_LOAD = 1684;
7118
7119 //ACTION: Contextual card loading timeout
7120 ACTION_CONTEXTUAL_CARD_LOAD_TIMEOUT = 1685;
7121
7122 //ACTION: Log result for each card's eligibility check
7123 ACTION_CONTEXTUAL_CARD_ELIGIBILITY = 1686;
7124
Matthew Fritze20caff62019-03-05 08:12:39 -08007125 // Panel for Wifi
7126 PANEL_WIFI = 1687;
7127
Will Brockman934b8e32019-03-08 11:14:45 -05007128 // Custom tag for NotificationItem. A NotificationImportanceExplanation.
7129 FIELD_NOTIFICATION_IMPORTANCE_EXPLANATION = 1688;
7130
7131 // Custom tag for NotificationItem. The initial "natural" importance.
7132 FIELD_NOTIFICATION_IMPORTANCE_INITIAL = 1689;
7133
7134 // Custom tag for NotificationItem. A NotificationImportanceExplanation.
7135 // The source of the "natural" importance, if it was overridden.
7136 FIELD_NOTIFICATION_IMPORTANCE_INITIAL_EXPLANATION = 1690;
7137
7138 // Custom tag for NotificationItem. The Notification Assistant's
7139 // override of importance. Logged separately only if it was
7140 // overridden by the system.
7141 FIELD_NOTIFICATION_IMPORTANCE_ASST = 1691;
7142
Fan Zhang255464a2019-03-15 15:51:17 -07007143 // Open: Settings > Special App Access > Do not disturb control for app
7144 ZEN_ACCESS_DETAIL = 1692;
7145
Kevin Chyn59e67492019-03-19 19:55:08 -07007146 // OPEN: Settings > Face > Remove face
7147 // OS: Q
7148 DIALOG_FACE_REMOVE = 1693;
7149
Steven Wu0e6e5de2019-03-12 17:13:14 -04007150 // FIELD - Detailed reason in screen wake. One of WAKE_REASON_* in PowerManager.
7151 // OS: Q
7152 FIELD_SCREEN_WAKE_REASON = 1694;
7153
7154 // FIELD - Detailed reason in screen sleep. One of GO_TO_SLEEP_REASON_* in PowerManager.
7155 // OS: Q
7156 FIELD_SCREEN_SLEEP_REASON = 1695;
7157
Michael Wright188bbbf2019-02-05 22:12:17 +00007158 // UPDATE: The screen changed policy
7159 // SUBTYPE: The applied policy. One of the DISPLAY_POLICY_* constants in
7160 // DisplayManagerInternal.
7161 // OS: Q
7162 DISPLAY_POLICY = 1696;
7163
Steven Wue442acf2019-03-14 13:31:12 -04007164 // Biometric authentication.
7165 // TYPE: SUCCESS, FAILURE or ERROR
7166 // SUBTYPE: 0 is fingerprint, 1 is face, 2 is iris and 3 is unknown.
7167 // OS: Q
7168 BIOMETRIC_AUTH = 1697;
7169
Salvador Martinez39adab42019-03-20 15:57:23 -07007170 // Settings > Display > Theme
7171 DARK_UI_SETTINGS = 1698;
Julia Reynolds12511032019-03-25 15:51:38 -04007172
7173 // Settings > global bubble settings
7174 BUBBLE_SETTINGS = 1699;
7175
7176 // Settings > app > bubble settings
7177 APP_BUBBLE_SETTINGS = 1700;
7178
Edgar Wangb132eed2019-03-26 20:18:21 +08007179 // OPEN: Settings > System > Aware > Info dialog
7180 DIALOG_AWARE_STATUS = 1701;
Julia Reynolds50e18ca2019-03-29 16:01:20 -04007181
7182 // Open: Settings > app > bubble settings > confirmation dialog
7183 DIALOG_APP_BUBBLE_SETTINGS = 1702;
7184
Christine Franks92aa9b22019-03-28 11:47:00 -07007185 // ACTION: Display white balance setting enabled or disabled.
7186 // CATEGORY: SETTINGS
7187 // OS: Q
7188 ACTION_DISPLAY_WHITE_BALANCE_SETTING_CHANGED = 1703;
7189
Susi Kharraz-Post14cbfcd2019-04-01 11:07:59 -04007190 // Action: ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET
7191 // Direct share target hashed with rotating salt
7192 FIELD_HASHED_TARGET_NAME = 1704;
7193
7194 // Action: ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET
7195 // Salt generation for the above hashed direct share target
7196 FIELD_HASHED_TARGET_SALT_GEN = 1705;
7197
Lucas Dupin046282e2019-04-10 20:17:32 -07007198 // OPEN: QS dark theme tile shown
7199 // ACTION: QS dark theme tile tapped
7200 // SUBTYPE: 0 is off, 1 is on
7201 // CATEGORY: QUICK_SETTINGS
7202 // OS: Q
7203 QS_UI_MODE_NIGHT = 1706;
7204
Fan Zhang6cd3b902019-04-19 13:59:59 -07007205 // OPEN: Settings > Pick SIM dialog
7206 // CATEGORY: SETTINGS
7207 // OS: Q
7208 DIALOG_SIM_LIST = 1707;
7209
7210 // OPEN: Settings > Pick SIM (that supports calling) dialog
7211 // CATEGORY: SETTINGS
7212 // OS: Q
7213 DIALOG_CALL_SIM_LIST = 1708;
7214
7215 // OPEN: Settings > Pick preferred SIM dialog
7216 // CATEGORY: SETTINGS
7217 // OS: Q
7218 DIALOG_PREFERRED_SIM_PICKER = 1709;
7219
Arc Wang036f4042019-04-15 18:16:58 +08007220 // ACTION: Share a Wi-Fi network by generating a QR code
7221 ACTION_SETTINGS_SHARE_WIFI_QR_CODE = 1710;
7222
7223 // ACTION: Connect to a Wi-Fi network by scanning a QR code
7224 ACTION_SETTINGS_ENROLL_WIFI_QR_CODE = 1711;
7225
7226 // ACTION: Share Wi-Fi hotspot by generating a QR code
7227 ACTION_SETTINGS_SHARE_WIFI_HOTSPOT_QR_CODE = 1712;
7228
Antony Sargent0a7036b2019-04-29 14:17:35 -07007229 // OPEN: Settings > Network & internet > Mobile network > Delete sim
7230 DIALOG_DELETE_SIM_CONFIRMATION = 1713;
7231
7232 // OPEN: Settings > Network & internet > Mobile network > Delete sim > (answer yes to
7233 // confirmation)
7234 DIALOG_DELETE_SIM_PROGRESS = 1714;
7235
Julia Reynoldsc0fb5c12019-05-03 09:39:19 -04007236 // Settings > Apps and notifications > Notifications > Gentle notifications
7237 GENTLE_NOTIFICATIONS_SCREEN = 1715;
7238
Steven Wu11da5742019-04-25 16:12:06 -04007239 // Assistant
7240 // TYPE: OPEN, CLOSE or UPDATE.
7241 // For OPEN, the subtype is the innovation type for the assistant.
7242 // OS: Q
7243 ASSISTANT = 1716;
7244
Mehdi Alizadeh97fb3ed2019-04-25 14:52:02 -07007245 // ACTION: Published shortcuts in ShortcutManager changed
7246 // TYPE: All the SHORTCUTS_CHANGED_* values in ShortcutsChangesInfo
7247 // OS: Q
7248 ACTION_SHORTCUTS_CHANGED = 1717;
7249
7250 // ACTION: Direct share targets loaded via ShortcutManager
7251 // OS: Q
7252 ACTION_DIRECT_SHARE_TARGETS_LOADED_SHORTCUT_MANAGER = 1718;
7253
7254 // ACTION: Direct share targets loaded via ChooserService
7255 // OS: Q
7256 ACTION_DIRECT_SHARE_TARGETS_LOADED_CHOOSER_SERVICE = 1719;
7257
Felipe Lemec0df8952019-05-02 14:09:04 -07007258 // Field indicating that an autofill session was created just for augmented autofill purposes.
7259 // OS: Q
7260 // Value: 1 for true, absent when false
7261 FIELD_AUTOFILL_AUGMENTED_ONLY = 1720;
Aran Ink35231f72019-05-07 13:39:37 -04007262
Felipe Lemec0df8952019-05-02 14:09:04 -07007263 // The augmented autofill service set its whitelisted packages and activities.
7264 // OS: Q
7265 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
7266 // request
7267 // Tag FIELD_AUTOFILL_NUMBER_PACKAGES: Number of whitelisted packages.
7268 // Tag FIELD_AUTOFILL_NUMBER_ACTIVITIES: Number of whitelisted activities.
7269 AUTOFILL_AUGMENTED_WHITELIST_REQUEST = 1721;
7270
7271 // Generic field used to indicate the number of packages in an Autofill metric (typically a
7272 // whitelist request).
7273 // OS: Q
7274 FIELD_AUTOFILL_NUMBER_PACKAGES = 1722;
7275
7276 // Generic field used to indicate the number of activities in an Autofill metric (typically a
7277 // whitelist request).
7278 // OS: Q
7279 FIELD_AUTOFILL_NUMBER_ACTIVITIES = 1723;
7280
7281 // Reports the result of a request made to the augmented autofill service
7282 // OS: Q
7283 // Type TYPE_UNKNOWN: if the type of response could not be determined
7284 // Type TYPE_SUCCESS: service called onSucess() passing null
7285 // Type TYPE_OPEN: service shown the UI
7286 // Type TYPE_CLOSE: service hid the UI
7287 // Type TYPE_ERROR: service timed out responding
7288
7289 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
7290 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
7291 // request
7292 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric
7293 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to the service to respond, or -1 if the
7294 // type of response could not be determined
7295 AUTOFILL_AUGMENTED_RESPONSE = 1724;
7296
tmfangfb4dbb72019-04-30 11:52:15 +08007297 // ACTION: Settings > Initialize Search bar > Verify Slice > Invalid data
7298 ACTION_VERIFY_SLICE_ERROR_INVALID_DATA = 1725;
7299
7300 // ACTION: Settings > Initialize Search bar > Verify Slice > Parsing error
7301 ACTION_VERIFY_SLICE_PARSING_ERROR = 1726;
7302
7303 // ACTION: Settings > Initialize Search bar > Verify Slice > Other exception
7304 ACTION_VERIFY_SLICE_OTHER_EXCEPTION = 1727;
7305
Aran Ink35231f72019-05-07 13:39:37 -04007306 // OPEN: Settings > System > Gestures > Global Actions Panel
7307 // CATEGORY: SETTINGS
7308 // OS: Q
Susi Kharraz-Post14746552019-05-14 17:23:43 -04007309 GLOBAL_ACTIONS_PANEL_SETTINGS = 1728;
Aran Ink35231f72019-05-07 13:39:37 -04007310
Leo Hsud8faaf92019-05-03 21:28:07 +08007311 // ACTION: Making call via emergency dialer (Ver.2)
7312 // SUBTYPE: The UI that user made phone call
7313 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
7314 // OS: Q
7315 EMERGENCY_DIALER_MAKE_CALL_V2 = 1729;
7316
7317 // ACTION: Result of an emergency call
7318 // SUBTYPE: Is the call active, i.e. accepted by the remote
7319 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT
7320 // OS: Q
7321 EMERGENCY_DIALER_CALL_RESULT = 1730;
7322
7323 // FIELD: The entry point that the user launch emergency dialer from
7324 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
7325 // OS: Q
7326 FIELD_EMERGENCY_DIALER_LAUNCH_FROM = 1731;
7327
7328 // FIELD: The reason why the traditional emergency dialer shows up
7329 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
7330 // OS: Q
7331 FIELD_EMERGENCY_DIALER_UI_MODE_ERROR_CODE = 1732;
7332
7333 // FIELD: The device is currently locked
7334 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
7335 // OS: Q
7336 FIELD_EMERGENCY_DIALER_IS_DEVICE_LOCKED = 1733;
7337
7338 // FIELD: The country ISO code of current network
7339 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2, EMERGENCY_DIALER_CALL_RESULT
7340 // OS: Q
7341 FIELD_EMERGENCY_DIALER_NETWORK_COUNTRY_ISO = 1734;
7342
7343 // FIELD: The mobile operator code (MNC) of current network
7344 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2, EMERGENCY_DIALER_CALL_RESULT
7345 // OS: Q
7346 FIELD_EMERGENCY_DIALER_NETWORK_OPERATOR = 1735;
7347
7348 // FIELD: Radio version of the device
7349 // CATEGORY: EMERGENCY_DIALER_MAKE_CALL_V2
7350 // OS: Q
7351 FIELD_EMERGENCY_DIALER_RADIO_VERSION = 1736;
7352
7353 // FIELD: The duration between the start of dialing and the call is active.
7354 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT
7355 // OS: Q
7356 FIELD_EMERGENCY_DIALER_RESPONSE_TIME = 1737;
7357
7358 // FIELD: The duration between the start of dialing and the call being disconnected.
7359 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT
7360 // OS: Q
7361 FIELD_EMERGENCY_DIALER_DISCONNECT_TIME = 1738;
7362
7363 // FIELD: The cause of a disconnected call.
7364 // CATEGORY: EMERGENCY_DIALER_CALL_RESULT
7365 // OS: Q
7366 FIELD_EMERGENCY_DIALER_DISCONNECT_CAUSE = 1739;
7367
Salvador Martinez20d1db42019-05-14 10:38:20 -07007368 // OPEN: Settings > Display > Dark Theme
7369 // CATEGORY: SETTINGS
7370 // OS: Q
7371 // Note: Only shows up on first time toggle
7372 DIALOG_DARK_UI_INFO = 1740;
Leo Hsud8faaf92019-05-03 21:28:07 +08007373
Steven Wu40cbada2019-05-16 10:56:40 -04007374 // FIELD - Detailed reason in biometric authentication error.
7375 // One of the constant value in BiometricConstants.java file.
7376 // OS: Q
7377 FIELD_BIOMETRIC_AUTH_ERROR = 1741;
7378
Jan Althaus367eb8c2019-05-23 11:31:42 +02007379 // Custom tag for NotificationItem. Hash of the NAS that made adjustments.
7380 FIELD_NOTIFICATION_ASSISTANT_SERVICE_HASH = 1742;
7381
Beth Thibodeau4b05fbc2019-05-16 12:51:20 -04007382 // Report interactions with seekbar on media notifications
7383 // OPEN: Seekbar is visible
7384 // CLOSE: Seekbar is not visible
7385 // DETAIL: Seekbar scrubber enabled / disabled
7386 // Subtype: 0 disabled, cannot seek; 1 enabled, can seek
7387 // UPDATE: Scrubber was moved by user
7388 // CATEGORY: NOTIFICATION
7389 MEDIA_NOTIFICATION_SEEKBAR = 1743;
7390
Will Brockmanc22772c2019-06-14 14:55:31 -04007391 // Custom tag for StatusBarNotification. Length of
7392 // Notification.extras[EXTRA_PEOPLE_LIST], set by addPerson().
7393 FIELD_NOTIFICATION_PEOPLE = 1744;
7394
7395 // Custom tag for StatusBarNotification. The Java hashcode of
7396 // Notification.extras[EXTRA_TEMPLATE], which is a string like
7397 // android.app.Notification$MessagingStyle, set by setStyle().
7398 FIELD_NOTIFICATION_STYLE = 1745;
7399
Andrew Sappersteinaad89bd2019-06-18 11:19:44 -07007400 // OPEN: Settings > About phone > Legal information > Google Play system update licenses
7401 // CATEGORY: SETTINGS
7402 // OS: Q
7403 MODULE_LICENSES_DASHBOARD = 1746;
7404
Mehdi Alizadeh873f1722019-06-20 18:08:56 -07007405 // OPEN: Settings > System > Gestures > System navigation > Info icon
7406 // CATEGORY: SETTINGS
7407 // OS: Q
7408 // Note: Info icon is visible only when gesture navigation is not available and disabled
7409 SETTINGS_GESTURE_NAV_NOT_AVAILABLE_DLG = 1747;
7410
7411 // OPEN: Settings > System > Gestures > System navigation > Gear icon
7412 // CATEGORY: SETTINGS
7413 // OS: Q
7414 // Note: Gear icon is shown next to gesture navigation preference and opens sensitivity dialog
7415 SETTINGS_GESTURE_NAV_BACK_SENSITIVITY_DLG = 1748;
7416
Beverly5015ac82019-01-10 16:33:02 -05007417 // ---- End Q Constants, all Q constants go above this line ----
Chris Wren77781d32016-01-11 14:49:26 -05007418 // Add new aosp constants above this line.
7419 // END OF AOSP CONSTANTS
7420 }
Leo Hsud8faaf92019-05-03 21:28:07 +08007421}