blob: 8929e8298e6883e123c0fb15c3f9cc9464eedc7d [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 TYPE_TRANSITION_HOT_LAUNCH = 9;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Will Brockman2a1e6b82019-01-15 11:36:06 -050076
77 // The notification was adjusted by the assistant. Enum value is
78 // out of sequence due to b/122737498.
79 TYPE_NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
Chris Wren5e334f62016-11-14 10:16:21 -050080 }
81
Chris Wren65f07fe2017-03-14 14:10:37 -040082 // Types of alerts, as bit field values
83 enum Alert {
84 // Vibrate the device.
85 ALERT_BUZZ = 1;
86
87 // Make sound through the speaker.
88 ALERT_BEEP = 2;
89
90 // Flash a notificaiton light.
91 ALERT_BLINK = 4;
92 }
93
94 // Reasons that a notification might be dismissed.
95 enum DismissReason {
96 // from android.service.notification.NotificationListenerService
97
98 // Notification was canceled by the status bar reporting a notification click
99 REASON_CLICK = 1;
100
101 // Notification was canceled by the status bar reporting a user dismissal.
102 REASON_CANCEL = 2;
103
104 // Notification was canceled by the status bar reporting a user dismiss all.
105 REASON_CANCEL_ALL = 3;
106
107 // Notification was canceled by the status bar reporting an inflation error.
108 REASON_ERROR = 4;
109
110 // Notification was canceled by the package manager modifying the package.
111 REASON_PACKAGE_CHANGED = 5;
112
113 // Notification was canceled by the owning user context being stopped.
114 REASON_USER_STOPPED = 6;
115
116 // Notification was canceled by the user banning the package.
117 REASON_PACKAGE_BANNED = 7;
118
119 // Notification was canceled by the app canceling this specific notification.
120 REASON_APP_CANCEL = 8;
121
122 //Notification was canceled by the app cancelling all its notifications.
123 REASON_APP_CANCEL_ALL = 9;
124
125 // Notification was canceled by a listener reporting a user dismissal.
126 REASON_LISTENER_CANCEL = 10;
127
128 //Notification was canceled by a listener reporting a user dismiss all.
129 REASON_LISTENER_CANCEL_ALL = 11;
130
131 // Notification was canceled because it was a member of a canceled group.
132 REASON_GROUP_SUMMARY_CANCELED = 12;
133
134 // Notification was canceled because it was an invisible member of a group.
135 REASON_GROUP_OPTIMIZATION = 13;
136
137 // Notification was canceled by the device administrator suspending the package.
138 REASON_PACKAGE_SUSPENDED = 14;
139
140 // Notification was canceled by the owning managed profile being turned off.
141 REASON_PROFILE_TURNED_OFF = 15;
142
143 // Autobundled summary notification was canceled because its group was unbundled.
144 REASON_UNAUTOBUNDLED = 16;
145
146 // Notification was canceled by the user banning the channel.
147 REASON_CHANNEL_BANNED = 17;
148
149 // Notification was snoozed.
150 REASON_SNOOZED = 18;
151
152 // Notification was canceled due to timeout.
153 REASON_TIMEOUT = 19;
154 }
155
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700156 // Subtypes of camera events for ACTION_CAMERA_EVENT
157 enum CameraEvent {
158 // A back-facing camera was used
159 CAMERA_BACK_USED = 0;
160
161 // A front-facing camera was used
162 CAMERA_FRONT_USED = 1;
163
164 // An external camera was used
165 CAMERA_EXTERNAL_USED = 2;
166 }
167
Jan Althaus786a39d2017-09-15 10:41:16 +0200168 // TextClassifier entity types.
169 enum TextClassifierEntityType {
170 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
171 TEXT_CLASSIFIER_TYPE_OTHER = 2;
172 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
173 TEXT_CLASSIFIER_TYPE_PHONE = 4;
174 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
175 TEXT_CLASSIFIER_TYPE_URL = 6;
176 }
177
Jan Althausae5eb832017-11-06 12:31:59 +0100178 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
179 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500180 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100181 TEXT_SELECTION_INVOCATION_MANUAL = 1;
182 TEXT_SELECTION_INVOCATION_LINK = 2;
183 }
184
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100185 // Access method for hidden API events. Type of data tagged with
186 // FIELD_HIDDEN_API_ACCESS_METHOD.
187 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
188 enum HiddenApiAccessMethod {
189 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
190 ACCESS_METHOD_REFLECTION = 1;
191 ACCESS_METHOD_JNI = 2;
192 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
193 }
194
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700195 enum HardwareType {
196 HARDWARE_UNKNOWN = 0;
197 HARDWARE_MICROPHONE = 1;
198 HARDWARE_CODEC = 2;
199 HARDWARE_SPEAKER = 3;
200 HARDWARE_FINGERPRINT = 4;
201 }
202
203 enum HardwareFailureCode {
204 HARDWARE_FAILURE_UNKNOWN = 0;
205 HARDWARE_FAILURE_COMPLETE = 1;
206 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
207 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
208 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
209 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
210 }
211
Andrew Chantc03bc632018-05-18 10:52:00 -0700212 enum IoOperation {
213 IOOP_UNKNOWN = 0;
214 IOOP_READ = 1;
215 IOOP_WRITE = 2;
216 IOOP_UNMAP = 3;
217 IOOP_SYNC = 4;
218 }
219
Eyal Posenera9cf9c72018-12-18 16:23:54 +0200220 // Subtypes of notifications blocking helper view
221 // (NOTIFICATION_BLOCKING_HELPER).
222 enum NotificationBlockingHelper {
223 BLOCKING_HELPER_UNKNOWN = 0;
224 BLOCKING_HELPER_DISPLAY = 1;
225 BLOCKING_HELPER_DISMISS = 2;
226 // When the view of the notification blocking helper was triggered by
227 // system.
228 BLOCKING_HELPER_TRIGGERED_BY_SYSTEM = 3;
229 // "block" was clicked.
230 BLOCKING_HELPER_CLICK_BLOCKED = 4;
231 // "stay silent" was clicked.
232 BLOCKING_HELPER_CLICK_STAY_SILENT = 5;
233 // "alert me" was clicked.
234 BLOCKING_HELPER_CLICK_ALERT_ME = 6;
235 // "undo" was clicked (enables the user to undo "stop notification" action).
236 BLOCKING_HELPER_CLICK_UNDO = 7;
237 }
238
Gustav Sennton3757d852019-01-21 12:11:40 +0000239 // The (visual) location of a Notification.
240 enum NotificationLocation {
241 LOCATION_UNKNOWN = 0;
242 LOCATION_FIRST_HEADS_UP = 1; // visible heads-up
243 LOCATION_HIDDEN_TOP = 2; // hidden/scrolled away on the top
244 LOCATION_MAIN_AREA = 3; // visible in the shade
245 LOCATION_BOTTOM_STACK_PEEKING = 4; // in the bottom stack, and peeking
246 LOCATION_BOTTOM_STACK_HIDDEN = 5; // in the bottom stack, and hidden
247 LOCATION_GONE = 6; // the view isn't laid out at all
248 }
249
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -0500250 // Subtypes for profile logging
251 enum ActiveUserProfile {
252 PARENT_PROFILE = 1;
253 MANAGED_PROFILE = 2;
254 }
255
Chris Wren77781d32016-01-11 14:49:26 -0500256 // Known visual elements: views or controls.
257 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500258 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500259 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500262 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500263
264 // OPEN: Settings > Accessibility
265 // CATEGORY: SETTINGS
266 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500267 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500268
269 // OPEN: Settings > Accessibility > Captions
270 // CATEGORY: SETTINGS
271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500272 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500273
274 // OPEN: Settings > Accessibility > [Service]
275 // CATEGORY: SETTINGS
276 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500277 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Settings > Accessibility > Color correction
280 // CATEGORY: SETTINGS
281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500282 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Accessibility > Accessibility shortcut
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500288
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700289 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
290 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
291 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500292 // CATEGORY: SETTINGS
293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500294 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Settings > Accounts
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OPEN: Settings > Accounts > [Single Account Sync Settings]
302 // CATEGORY: SETTINGS
303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500304 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500305
306 // OPEN: Settings > Accounts > Add an account
307 // CATEGORY: SETTINGS
308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500309 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500310
311 // OPEN: Settings > Accounts > [List of accounts when more than one]
312 // CATEGORY: SETTINGS
313 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500314 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500315
316 // OPEN: Settings > Cellular network settings > APNs
317 // CATEGORY: SETTINGS
318 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500319 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500327 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500330 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500333 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500334
335 // OPEN: Settings > Apps > Configure apps > App links > [App]
336 // CATEGORY: SETTINGS
337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500338 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500339
340 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500341 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500342
343 // OPEN: Settings > Internal storage > Apps storage > [App]
344 // CATEGORY: SETTINGS
345 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500346 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500347
348 // OPEN: Settings > Apps > [App info]
349 // CATEGORY: SETTINGS
350 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500351 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500352
353 // OPEN: Settings > Memory > App usage > [App Memory usage]
354 // CATEGORY: SETTINGS
355 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500356 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500357
358 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500359 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500360
361 // OPEN: Settings > Memory > App usage
362 // CATEGORY: SETTINGS
363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500364 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500365
366 // OPEN: Settings > Bluetooth
367 // CATEGORY: SETTINGS
368 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500369 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500370
371 // OPEN: Choose Bluetooth device (ex: when sharing)
372 // CATEGORY: SETTINGS
373 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500374 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500375
376 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500377 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings > Security > Choose screen lock
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OPEN: Settings > Security > Choose screen lock > Choose your password
385 // CATEGORY: SETTINGS
386 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500387 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500388
389 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
390 // CATEGORY: SETTINGS
391 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500392 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500393
394 // OPEN: Settings > Security > Choose screen lock > Confirm your password
395 // CATEGORY: SETTINGS
396 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500397 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500398
399 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
400 // CATEGORY: SETTINGS
401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500402 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500403
404 // OPEN: Settings > Security > Encrypt phone
405 // CATEGORY: SETTINGS
406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500407 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500408
409 // OPEN: Settings > Security > Encrypt phone > Confirm
410 // CATEGORY: SETTINGS
411 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500412 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500413
414 // OPEN: Settings > Search results
415 // CATEGORY: SETTINGS
416 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500417 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500418
419 // OPEN: Settings (Root page)
420 // CATEGORY: SETTINGS
421 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500422 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500423
424 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500425 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OPEN: Settings > Data usage
428 // CATEGORY: SETTINGS
429 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500430 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500431
432 // OPEN: Settings > Date & time
433 // CATEGORY: SETTINGS
434 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500435 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500436
437 // OPEN: Settings > Developer options
438 // CATEGORY: SETTINGS
439 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500440 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500441
442 // OPEN: Settings > About phone
443 // CATEGORY: SETTINGS
444 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500445 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500446
447 // OPEN: Settings > About phone > Status > IMEI information
448 // CATEGORY: SETTINGS
449 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500450 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500451
452 // OPEN: Settings > Internal storage
453 // CATEGORY: SETTINGS
454 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500455 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500456
457 // OPEN: Settings > About phone > Status > SIM status
458 // CATEGORY: SETTINGS
459 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500460 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500461
462 // OPEN: Settings > About phone > Status
463 // CATEGORY: SETTINGS
464 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500465 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500466
467 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500468 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500469
470 // OPEN: Settings > Display
471 // CATEGORY: SETTINGS
472 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500473 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500474
475 // OPEN: Settings > Display > Daydream
476 // CATEGORY: SETTINGS
477 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500478 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500479
480 // OPEN: Settings > Security > Screen lock > Secure start-up
481 // CATEGORY: SETTINGS
482 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500483 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500484
485 // OPEN: Settings > Security > Nexus Imprint
486 // CATEGORY: SETTINGS
487 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500488 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500489
490 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500491 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Battery > History details
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OPEN: Settings > Battery > Battery saver
499 // CATEGORY: SETTINGS
500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500501 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500502
503 // OPEN: Settings > Battery > [App Use details]
504 // CATEGORY: SETTINGS
505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500506 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500507
508 // OPEN: Settings > Battery
509 // CATEGORY: SETTINGS
510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500511 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500512
513 // OPEN: Settings > Home
514 // CATEGORY: SETTINGS
515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500516 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500517
518 // OPEN: Settings > Security > SIM card lock settings
519 // CATEGORY: SETTINGS
520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500521 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500522
523 // OPEN: Settings > Language & input
524 // CATEGORY: SETTINGS
525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500526 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500527
528 // OPEN: Settings > Language & input > Physical keyboard
529 // CATEGORY: SETTINGS
530 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500531 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500532
533 // OPEN: Settings > Language & input > Spell checker
534 // CATEGORY: SETTINGS
535 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500536 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500537
538 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500539 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500540
541 // OPEN: Settings > Language & input > Personal dictionary
542 // CATEGORY: SETTINGS
543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500544 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500545
546 // OPEN: Settings > Language & input > Add word
547 // CATEGORY: SETTINGS
548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500549 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500550
551 // OPEN: Settings > Location
552 // CATEGORY: SETTINGS
553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500554 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500555
556 // OPEN: Settings > Location > Location mode
557 // CATEGORY: SETTINGS
558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500559 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings > Apps
562 // CATEGORY: SETTINGS
563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500564 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500565
566 // OPEN: Settings > Backup & reset > Factory data reset
567 // CATEGORY: SETTINGS
568 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500569 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500570
571 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
572 // CATEGORY: SETTINGS
573 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500574 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500575
576 // OPEN: Settings > Data usage > Network restrictions
577 // CATEGORY: SETTINGS
578 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500579 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500580
581 // OPEN: Settings > More > Android Beam
582 // CATEGORY: SETTINGS
583 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500584 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500585
586 // OPEN: Settings > Tap & pay
587 // CATEGORY: SETTINGS
588 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500589 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500590
591 // OPEN: Settings > Sound & notification
592 // CATEGORY: SETTINGS
593 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500594 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500595
596 // OPEN: Settings > Sound & notification > App notifications > [App]
597 // CATEGORY: SETTINGS
598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500599 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500600
601 // OPEN: Settings > Sound & notification > Other sounds
602 // CATEGORY: SETTINGS
603 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500604 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500607 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500608
609 // OPEN: Settings Widget > Notification log
610 // CATEGORY: SETTINGS
611 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500612 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500613
614 // OPEN: Settings > Sound & notification > Do not disturb
615 // CATEGORY: SETTINGS
616 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500617 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500618
619 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500620 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500621
622 // OPEN: Print job notification > Print job settings
623 // CATEGORY: SETTINGS
624 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500625 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500626
627 // OPEN: Settings > Printing > [Print Service]
628 // CATEGORY: SETTINGS
629 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500630 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500631
632 // OPEN: Settings > Printing
633 // CATEGORY: SETTINGS
634 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500635 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500636
637 // OPEN: Settings > Backup & reset
638 // CATEGORY: SETTINGS
639 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500640 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500641
642 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500643 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500644
645 // OPEN: Settings > Backup & reset > Network settings reset
646 // CATEGORY: SETTINGS
647 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500648 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500649
650 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
651 // CATEGORY: SETTINGS
652 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500653 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500654
655 // OPEN: Settings > Developer Options > Running Services
656 // CATEGORY: SETTINGS
657 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500658 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500659
660 // OPEN: Settings > Security > Screen pinning
661 // CATEGORY: SETTINGS
662 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500663 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500664
665 // OPEN: Settings > Security
666 // CATEGORY: SETTINGS
667 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500668 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500669
670 // OPEN: Settings > SIM cards
671 // CATEGORY: SETTINGS
672 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500673 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500674
675 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500676 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: Settings > More > Tethering & portable hotspot
679 // CATEGORY: SETTINGS
680 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500681 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500682
683 // OPEN: Settings > Security > Trust agents
684 // CATEGORY: SETTINGS
685 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500686 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500687
688 // OPEN: Settings > Security > Trusted credentials
689 // CATEGORY: SETTINGS
690 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500691 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500692
693 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
694 // CATEGORY: SETTINGS
695 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500696 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500697
698 // OPEN: Settings > Language & input > Text-to-speech output
699 // CATEGORY: SETTINGS
700 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500701 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500702
703 // OPEN: Settings > Security > Apps with usage access
704 // CATEGORY: SETTINGS
705 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500706 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500707
708 // OPEN: Settings > Users
709 // CATEGORY: SETTINGS
710 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500711 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500712
713 // OPEN: Settings > Users > [Restricted profile app & content access]
714 // CATEGORY: SETTINGS
715 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500716 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500717
718 // OPEN: Settings > Users > [User settings]
719 // CATEGORY: SETTINGS
720 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500721 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500722
723 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500724 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500725
726 // OPEN: Settings > More > VPN
727 // CATEGORY: SETTINGS
728 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500729 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500730
731 // OPEN: Settings > Display > Choose wallpaper from
732 // CATEGORY: SETTINGS
733 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500734 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500735
736 // OPEN: Settings > Display > Cast
737 // CATEGORY: SETTINGS
738 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500739 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500740
741 // OPEN: Settings > Wi-Fi
742 // CATEGORY: SETTINGS
743 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500744 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500745
746 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
747 // CATEGORY: SETTINGS
748 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500749 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500750
751 // OPEN: Settings > More > Wi-Fi Calling
752 // CATEGORY: SETTINGS
753 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500754 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: Settings > Wi-Fi > Saved networks
757 // CATEGORY: SETTINGS
758 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500759 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500762 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500763
764 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500765 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500766
767 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
768 // CATEGORY: SETTINGS
769 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500770 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: Settings > More
773 // CATEGORY: SETTINGS
774 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500775 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500776
777 // OPEN: Quick Settings Panel
778 // CATEGORY: QUICK_SETTINGS
779 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500780 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500781
782 // OPEN: QS Airplane mode tile shown
783 // ACTION: QS Airplane mode tile tapped
784 // SUBTYPE: 0 is off, 1 is on
785 // CATEGORY: QUICK_SETTINGS
786 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500787 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500788
789 // OPEN: QS Bluetooth tile shown
790 // ACTION: QS Bluetooth tile tapped
791 // SUBTYPE: 0 is off, 1 is on
792 // CATEGORY: QUICK_SETTINGS
793 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500794 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OPEN: QS Cast tile shown
797 // ACTION: QS Cast tile tapped
798 // CATEGORY: QUICK_SETTINGS
799 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500800 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // OPEN: QS Cellular tile shown
803 // ACTION: QS Cellular tile tapped
804 // CATEGORY: QUICK_SETTINGS
805 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500806 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500807
808 // OPEN: QS Color inversion tile shown
809 // ACTION: QS Color inversion tile tapped
810 // SUBTYPE: 0 is off, 1 is on
811 // CATEGORY: QUICK_SETTINGS
812 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500813 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500814
815 // OPEN: QS Cellular tile > Cellular detail panel
816 // CATEGORY: QUICK_SETTINGS
817 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500818 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500819
820 // OPEN: QS Do not disturb tile shown
821 // ACTION: QS Do not disturb tile tapped
822 // SUBTYPE: 0 is off, 1 is on
823 // CATEGORY: QUICK_SETTINGS
824 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500825 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500826
827 // OPEN: QS Flashlight tile shown
828 // ACTION: QS Flashlight tile tapped
829 // SUBTYPE: 0 is off, 1 is on
830 // CATEGORY: QUICK_SETTINGS
831 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500832 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500833
834 // OPEN: QS Hotspot tile shown
835 // ACTION: QS Hotspot tile tapped
836 // SUBTYPE: 0 is off, 1 is on
837 // CATEGORY: QUICK_SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: QS 3P tile shown
842 // ACTION: QS 3P tile tapped
843 // CATEGORY: QUICK_SETTINGS
844 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500845 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500846
847 // OPEN: QS Location tile shown
848 // ACTION: QS Location tile tapped
849 // SUBTYPE: 0 is off, 1 is on
850 // CATEGORY: QUICK_SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // OPEN: QS Rotation tile shown
855 // ACTION: QS Rotation tile tapped
856 // SUBTYPE: 0 is off, 1 is on
857 // CATEGORY: QUICK_SETTINGS
858 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500862 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // OPEN: QS User list panel
865 // CATEGORY: QUICK_SETTINGS
866 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500867 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // OPEN: QS WiFi tile shown
870 // ACTION: QS WiFi tile tapped
871 // SUBTYPE: 0 is off, 1 is on
872 // CATEGORY: QUICK_SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // OPEN: Notification Panel (including lockscreen)
877 // CATEGORY: NOTIFICATION
878 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500879 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500880
881 // OPEN: Notification in panel became visible.
882 // PACKAGE: App that posted the notification.
883 // ACTION: Notification is tapped.
884 // PACKAGE: App that posted the notification
885 // DETAIL: Notification is expanded by user.
886 // PACKAGE: App that posted the notification
Esteban Talaveraf9c53b62018-11-14 18:20:29 +0000887 // COLLAPSE: Notification is collapsed by user.
888 // PACKAGE: App that posted the notification
Chris Wren7c516842016-03-01 16:44:32 -0500889 // DISMISS: Notification is dismissed.
890 // PACKAGE: App that posted the notification
891 // SUBTYPE: Dismiss reason from NotificationManagerService.java
892 // CATEGORY: NOTIFICATION
893 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500894 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500895
896 // ACTION: User tapped notification action
897 // PACKAGE: App that posted the notification
898 // SUBTYPE: Index of action on notification
899 // CATEGORY: NOTIFICATION
900 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500901 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500902
903 // OPEN: Settings > Apps > Configure apps > App permissions
904 // CATEGORY: SETTINGS
905 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500906 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500907
908 // OPEN: Settings > Location > Scanning
909 // CATEGORY: SETTINGS
910 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500911 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500912
913 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500914 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500915
916 // OPEN: Settings > Sound & notification > App notifications
917 // CATEGORY: SETTINGS
918 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500919 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500920
921 // ACTION: Settings > Wi-Fi > Overflow > Add Network
922 // CATEGORY: SETTINGS
923 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500924 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700927 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500928 // CATEGORY: SETTINGS
929 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500930 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500931
932 // ACTION: Settings > Wi-Fi > Overflow > Refresh
933 // CATEGORY: SETTINGS
934 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500935 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500936
937 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
938 // CATEGORY: SETTINGS
939 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500940 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500941
942 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700943 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500944 // CATEGORY: SETTINGS
945 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500946 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500947
948 // ACTION: Settings > Wi-Fi > Toggle on
949 // CATEGORY: SETTINGS
950 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500951 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500952
953 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500954 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // OPEN: Settings > Sound & notification > DND > Priority only allows
957 // CATEGORY: SETTINGS
958 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500959 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500960
961 // OPEN: Settings > Sound & notification > DND > Automatic rules
962 // CATEGORY: SETTINGS
963 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500964 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500965
966 // OPEN: Settings > Apps > Configure apps > App links
967 // CATEGORY: SETTINGS
968 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500969 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500970
971 // OPEN: Settings > Sound & notification > DND > [Time based rule]
972 // CATEGORY: SETTINGS
973 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500974 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500975
976 // OPEN: Settings > Sound & notification > DND > [External rule]
977 // CATEGORY: SETTINGS
978 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500979 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500980
981 // OPEN: Settings > Sound & notification > DND > [Event rule]
982 // CATEGORY: SETTINGS
983 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500984 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500985
Howard Ro8b56f752018-08-07 15:44:25 -0700986 // ACTION: App notification settings > Block Notifications or long press on
987 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -0500988 // CATEGORY: SETTINGS
Howard Ro8b56f752018-08-07 15:44:25 -0700989 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -0500990 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // ACTION: Notification shade > Dismiss all button
993 // CATEGORY: NOTIFICATION
994 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500995 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500996
997 // OPEN: QS Do Not Disturb detail panel
998 // CATEGORY: QUICK_SETTINGS
999 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001000 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -05001001
1002 // OPEN: QS Bluetooth detail panel
1003 // CATEGORY: QUICK_SETTINGS
1004 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001005 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -05001006
1007 // OPEN: QS Cast detail panel
1008 // CATEGORY: QUICK_SETTINGS
1009 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001010 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -05001011
1012 // OPEN: QS Wi-Fi detail panel
1013 // CATEGORY: QUICK_SETTINGS
1014 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001015 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -05001016
1017 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
1018 // SUBTYPE: 0 is off, 1 is on
1019 // CATEGORY: QUICK_SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
1024 // SUBTYPE: 0 is off, 1 is on
1025 // CATEGORY: QUICK_SETTINGS
1026 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001027 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: QS Cellular detail panel > Cellular toggle
1030 // SUBTYPE: 0 is off, 1 is on
1031 // CATEGORY: QUICK_SETTINGS
1032 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001033 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -05001034
1035 // ACTION: QS User list panel > Select different user
1036 // CATEGORY: QUICK_SETTINGS
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // ACTION: QS Cast detail panel > Select cast device
1041 // CATEGORY: QUICK_SETTINGS
1042 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001043 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001044
1045 // ACTION: QS Cast detail panel > Disconnect cast device
1046 // CATEGORY: QUICK_SETTINGS
1047 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001048 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // ACTION: Settings > Bluetooth > Toggle
1051 // SUBTYPE: 0 is off, 1 is on
1052 // CATEGORY: SETTINGS
1053 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001054 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // ACTION: Settings > Bluetooth > Overflow > Refresh
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001064 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001065
1066 // ACTION: Settings > Bluetooth > Overflow > Show received files
1067 // CATEGORY: SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // ACTION: QS DND details panel > Increase / Decrease exit time
1072 // SUBTYPE: true is increase, false is decrease
1073 // CATEGORY: QUICK_SETTINGS
1074 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001075 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001076
1077 // ACTION: QS DND details panel > [Exit condition]
1078 // CATEGORY: QUICK_SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: QS DND details panel > [DND mode]
1083 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1084 // CATEGORY: QUICK_SETTINGS
1085 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001086 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001087
1088 // ACTION: QS DND detail panel > DND toggle
1089 // SUBTYPE: 0 is off, 1 is on
1090 // CATEGORY: QUICK_SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // ACTION: DND Settings > Priority only allows > Reminder toggle
1095 // SUBTYPE: 0 is off, 1 is on
1096 // CATEGORY: SETTINGS
1097 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001098 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001099
1100 // ACTION: DND Settings > Priority only allows > Event toggle
1101 // SUBTYPE: 0 is off, 1 is on
1102 // CATEGORY: SETTINGS
1103 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001104 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001105
1106 // ACTION: DND Settings > Priority only allows > Messages
1107 // SUBTYPE: 0 is off, 1 is on
1108 // CATEGORY: SETTINGS
1109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: DND Settings > Priority only allows > Calls
1113 // SUBTYPE: 0 is off, 1 is on
1114 // CATEGORY: SETTINGS
1115 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001116 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001117
1118 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1119 // SUBTYPE: 0 is off, 1 is on
1120 // CATEGORY: SETTINGS
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // ACTION: DND Settings > Automatic rules > Add rule
1125 // CATEGORY: SETTINGS
1126 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001127 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001128
1129 // ACTION: DND Settings > Automatic rules > Add rule > OK
1130 // CATEGORY: SETTINGS
1131 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001132 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001133
1134 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1135 // CATEGORY: SETTINGS
1136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001137 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001138
1139 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1140 // CATEGORY: SETTINGS
1141 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001142 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1145 // SUBTYPE: 0 is off, 1 is on
1146 // CATEGORY: SETTINGS
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // ACTION: Settings > More > Airplane mode toggle
1151 // SUBTYPE: 0 is off, 1 is on
1152 // CATEGORY: SETTINGS
1153 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001154 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // ACTION: Settings > Data usage > Cellular data toggle
1157 // SUBTYPE: 0 is off, 1 is on
1158 // CATEGORY: SETTINGS
1159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // OPEN: Settings > Sound & notification > Notification access
1163 // CATEGORY: SETTINGS
1164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001165 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // OPEN: Settings > Sound & notification > Do Not Disturb access
1168 // CATEGORY: SETTINGS
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // OPEN: Settings > Apps > Configure apps > Default Apps
1173 // CATEGORY: SETTINGS
1174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001175 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // OPEN: Settings > Internal storage > Apps storage
1178 // CATEGORY: SETTINGS
1179 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001180 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001181
1182 // OPEN: Settings > Security > Usage access
1183 // CATEGORY: SETTINGS
1184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001185 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // OPEN: Settings > Battery > Battery optimization
1188 // CATEGORY: SETTINGS
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001193 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001194
1195 // ACTION: Lockscreen > Unlock gesture
1196 // CATEGORY: GLOBAL_SYSTEM_UI
1197 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001198 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // ACTION: Lockscreen > Pull shade open
1201 // CATEGORY: GLOBAL_SYSTEM_UI
1202 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001203 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // ACTION: Lockscreen > Tap on lock, shows hint
1206 // CATEGORY: GLOBAL_SYSTEM_UI
1207 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001208 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // ACTION: Lockscreen > Camera
1211 // CATEGORY: GLOBAL_SYSTEM_UI
1212 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001213 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001214
1215 // ACTION: Lockscreen > Dialer
1216 // CATEGORY: GLOBAL_SYSTEM_UI
1217 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001218 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // ACTION: Lockscreen > Tap on lock, locks phone
1221 // CATEGORY: GLOBAL_SYSTEM_UI
1222 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001223 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Lockscreen > Tap on notification, false touch rejection
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // ACTION: Lockscreen > Swipe down to open quick settings
1231 // CATEGORY: GLOBAL_SYSTEM_UI
1232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001233 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // ACTION: Swipe down to open quick settings when unlocked
1236 // CATEGORY: GLOBAL_SYSTEM_UI
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Notification shade > Tap to open quick settings
1241 // CATEGORY: GLOBAL_SYSTEM_UI
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // OPEN: Lockscreen
1246 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1247 // CATEGORY: GLOBAL_SYSTEM_UI
1248 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001249 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001250
1251 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1252 // CATEGORY: GLOBAL_SYSTEM_UI
1253 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001254 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001255
1256 // OPEN: Screen turned on
1257 // SUBTYPE: 2 is user action
1258 // CATEGORY: GLOBAL_SYSTEM_UI
1259 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001260 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001261
1262 // OPEN: Notification caused sound, vibration, and/or LED blink
1263 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1264 // CATEGORY: NOTIFICATION
1265 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001266 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001267
1268 // ACTION: Lockscreen > Emergency Call button
1269 // CATEGORY: GLOBAL_SYSTEM_UI
1270 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001271 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001272
1273 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1274 // CATEGORY: SETTINGS
1275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001276 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001277
1278 // OPEN: Settings > Memory
1279 // CATEGORY: SETTINGS
1280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001281 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001282
1283 // ACTION: Settings > Display > When device is rotated
1284 // CATEGORY: SETTINGS
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001287
1288 // ACTION: Long press on notification to view controls
1289 // CATEGORY: NOTIFICATION
1290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001291 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001292
1293 // ACTION: Notificatoin controls > Info button
1294 // CATEGORY: NOTIFICATION
1295 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001296 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001297
1298 // ACTION: Notification controls > Settings button
1299 // CATEGORY: NOTIFICATION
1300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001301 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // OPEN: Volume Dialog (with hardware buttons)
1304 // CATEGORY: GLOBAL_SYSTEM_UI
1305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001306 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001307
1308 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1309 // CATEGORY: GLOBAL_SYSTEM_UI
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // ACTION: Volume dialog > Adjust volume slider
1314 // SUBTYPE: volume level (0-7)
1315 // CATEGORY: GLOBAL_SYSTEM_UI
1316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001317 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001318
1319 // ACTION: Volume dialog > Select non-active stream
1320 // SUBTYPE: stream (defined in AudioSystem.java)
1321 // CATEGORY: GLOBAL_SYSTEM_UI
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // ACTION: Adjust volume with hardware key
1326 // SUBTYPE: volume level (0-7)
1327 // CATEGORY: GLOBAL_SYSTEM_UI
1328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001329 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001330
1331 // ACTION: Volume dialog > Mute a stream by tapping icon
1332 // SUBTYPE: mute is 1, audible is 2
1333 // CATEGORY: GLOBAL_SYSTEM_UI
1334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001335 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001336
1337 // ACTION: Volume dialog > Change ringer mode by tapping icon
1338 // SUBTYPE: 2 is audible, 3 is vibrate
1339 // CATEGORY: GLOBAL_SYSTEM_UI
1340 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001341 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001342
1343 // ACTION: Chooser shown (share target, file open, etc.)
1344 // CATEGORY: GLOBAL_SYSTEM_UI
1345 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001346 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001347
1348 // ACTION: Chooser > User taps an app target
1349 // SUBTYPE: Index of target
1350 // CATEGORY: GLOBAL_SYSTEM_UI
1351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001352 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // ACTION: Chooser > User taps a service target
1355 // SUBTYPE: Index of target
1356 // CATEGORY: GLOBAL_SYSTEM_UI
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // ACTION: Chooser > User taps a standard target
1361 // SUBTYPE: Index of target
1362 // CATEGORY: GLOBAL_SYSTEM_UI
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // ACTION: QS Brightness Slider (with auto brightness disabled)
1367 // SUBTYPE: slider value
1368 // CATEGORY: QUICK_SETTINGS
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // ACTION: QS Brightness Slider (with auto brightness enabled)
1373 // SUBTYPE: slider value
1374 // CATEGORY: QUICK_SETTINGS
1375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001376 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // OPEN: Settings > Display > Brightness Slider
1379 // CATEGORY: SETTINGS
1380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001381 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001382
Christine Franks47175c32017-03-14 10:21:25 -07001383 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001384 // CATEGORY: SETTINGS
1385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001386 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001387
1388 // OPEN: Display has entered dream mode
1389 // CATEGORY: GLOBAL_SYSTEM_UI
1390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001391 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001392
1393 // OPEN: Display has entered ambient notification mode
1394 // CATEGORY: GLOBAL_SYSTEM_UI
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: Overview
1399 // CATEGORY: GLOBAL_SYSTEM_UI
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // OPEN: Settings > About phone > Legal information
1404 // CATEGORY: SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Settings > Search > Perform search
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // OPEN: Settings > System UI Tuner
1414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Settings > System UI Tuner > Quick Settings
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Settings > System UI Tuner > Demo mode
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1429 // PACKAGE: Tile
1430 // CATEGORY: SETTINGS
1431 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001432 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001433
1434 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1435 // PACKAGE: Tile
1436 // CATEGORY: SETTINGS
1437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001438 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001439
1440 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1441 // PACKAGE: Tile
1442 // CATEGORY: SETTINGS
1443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001444 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001445
1446 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1447 // PACKAGE: Icon
1448 // CATEGORY: SETTINGS
1449 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001450 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001451
1452 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1453 // PACKAGE: Icon
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1459 // SUBTYPE: false is disabled, true is enabled
1460 // CATEGORY: SETTINGS
1461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001462 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001463
1464 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1465 // SUBTYPE: false is disabled, true is enabled
1466 // CATEGORY: SETTINGS
1467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001468 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001469
1470 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1471 // SUBTYPE: 0 is disabled, 1 is enabled
1472 // CATEGORY: SETTINGS
1473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001474 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001475
1476 // OPEN: Settings > Developer options > Inactive apps
1477 // CATEGORY: SETTINGS
1478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001479 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001480
1481 // ACTION: Long press home to bring up assistant
1482 // CATEGORY: GLOBAL_SYSTEM_UI
1483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001484 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001485
1486 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1487 // CATEGORY: SETTINGS
1488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001489 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001490
1491 // OPEN: Fingerprint Enroll > Find Sensor
1492 // CATEGORY: SETTINGS
1493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001494 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001495
1496 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1497 // CATEGORY: SETTINGS
1498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001499 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001500
1501 // OPEN: Fingerprint Enroll introduction
1502 // CATEGORY: SETTINGS
1503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001504 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001505
1506 // OPEN: Fingerprint Enroll onboarding
1507 // CATEGORY: SETTINGS
1508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001509 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001510
1511 // OPEN: Fingerprint Enroll > Let's Start!
1512 // CATEGORY: SETTINGS
1513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001514 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001515
1516 // OPEN: Fingerprint Enroll SUW > Let's Start!
1517 // CATEGORY: SETTINGS
1518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001519 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001520
1521 // OPEN: Fingerprint Enroll SUW > Find Sensor
1522 // CATEGORY: SETTINGS
1523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001524 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001525
1526 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1527 // CATEGORY: SETTINGS
1528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001529 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001530
1531 // OPEN: Fingerprint Enroll SUW introduction
1532 // CATEGORY: SETTINGS
1533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001534 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001535
1536 // OPEN: Fingerprint Enroll SUW onboarding
1537 // CATEGORY: SETTINGS
1538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001539 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001540
1541 // ACTION: Add fingerprint > Enroll fingerprint
1542 // CATEGORY: SETTINGS
1543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001544 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001545
1546 // ACTION: Authenticate using fingerprint
1547 // CATEGORY: SETTINGS
1548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001549 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001550
1551 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1552 // CATEGORY: SETTINGS
1553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001554 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001555
1556 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1557 // CATEGORY: SETTINGS
1558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001559 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001560
1561 // ACTION: Double tap camera shortcut
1562 // CATEGORY: GLOBAL_SYSTEM_UI
1563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001564 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001565
1566 // ACTION: Double twist camera shortcut
1567 // CATEGORY: GLOBAL_SYSTEM_UI
1568 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001569 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001570
1571 // OPEN: QS Work Mode tile shown
1572 // ACTION: QS Work Mode tile tapped
1573 // SUBTYPE: 0 is off, 1 is on
1574 // CATEGORY: QUICK_SETTINGS
1575 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001576 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001577
1578 // OPEN: Settings > Developer Options > Background Check
1579 // CATEGORY: SETTINGS
1580 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001581 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001582
1583 // OPEN: QS Lock tile shown
1584 // ACTION: QS Lock tile tapped
1585 // SUBTYPE: 0 is off, 1 is on
1586 // CATEGORY: QUICK_SETTINGS
1587 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001588 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001589
1590 // OPEN: QS User Tile shown
1591 // CATEGORY: QUICK_SETTINGS
1592 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001593 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001594
1595 // OPEN: QS Battery tile shown
1596 // CATEGORY: QUICK_SETTINGS
1597 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001598 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001599
1600 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1601 // CATEGORY: SETTINGS
1602 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001603 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001604
1605 // ACTION: Visual interruptions > No screen interuptions toggle
1606 // SUBTYPE: 0 is off, 1 is on
1607 // CATEGORY: SETTINGS
1608 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001609 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001610
1611 // ACTION: Visual interruptions > No notification light toggle
1612 // SUBTYPE: 0 is off, 1 is on
1613 // CATEGORY: SETTINGS
1614 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001615 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001616
Julia Reynolds005c8b92017-08-24 10:35:53 -04001617 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001618 // CATEGORY: SETTINGS
1619 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001620 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001621
1622 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1623 // PACKAGE: Selected SMS app
1624 // CATEGORY: SETTINGS
1625 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001626 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001627
1628 // OPEN: QS Color modification tile shown
1629 // ACTION: QS Color modification tile tapped
1630 // SUBTYPE: 0 is off, 1 is on
1631 // CATEGORY: QUICK_SETTINGS
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001634
1635 // OPEN: QS Custom tile shown
1636 // ACTION: QS Work Mode tile tapped
1637 // CATEGORY: QUICK_SETTINGS
1638 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001639 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001640
1641 // ACTION: Visual interruptions > Never turn off the screen toggle
1642 // SUBTYPE: 0 is off, 1 is on
1643 // CATEGORY: SETTINGS
1644 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001645 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001646
Chris Wren7c516842016-03-01 16:44:32 -05001647 // ACTION: Overview > Long-press task, drag to enter split-screen
1648 // CATEGORY: GLOBAL_SYSTEM_UI
1649 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001650 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1651
Chris Wren7c516842016-03-01 16:44:32 -05001652 // ACTION: In App > Long-press Overview button to enter split-screen
1653 // CATEGORY: GLOBAL_SYSTEM_UI
1654 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001655 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1656
Chris Wren7c516842016-03-01 16:44:32 -05001657 // ACTION: In App > Swipe Overview button to enter split-screen
1658 // CATEGORY: GLOBAL_SYSTEM_UI
1659 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001660 ACTION_WINDOW_DOCK_SWIPE = 272;
1661
Chris Wren7c516842016-03-01 16:44:32 -05001662 // ACTION: Launch profile-specific app > Confirm credentials
1663 // CATEGORY: GLOBAL_SYSTEM_UI
1664 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001665 PROFILE_CHALLENGE = 273;
1666
Chris Wren7c516842016-03-01 16:44:32 -05001667 // OPEN: QS Battery detail panel
1668 // CATEGORY: GLOBAL_SYSTEM_UI
1669 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001670 QS_BATTERY_DETAIL = 274;
1671
Chris Wren7c516842016-03-01 16:44:32 -05001672 // OPEN: Overview > History
1673 // CATEGORY: GLOBAL_SYSTEM_UI
1674 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001675 OVERVIEW_HISTORY = 275;
1676
Chris Wren7c516842016-03-01 16:44:32 -05001677 // ACTION: Overview > Page by tapping Overview button
1678 // CATEGORY: GLOBAL_SYSTEM_UI
1679 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001680 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001681
Chris Wren7c516842016-03-01 16:44:32 -05001682 // ACTION: Overview > Select app
1683 // CATEGORY: GLOBAL_SYSTEM_UI
1684 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001685 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001686
Chris Wren7c516842016-03-01 16:44:32 -05001687 // ACTION: View emergency info
1688 // CATEGORY: GLOBAL_SYSTEM_UI
1689 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001690 ACTION_VIEW_EMERGENCY_INFO = 278;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: Edit emergency info activity
1693 // CATEGORY: SETTINGS
1694 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001695 ACTION_EDIT_EMERGENCY_INFO = 279;
1696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // ACTION: Edit emergency info field
1698 // CATEGORY: SETTINGS
1699 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001700 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: Add emergency contact
1703 // CATEGORY: SETTINGS
1704 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001705 ACTION_ADD_EMERGENCY_CONTACT = 281;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: Delete emergency contact
1708 // CATEGORY: SETTINGS
1709 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001710 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: Call emergency contact
1713 // CATEGORY: SETTINGS
1714 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001715 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001716
Chris Wren7c516842016-03-01 16:44:32 -05001717 // OPEN: QS Data Saver tile shown
1718 // ACTION: QS Data Saver tile tapped
1719 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001720 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001721
Robin Lee8c1306e2016-02-01 11:37:02 +00001722 // OPEN: Settings > Security > User credentials
1723 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001724 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001725 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1728 // CATEGORY: GLOBAL_SYSTEM_UI
1729 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001730 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001731
1732 // Logged when the user scrolls through overview manually
1733 OVERVIEW_SCROLL = 287;
1734
1735 // Logged when the overview times out automatically selecting an app
1736 OVERVIEW_SELECT_TIMEOUT = 288;
1737
1738 // Logged when a user dismisses a task in overview
1739 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001740
1741 // Logged when the user modifying the notification importance slider.
1742 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1743
1744 // Logged when the user saves a modification to notification importance. Negative numbers
1745 // indicate the user lowered the importance; positive means they increased it.
1746 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001747
Chris Wren7c516842016-03-01 16:44:32 -05001748 // ACTION: Long-press power button, then tap "Take bug report" option.
1749 // CATEGORY: GLOBAL_SYSTEM_UI
1750 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001751 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1752
Chris Wren7c516842016-03-01 16:44:32 -05001753 // ACTION: Long-press power button, then long-press "Take bug report" option.
1754 // CATEGORY: GLOBAL_SYSTEM_UI
1755 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001756 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1757
Chris Wren7c516842016-03-01 16:44:32 -05001758 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1759 // CATEGORY: SETTINGS
1760 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001761 // Interactive bug report initiated from Settings.
1762 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1763
Chris Wren7c516842016-03-01 16:44:32 -05001764 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1765 // CATEGORY: SETTINGS
1766 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001767 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001768 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1769
Chris Wren7c516842016-03-01 16:44:32 -05001770 // ACTION: User tapped notification action to cancel a bug report
1771 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001772 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001773 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1774
Chris Wren7c516842016-03-01 16:44:32 -05001775 // ACTION: User tapped notification action to launch bug report details screen
1776 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001777 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001778 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1779
Chris Wren7c516842016-03-01 16:44:32 -05001780 // ACTION: User tapped notification action to take adition screenshot on bug report
1781 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001782 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001783 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1784
Chris Wren7c516842016-03-01 16:44:32 -05001785 // ACTION: User tapped notification to share bug report
1786 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001787 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001788 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1789
Chris Wren7c516842016-03-01 16:44:32 -05001790 // ACTION: User changed bug report name using the details screen
1791 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001792 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001793 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1794
Chris Wren7c516842016-03-01 16:44:32 -05001795 // ACTION: User changed bug report title using the details screen
1796 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001797 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001798 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1799
Chris Wren7c516842016-03-01 16:44:32 -05001800 // ACTION: User changed bug report description using the details screen
1801 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001802 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001803 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1804
Chris Wren7c516842016-03-01 16:44:32 -05001805 // ACTION: User tapped Save in the bug report details screen.
1806 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001807 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001808 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1809
Chris Wren7c516842016-03-01 16:44:32 -05001810 // ACTION: User tapped Cancel in the bug report details screen.
1811 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001812 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001813 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001814
1815 // Tuner: Open/close calibrate dialog.
1816 TUNER_CALIBRATE_DISPLAY = 305;
1817
1818 // Tuner: Open/close color and appearance.
1819 TUNER_COLOR_AND_APPEARANCE = 306;
1820
1821 // Tuner: Apply calibrate dialog.
1822 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1823
1824 // Tuner: Open/close night mode.
1825 TUNER_NIGHT_MODE = 308;
1826
1827 // Tuner: Change night mode.
1828 ACTION_TUNER_NIGHT_MODE = 309;
1829
1830 // Tuner: Change night mode auto.
1831 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1832
1833 // Tuner: Change night mode adjust dark theme.
1834 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1835
1836 // Tuner: Change night mode adjust tint.
1837 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1838
1839 // Tuner: Change night mode adjust brightness.
1840 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1841
1842 // Tuner: Change do not disturb in volume panel.
1843 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1844
1845 // Tuner: Change do not disturb volume buttons shortcut.
1846 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001847
1848 // Logs the action the user takes when an app crashed.
1849 ACTION_APP_CRASH = 316;
1850
1851 // Logs the action the user takes when an app ANR'd.
1852 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001853
1854 // Logged when a user double taps the overview button to launch the previous task
1855 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001856
1857 // Logged when we execute an app transition. This indicates the total delay from startActivity
1858 // until the app transition is starting to animate, in milliseconds.
1859 APP_TRANSITION_DELAY_MS = 319;
1860
1861 // Logged when we execute an app transition. This indicates the reason why the transition
1862 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1863 APP_TRANSITION_REASON = 320;
1864
1865 // Logged when we execute an app transition and we drew a starting window. This indicates the
1866 // delay from startActivity until the starting window was drawn.
1867 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1868
1869 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1870 // the delay from startActivity until all windows have been drawn.
1871 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1872
1873 // Logged when we execute an app transition. This indicates the component name of the current
1874 // transition.
1875 APP_TRANSITION_COMPONENT_NAME = 323;
1876
1877 // Logged when we execute an app transition. This indicates whether the process was already
1878 // running.
1879 APP_TRANSITION_PROCESS_RUNNING = 324;
1880
1881 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1882 // the transition was executed.
1883 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001884
Chris Wren38f98812016-07-13 14:28:40 -04001885 // ACTION: app requested access to a scoped directory, user granted it.
1886 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1887 // CATEGORY: GLOBAL_SYSTEM_UI
1888 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001889 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1890
Chris Wren38f98812016-07-13 14:28:40 -04001891 // ACTION: app requested access to a scoped directory, user denied it.
1892 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1893 // CATEGORY: GLOBAL_SYSTEM_UI
1894 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001895 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1896
Chris Wren38f98812016-07-13 14:28:40 -04001897 // ACTION: app requested access to a scoped directory, user granted it.
1898 // PACKAGE: app that requested access
1899 // CATEGORY: GLOBAL_SYSTEM_UI
1900 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001901 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1902
Chris Wren38f98812016-07-13 14:28:40 -04001903 // ACTION: app requested access to a scoped directory, user denied it.
1904 // PACKAGE: app that requested access.
1905 // CATEGORY: GLOBAL_SYSTEM_UI
1906 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001907 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1908
Chris Wren38f98812016-07-13 14:28:40 -04001909 // ACTION: app requested access to a directory user has already been granted
1910 // access before.
1911 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1912 // CATEGORY: GLOBAL_SYSTEM_UI
1913 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001914 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1915
Chris Wren38f98812016-07-13 14:28:40 -04001916 // ACTION: app requested access to a directory user has already been granted
1917 // access before.
1918 // PACKAGE: app that requested access.
1919 // CATEGORY: GLOBAL_SYSTEM_UI
1920 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001921 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001922
Chris Wren38f98812016-07-13 14:28:40 -04001923 // ACTION: Logged when the user slides a notification and reveals the gear
1924 // beneath it.
1925 // CATEGORY: NOTIFICATION
1926 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001927 ACTION_REVEAL_GEAR = 332;
1928
Chris Wren38f98812016-07-13 14:28:40 -04001929 // ACTION: Logged when the user taps on the gear beneath a notification.
1930 // CATEGORY: NOTIFICATION
1931 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001932 ACTION_TOUCH_GEAR = 333;
1933
Ruben Brunke24b9a62016-02-16 21:38:24 -08001934 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001935 // CATEGORY: SETTINGS
1936 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001937 VR_MANAGE_LISTENERS = 334;
1938
Jason Monk6f5354d2016-03-08 14:18:08 -05001939 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001940 // CATEGORY: SETTINGS
1941 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001942 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001943
Jason Monk6f5354d2016-03-08 14:18:08 -05001944 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001945 // CATEGORY: SETTINGS
1946 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001947 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001948
Jason Monk6f5354d2016-03-08 14:18:08 -05001949 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001950 // CATEGORY: SETTINGS
1951 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001952 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001953
Jason Monk6f5354d2016-03-08 14:18:08 -05001954 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001955 // CATEGORY: SETTINGS
1956 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001957 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001958
Jason Monk6f5354d2016-03-08 14:18:08 -05001959 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001960 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001961 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001962
Jason Monk6f5354d2016-03-08 14:18:08 -05001963 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001964 // CATEGORY: SETTINGS
1965 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001966 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001967
Jason Monk6f5354d2016-03-08 14:18:08 -05001968 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001969 // CATEGORY: SETTINGS
1970 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001971 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001972
Jason Monk6f5354d2016-03-08 14:18:08 -05001973 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001974 // CATEGORY: SETTINGS
1975 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001976 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001977
Jason Monk6f5354d2016-03-08 14:18:08 -05001978 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001979 // CATEGORY: SETTINGS
1980 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001981 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001982
Jason Monk6f5354d2016-03-08 14:18:08 -05001983 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001984 // CATEGORY: SETTINGS
1985 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001986 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001987
Jason Monk6f5354d2016-03-08 14:18:08 -05001988 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001989 // CATEGORY: SETTINGS
1990 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001991 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001992
Jason Monk6f5354d2016-03-08 14:18:08 -05001993 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001994 // CATEGORY: SETTINGS
1995 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001996 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001997
Jason Monk6f5354d2016-03-08 14:18:08 -05001998 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001999 // CATEGORY: SETTINGS
2000 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002001 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04002002
Jason Monk6f5354d2016-03-08 14:18:08 -05002003 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04002004 // CATEGORY: SETTINGS
2005 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002006 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04002007
Jason Monk6f5354d2016-03-08 14:18:08 -05002008 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04002009 // CATEGORY: SETTINGS
2010 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002011 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
2012
2013 // Used for generic logging of Settings Preference Persistence, should not be used
2014 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04002015 // CATEGORY: SETTINGS
2016 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05002017 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04002018
Jason Monk6f5354d2016-03-08 14:18:08 -05002019 // Settings -> Apps -> Gear -> Special access
2020 SPECIAL_ACCESS = 351;
2021
Muyuan Lia2129992016-03-03 18:30:39 -08002022 // Logs that the user docks window via shortcut key.
2023 WINDOW_DOCK_SHORTCUTS = 352;
2024
Felipe Lemeadccb992016-03-09 17:40:49 -08002025 // User already denied access to the request folder; action takes an integer
2026 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002027 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002028 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
2029
2030 // User already denied access to the request folder; action pass package name
2031 // of calling package.
2032 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
2033
2034 // User denied access to the request folder and checked 'Do not ask again';
2035 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002036 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002037 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
2038
2039 // User denied access to the request folder and checked 'Do not ask again';
2040 // action pass package name of calling package.
2041 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2042
Winson3b6ba1a2016-03-22 15:37:54 -07002043 // Logged when a user dismisses all task in overview
2044 OVERVIEW_DISMISS_ALL = 357;
2045
Jason Monk96defbe2016-03-29 16:51:03 -04002046 // Quick Settings -> Edit
2047 QS_EDIT = 358;
2048
2049 // Quick Settings -> Edit -> Overflow -> Reset
2050 ACTION_QS_EDIT_RESET = 359;
2051
2052 // QS -> Edit - Drag a tile out of the active tiles.
2053 // The _SPEC contains either the spec of the tile or
2054 // the package of the 3rd party app in the PKG field.
2055 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2056 ACTION_QS_EDIT_REMOVE = 361;
2057
2058 // QS -> Edit - Drag a tile into the active tiles.
2059 // The _SPEC contains either the spec of the tile or
2060 // the package of the 3rd party app in the PKG field.
2061 ACTION_QS_EDIT_ADD_SPEC = 362;
2062 ACTION_QS_EDIT_ADD = 363;
2063
2064 // QS -> Edit - Drag a tile within the active tiles.
2065 // The _SPEC contains either the spec of the tile or
2066 // the package of the 3rd party app in the PKG field.
2067 ACTION_QS_EDIT_MOVE_SPEC = 364;
2068 ACTION_QS_EDIT_MOVE = 365;
2069
2070 // Long-press on a QS tile. Tile spec in package field.
2071 ACTION_QS_LONG_PRESS = 366;
2072
Anna Galuszadad131f2016-03-22 13:49:02 -07002073 // OPEN: SUW Welcome Screen -> Vision Settings
2074 // CATEGORY: SETTINGS
2075 // OS: N
2076 SUW_ACCESSIBILITY = 367;
2077
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002078 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2079 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2080 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002081 // ACTION: New magnification gesture configuration is chosen
2082 // SUBTYPE: 0 is off, 1 is on
2083 // CATEGORY: SETTINGS
2084 // OS: N
2085 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2086
2087 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2088 // ACTION: New font size is chosen
2089 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2090 // CATEGORY: SETTINGS
2091 // OS: N
2092 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2093
2094 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2095 // ACTION: New display size is chosen
2096 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2097 // CATEGORY: SETTINGS
2098 // OS: N
2099 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2100
2101 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2102 // ACTION: New screen reader configuration is chosen
2103 // SUBTYPE: 0 is off, 1 is on
2104 // CATEGORY: SETTINGS
2105 // OS: N
2106 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2107
Jason Monkc3620392016-03-30 15:46:03 -04002108 // ------- Begin N Settings conditionals -----
2109 // Conditionals are the green bars at the top of the settings dashboard
2110 // All conditionals will have visible/hide events onResume/onPause
2111 // but they will also be used as extra ints in the
2112 // dismiss/expand/collapse/click/button events
2113
2114 // swipe away conditional
2115 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2116
2117 // click on collapsed conditional or clicks expand button
2118 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2119
2120 // click collapse button on expanded conditional
2121 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2122
2123 // click main area of expanded conditional
2124 ACTION_SETTINGS_CONDITION_CLICK = 375;
2125
2126 // click a direct button on expanded conditional
2127 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2128
2129 // Airplane mode on
2130 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2131 // AKA Data saver on
2132 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2133 // Battery saver on
2134 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2135 // Cellular data off
2136 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2137 // Do not disturb on
2138 SETTINGS_CONDITION_DND = 381;
2139 // Hotspot on
2140 SETTINGS_CONDITION_HOTSPOT = 382;
2141 // Work profile off
2142 SETTINGS_CONDITION_WORK_MODE = 383;
2143
Jason Monk1b5d87b2016-03-30 16:03:15 -04002144 // ------- Begin N Settings suggestions -----
2145 // Since suggestions come from system apps, suggestions will
2146 // have generic constants and the package providing the suggestion
2147 // will be put in the package field. For suggestions in the Settings
2148 // package, the class name will be filled in instead (since settings
2149 // provides several suggetions).
2150
2151 // Settings shown/hidden on main settings dashboard.
2152 // These are actually visibility events, but visible/hidden doesn't
2153 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002154 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2155 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002156
2157 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002158 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002159
2160 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002161 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002162
Jason Monk397df682016-03-28 15:48:34 -04002163 // Settings > Apps > Gear > Special Access > Premium SMS access
2164 PREMIUM_SMS_ACCESS = 388;
2165
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002166 // Logged when the user resizes the docked stack. Arguments:
2167 // 0: Split 50:50
2168 // 1: Docked smaller
2169 // 2: Docked larger
2170 ACTION_WINDOW_DOCK_RESIZE = 389;
2171
2172 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2173 // 0: Docked gets maximized
2174 // 1: Fullscreen gets maximized
2175 ACTION_WINDOW_UNDOCK_MAX = 390;
2176
2177 // User tried to dock an unresizable app.
2178 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2179
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002180 // System UI Tuner > Other > Power notification controls
2181 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2182
2183 // System UI Tuner > Other > Power notification controls > Toggle on/off
2184 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2185
Chris Wren38f98812016-07-13 14:28:40 -04002186 // Action: user enable / disabled data saver using Settings
2187 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2188 // VALUE: 1 for enabled, 0 for disabled
2189 // CATEGORY: SETTINGS
2190 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002191 ACTION_DATA_SAVER_MODE = 394;
2192
Chris Wren38f98812016-07-13 14:28:40 -04002193 // User whitelisted an app for Data Saver mode; action pass package name of app
2194 // Action: user enable / disabled data saver using Settings
2195 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2196 // or
2197 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2198 // VALUE: package name of APP
2199 // CATEGORY: SETTINGS
2200 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002201 ACTION_DATA_SAVER_WHITELIST = 395;
2202
Chris Wren38f98812016-07-13 14:28:40 -04002203 // User blacklisted an app for Data Saver mode; action pass package name of app
2204 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2205 // VALUE: package name of APP
2206 // CATEGORY: SETTINGS
2207 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002208 ACTION_DATA_SAVER_BLACKLIST = 396;
2209
Adrian Roosceeb04c2016-04-25 14:00:54 -07002210 // User opened a remote input view associated with a notification. Passes package name of app
2211 // that posted the notification. Note that this can also happen transiently during notification
2212 // reinflation.
2213 ACTION_REMOTE_INPUT_OPEN = 397;
2214
2215 // User attempt to send data through a remote input view associated with a notification.
2216 // Passes package name of app that posted the notification. May succeed or fail.
2217 ACTION_REMOTE_INPUT_SEND = 398;
2218
2219 // Failed attempt to send data through a remote input view associated with a
2220 // notification. Passes package name of app that posted the notification.
2221 ACTION_REMOTE_INPUT_FAIL = 399;
2222
2223 // User closed a remote input view associated with a notification. Passes package name of app
2224 // that posted the notification. Note that this can also happen transiently during notification
2225 // reinflation.
2226 ACTION_REMOTE_INPUT_CLOSE = 400;
2227
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002228 // OPEN: Settings > Accounts > Work profile settings
2229 // CATEGORY: SETTINGS
2230 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2231
Jason Monk25118d12016-05-10 13:25:50 -04002232 // Settings -> Dev options -> Convert to file encryption
2233 CONVERT_FBE = 402;
2234
2235 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2236 CONVERT_FBE_CONFIRM = 403;
2237
2238 // Settings -> Dev options -> Running services
2239 RUNNING_SERVICES = 404;
2240
Jason Monka1f697f2016-05-06 15:09:44 -04002241 // The dialog shown by 3P intent to change current webview implementation.
2242 WEBVIEW_IMPLEMENTATION = 405;
2243
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002244 // Settings launched from expanded quick settings.
2245 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2246
Chris Wren698b1702016-05-23 11:16:32 -04002247 // Notification expansion state toggled by the expand affordance.
2248 ACTION_NOTIFICATION_EXPANDER = 407;
2249
2250 // Notification group expansion state toggled by the expand affordance.
2251 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2252
Chris Wren7ee84182016-05-27 13:34:02 -04002253
Chris Wren6abeeb92016-05-26 14:44:38 -04002254 // Notification expansion state toggled by the expand gesture.
2255 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2256
2257 // Notification group expansion state toggled by the expand gesture.
2258 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2259
Bhavik Singh3451da42016-06-01 18:25:59 -07002260 // User performs gesture that activates the ambient display
2261 // 1: Gesture performed is Nudge
2262 // 2: Gesture performed is Pickup
2263 // 4: Gesture performed is Double Tap
Lucas Dupinc81702e2018-08-09 15:41:55 -07002264 // 6: Gesture performed is Reach
Bhavik Singh3451da42016-06-01 18:25:59 -07002265 ACTION_AMBIENT_GESTURE = 411;
2266
Jason Monk9fa5f822016-05-11 10:26:31 -04002267 // ---- End N Constants, all N constants go above this line ----
2268
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002269 // ------- Begin N App Disambig Shade -----
2270 // Application disambig shade opened or closed with a featured app.
2271 // These are actually visibility events, but visible/hidden doesn't
2272 // take a package, so these are being logged as actions.
2273 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002274 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2275 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002276
2277 // Application disambig shade opened or closed without a featured app.
2278 // These are actually visibility events, but visible/hidden doesn't
2279 // take a package, so these are being logged as actions.
2280 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002281 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2282 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002283
2284 // User opens in an app by pressing “Always” in the application disambig shade.
2285 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002286 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002287
2288 // User opens in an app by pressing “Just Once” in the application disambig shade.
2289 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002290 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002291
2292 // User opens in an app by tapping on its name in the application disambig shade.
2293 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002294 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002295
Daniel Nishi010aa492016-05-11 09:42:24 -07002296 // OPEN: Settings > Internal storage > Storage manager
2297 // CATEGORY: SETTINGS
2298 STORAGE_MANAGER_SETTINGS = 458;
2299
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002300 // OPEN: Settings -> Gestures
2301 // CATEGORY: SETTINGS
2302 SETTINGS_GESTURES = 459;
2303
Daniel Nishi597e67f2016-05-18 13:56:13 -07002304 // ------ Begin Deletion Helper ------
2305 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2306 // SUBTYPE: false is off, true is on
2307 // CATEGORY: SETTINGS
2308 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002309
Daniel Nishi597e67f2016-05-18 13:56:13 -07002310 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2311 // SUBTYPE: false is off, true is on
2312 // CATEGORY: SETTINGS
2313 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2314
2315 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2316 // CATEGORY: SETTINGS
2317 // PACKAGE: Unchecked app
2318 ACTION_DELETION_SELECTION_APP_ON = 462;
2319
2320 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2321 // CATEGORY: SETTINGS
2322 // PACKAGE: Checked app
2323 ACTION_DELETION_SELECTION_APP_OFF = 463;
2324
2325 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2326 // SUBTYPE: false is expanded, true is collapsed
2327 // CATEGORY: SETTINGS
2328 ACTION_DELETION_APPS_COLLAPSED = 464;
2329
2330 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2331 // SUBTYPE: false is off, true is on
2332 // CATEGORY: SETTINGS
2333 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2334
2335 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2336 // SUBTYPE: false is expanded, true is collapsed
2337 // CATEGORY: SETTINGS
2338 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2339
2340 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2341 // CATEGORY: SETTINGS
2342 ACTION_DELETION_HELPER_CLEAR = 467;
2343
2344 // ACTION: Settings > Storage > Free Up Space > Cancel
2345 // CATEGORY: SETTINGS
2346 ACTION_DELETION_HELPER_CANCEL = 468;
2347
2348 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2349 // CATEGORY: SETTINGS
2350 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2351
2352 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2353 // CATEGORY: SETTINGS
2354 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2355
2356 // Deletion helper encountered an error during package deletion.
2357 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2358
2359 // Deletion helper encountered an error during downloads folder deletion.
2360 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2361
2362 // Deletion helper encountered an error during photo and video deletion.
2363 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2364
Fan Zhang5e956e82016-05-06 10:51:47 -07002365 // OPEN: Settings (root page if there are multiple tabs)
2366 // CATEGORY: SETTINGS
2367 DASHBOARD_CONTAINER = 474;
2368
2369 // OPEN: Settings -> SUPPORT TAB
2370 // CATEGORY: SETTINGS
2371 SUPPORT_FRAGMENT = 475;
2372
2373 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002374 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002375 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002376
2377 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002378 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002379 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2380
Fan Zhanga1985502016-06-16 16:48:38 -07002381 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002382 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002383 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2384
2385 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002386 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002387 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2388
2389 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002390 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002391 ACTION_SUPPORT_SIGN_IN = 480;
2392
2393 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002394 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002395 ACTION_SUPPORT_PHONE = 481;
2396
2397 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002398 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002399 ACTION_SUPPORT_CHAT = 482;
2400
2401 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002402 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002403 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2404
2405 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002406 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002407 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2408
Fan Zhang80807212016-06-30 12:26:55 -07002409 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002410 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002411 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2412
2413 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002414 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002415 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2416
2417 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002418 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002419 ACTION_SUPPORT_DIAL_TOLLED = 487;
2420
Justin Klaassen19494272016-07-18 21:38:24 -07002421 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002422 // CATEGORY: SETTINGS
2423 NIGHT_DISPLAY_SETTINGS = 488;
2424
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002425 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002426 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002427 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2428
Jason Monk484fd362016-07-13 15:24:32 -04002429 // Settings launched from collapsed quick settings.
2430 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2431
Justin Klaassen19494272016-07-18 21:38:24 -07002432 // OPEN: QS Night Light tile shown
2433 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002434 // SUBTYPE: 0 is off, 1 is on
2435 // CATEGORY: QUICK_SETTINGS
2436 QS_NIGHT_DISPLAY = 491;
2437
Justin Klaassen19494272016-07-18 21:38:24 -07002438 // Night Light on
2439 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2440
Doris Ling3c00afb2016-07-19 17:04:21 -07002441 // System navigation key up.
2442 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2443
2444 // System navigation key down.
2445 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2446
Doris Ling6dd3e462016-08-04 13:17:27 -07002447 // OPEN: Settings > Display -> Ambient Display
2448 // CATEGORY: SETTINGS
2449 ACTION_AMBIENT_DISPLAY = 495;
2450
Adrian Roos159ef7b2016-02-25 11:58:32 -08002451 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2452
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002453 // ACTION: The lockscreen gets shown because the SIM card was removed
2454 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2455 // CATEGORY: GLOBAL_SYSTEM_UI
2456 // OS: N-MR2
2457 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2458
2459 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2460
Clara Bayarric17a5982016-04-15 12:26:47 +01002461 // ------- Begin N Keyboard Shortcuts Helper -----
2462 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002463 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002464
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002465 // OPEN: Print Preview screen
2466 // Package: Package of app where print job is from
2467 PRINT_PREVIEW = 501;
2468
2469 // OPEN: User expands full print job options shade in print preview.
2470 PRINT_JOB_OPTIONS = 502;
2471
2472 // OPEN: “All Printers” screen for selecting printer
2473 // Subtype: # of printers listed
2474 PRINT_ALL_PRINTERS = 503;
2475
2476 // OPEN: “Add Printers” screen for adding printers
2477 // Subtype: # of enabled print service listed
2478 PRINT_ADD_PRINTERS = 504;
2479
2480 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2481 // Package: Package of print service.
2482 ACTION_PRINT = 505;
2483
2484 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2485 // Count all ACTION_PRINTER_SELECT_ALL actions.
2486 // Package: Package of print service tied to printer
2487 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2488
2489 // ACTION: User selects a printer from the “All printers” screen.
2490 // Package: Package of print service tied to printer
2491 ACTION_PRINTER_SELECT_ALL = 507;
2492
2493 // ACTION: User changes an option for the print job from print preview.
2494 // Subtype: 1: Copies
2495 // 2: Color mode
2496 // 3: Duplex mode
2497 // 4: Media (==Paper) size
2498 // 5: Orientation
2499 // 6: Page range
2500 // Package: Package of print service tied to printer
2501 ACTION_PRINT_JOB_OPTIONS = 508;
2502
2503 // ACTION: User searches for printer from All Printers
2504 ACTION_PRINTER_SEARCH = 509;
2505
2506 // ACTION: User selects “Add print service” button from All Printers
2507 ACTION_PRINT_SERVICE_ADD = 510;
2508
2509 // ACTION: User Enables/Disables Print Service via any means.
2510 // Subtype: 0: Enabled
2511 // 1: Disabled
2512 ACTION_PRINT_SERVICE_TOGGLE = 511;
2513
2514 // ACTION: User installs print recommended print service
2515 // Package: Package of print service
2516 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2517
Doris Ling88a6b162016-08-08 16:17:43 -07002518 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2519 // SUBTYPE: sub settings classname
2520 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2521
Fan Zhang92c60382016-08-08 14:03:53 -07002522 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2523 USER_DICTIONARY_SETTINGS = 514;
2524
2525 // OPEN: Settings > Date & time > Select time zone
2526 ZONE_PICKER = 515;
2527
2528 // OPEN: Settings > Security > Device administrators
2529 DEVICE_ADMIN_SETTINGS = 516;
2530
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002531 // ACTION: Managed provisioning was launched to set this package as DPC app.
2532 // PACKAGE: DPC's package name.
2533 PROVISIONING_DPC_PACKAGE_NAME = 517;
2534
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002535 // ACTION: Managed provisioning triggered DPC installation.
2536 // PACKAGE: Package name of package which installed DPC.
2537 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2538
2539 // ACTION: Logged when provisioning activity finishes.
2540 // TIME: Indicates time taken by provisioning activity to finish in MS.
2541 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2542
2543 // ACTION: Logged when preprovisioning activity finishes.
2544 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2545 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2546
2547 // ACTION: Logged when encrypt device activity finishes.
2548 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2549 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2550
2551 // ACTION: Logged when web activity finishes.
2552 // TIME: Indicates total time taken by web activity to finish in MS.
2553 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2554
2555 // ACTION: Logged when trampoline activity finishes.
2556 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2557 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2558
2559 // ACTION: Logged when encryption activity finishes.
2560 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2561 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2562
2563 // ACTION: Logged when finalization activity finishes.
2564 // TIME: Indicates time taken by finalization activity to finish in MS.
2565 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002566
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002567 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002568 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002569
Fan Zhang95094182016-08-24 18:14:16 -07002570 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002571 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002572
2573 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002574 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002575
2576 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002577 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002578
2579 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002580 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002581
2582 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002583 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002584
Fan Zhangc1352ae2016-09-16 12:46:11 -07002585 // OPEN: Settings > Security > Use one lock dialog
2586 DIALOG_UNIFICATION_CONFIRMATION = 532;
2587
2588 // OPEN: Settings > Security > User Credential
2589 DIALOG_USER_CREDENTIAL = 533;
2590
2591 // OPEN: Settings > Accounts > Remove account
2592 DIALOG_REMOVE_USER = 534;
2593
2594 // OPEN: Settings > Accounts > Confirm auto sync dialog
2595 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2596
2597 // OPEN: Settings > Apps > Dialog for running service details
2598 DIALOG_RUNNIGN_SERVICE = 536;
2599
2600 // OPEN: Settings > Dialog for hiding home settings
2601 DIALOG_NO_HOME = 537;
2602
2603 // OPEN: Settings > Bluetooth > Rename this device
2604 DIALOG_BLUETOOTH_RENAME = 538;
2605
2606 // OPEN: Settings > Bluetooth > Paired device profile
2607 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2608
2609 // OPEN: Settings > Battery optimization > details for app
2610 DIALOG_HIGH_POWER_DETAILS = 540;
2611
2612 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2613 DIALOG_KEYBOARD_LAYOUT = 541;
2614
2615 // OPEN: Settings > Wifi > WPS Setup dialog
2616 DIALOG_WPS_SETUP = 542;
2617
2618 // OPEN: Settings > WIFI Scan permission dialog
2619 DIALOG_WIFI_SCAN_MODE = 543;
2620
2621 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2622 DIALOG_WIFI_SKIP = 544;
2623
2624 // OPEN: Settings > Wireless > VPN > Config dialog
2625 DIALOG_LEGACY_VPN_CONFIG = 545;
2626
2627 // OPEN: Settings > Wireless > VPN > Config dialog for app
2628 DIALOG_VPN_APP_CONFIG = 546;
2629
2630 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2631 DIALOG_VPN_CANNOT_CONNECT = 547;
2632
2633 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2634 DIALOG_VPN_REPLACE_EXISTING = 548;
2635
2636 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2637 DIALOG_BILLING_CYCLE = 549;
2638
2639 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2640 DIALOG_BILLING_BYTE_LIMIT = 550;
2641
2642 // OPEN: Settings > Billing cycle > turn on data limit dialog
2643 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2644
2645 // OPEN: Settings > Service > Turn off notification access dialog
2646 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2647
2648 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2649 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2650
2651 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2652 DIALOG_ZEN_ACCESS_GRANT = 554;
2653
2654 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2655 DIALOG_ZEN_ACCESS_REVOKE = 555;
2656
2657 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2658 DIALOG_ZEN_TIMEPICKER = 556;
2659
2660 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2661 DIALOG_SERVICE_ACCESS_WARNING = 557;
2662
2663 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2664 DIALOG_APP_INFO_ACTION = 558;
2665
2666 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2667 DIALOG_VOLUME_FORGET = 559;
2668
2669 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2670 DIALOG_VOLUME_SLOW_WARNING = 560;
2671
2672 // OPEN: Settings > Storage > Dialog for initializing a volume
2673 DIALOG_VOLUME_INIT = 561;
2674
2675 // OPEN: Settings > Storage > Dialog for unmounting a volume
2676 DIALOG_VOLUME_UNMOUNT = 562;
2677
2678 // OPEN: Settings > Storage > Dialog for renaming a volume
2679 DIALOG_VOLUME_RENAME = 563;
2680
2681 // OPEN: Settings > Storage > Dialog for clear cache
2682 DIALOG_STORAGE_CLEAR_CACHE = 564;
2683
2684 // OPEN: Settings > Storage > Dialog for system info
2685 DIALOG_STORAGE_SYSTEM_INFO = 565;
2686
2687 // OPEN: Settings > Storage > Dialog for other info
2688 DIALOG_STORAGE_OTHER_INFO = 566;
2689
2690 // OPEN: Settings > Storage > Dialog for user info
2691 DIALOG_STORAGE_USER_INFO = 567;
2692
2693 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2694 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2695
2696 // OPEN: Settings > Add fingerprint > Error dialog
2697 DIALOG_FINGERPINT_ERROR = 569;
2698
2699 // OPEN: Settings > Fingerprint > Rename or delete dialog
2700 DIALOG_FINGERPINT_EDIT = 570;
2701
2702 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2703 DIALOG_FINGERPINT_DELETE_LAST = 571;
2704
2705 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2706 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2707
2708 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2709 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2710
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002711 // OPEN: Settings > Proxy Selector error dialog
2712 DIALOG_PROXY_SELECTOR_ERROR = 574;
2713
2714 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2715 DIALOG_WIFI_P2P_DISCONNECT = 575;
2716
2717 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2718 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2719
2720 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2721 DIALOG_WIFI_P2P_RENAME = 577;
2722
2723 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2724 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2725
2726 // OPEN: Settings > APN > Restore default dialog
2727 DIALOG_APN_RESTORE_DEFAULT = 579;
2728
2729 // OPEN: Settings > Dream > When to dream dialog
2730 DIALOG_DREAM_START_DELAY = 580;
2731
2732 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2733 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2734
2735 // OPEN: Settings > Tether > AP setting dialog
2736 DIALOG_AP_SETTINGS = 582;
2737
2738 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2739 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2740
2741 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2742 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2743
2744 // OPEN: Settings > Account > Remove account dialog
2745 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2746
2747 // OPEN: Settings > Account > Remove account failed dialog
2748 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2749
2750 // OPEN: Settings > Account > Cannot do onetime sync dialog
2751 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2752
2753 // OPEN: Settings > Display > Night light > Set start time dialog
2754 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2755
2756 // OPEN: Settings > Display > Night light > Set end time dialog
2757 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2758
2759 // OPEN: Settings > User > Edit info dialog
2760 DIALOG_USER_EDIT = 590;
2761
2762 // OPEN: Settings > User > Confirm remove dialog
2763 DIALOG_USER_REMOVE = 591;
2764
2765 // OPEN: Settings > User > Enable calling dialog
2766 DIALOG_USER_ENABLE_CALLING = 592;
2767
2768 // OPEN: Settings > User > Enable calling and sms dialog
2769 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2770
2771 // OPEN: Settings > User > Cannot manage device message dialog
2772 DIALOG_USER_CANNOT_MANAGE = 594;
2773
2774 // OPEN: Settings > User > Add user dialog
2775 DIALOG_USER_ADD = 595;
2776
2777 // OPEN: Settings > User > Setup user dialog
2778 DIALOG_USER_SETUP = 596;
2779
2780 // OPEN: Settings > User > Setup profile dialog
2781 DIALOG_USER_SETUP_PROFILE = 597;
2782
2783 // OPEN: Settings > User > Choose user type dialog
2784 DIALOG_USER_CHOOSE_TYPE = 598;
2785
2786 // OPEN: Settings > User > Need lockscreen dialog
2787 DIALOG_USER_NEED_LOCKSCREEN = 599;
2788
2789 // OPEN: Settings > User > Confirm exit guest mode dialog
2790 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2791
2792 // OPEN: Settings > User > Edit user profile dialog
2793 DIALOG_USER_EDIT_PROFILE = 601;
2794
2795 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2796 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2797
2798 // OPEN: Settings > Wifi > Edit AP dialog
2799 DIALOG_WIFI_AP_EDIT = 603;
2800
2801 // OPEN: Settings > Wifi > PBC Config dialog
2802 DIALOG_WIFI_PBC = 604;
2803
2804 // OPEN: Settings > Wifi > Display pin dialog
2805 DIALOG_WIFI_PIN = 605;
2806
2807 // OPEN: Settings > Wifi > Write config to NFC dialog
2808 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002809 // OPEN: Settings > Date > Date picker dialog
2810 DIALOG_DATE_PICKER = 607;
2811
2812 // OPEN: Settings > Date > Time picker dialog
2813 DIALOG_TIME_PICKER = 608;
2814
2815 // OPEN: Settings > Wireless > Manage wireless plan dialog
2816 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002817
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002818 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002819 PROVISIONING_NETWORK_TYPE = 610;
2820
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002821 // ACTION: Logs action which triggered provisioning.
2822 PROVISIONING_ACTION = 611;
2823
Mahaver Chopraab282072016-10-06 19:19:23 +01002824 // ACTION: Logs extra passed by the dpc while provisioning.
2825 PROVISIONING_EXTRA = 612;
2826
Salvador Martinez64867c12016-10-14 15:25:09 -07002827 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2828 BLUETOOTH_DIALOG_FRAGMENT = 613;
2829
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002830 // ACTION: Logs provisioning started by zero touch.
2831 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2832
2833 // ACTION: Logs provisioning started by NFC bump.
2834 PROVISIONING_ENTRY_POINT_NFC = 615;
2835
2836 // ACTION: Logs provisioning started using QR code.
2837 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2838
2839 // ACTION: Logs provisioning started using adb.
2840 PROVISIONING_ENTRY_POINT_ADB = 617;
2841
2842 // ACTION: Logs provisioning started by trusted source.
2843 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2844
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002845 // ACTION: Logged when copy account task finishes.
2846 // TIME: Indicates time taken by copy account task to finish in MS.
2847 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2848
2849 // ACTION: Logged when create profile task finishes.
2850 // TIME: Indicates time taken by create profile task to finish in MS.
2851 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2852
2853 // ACTION: Logged when start profile task finishes.
2854 // TIME: Indicates time taken by start profile task to finish in MS.
2855 PROVISIONING_START_PROFILE_TASK_MS = 621;
2856
2857 // ACTION: Logged when download package task finishes.
2858 // TIME: Indicates time taken by download package task to finish in MS.
2859 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2860
2861 // ACTION: Logged when install package task finishes.
2862 // TIME: Indicates time taken by install package task to finish in MS.
2863 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2864
2865 // ACTION: User cancelled provisioning.
2866 PROVISIONING_CANCELLED = 624;
2867
2868 // ACTION: Logged when provisioning throws an error.
2869 PROVISIONING_ERROR = 625;
2870
2871 // ACTION: Logs the status of copying user account during provisioning.
2872 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2873
2874 // ACTION: Logs the end to end time taken by all provisioning tasks.
2875 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2876
tmfanga3f63a92018-11-05 19:05:18 +08002877 // OPEN: Settings > Security
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002878 // CATEGORY: SETTINGS
2879 // OS: O
2880 ENTERPRISE_PRIVACY_SETTINGS = 628;
2881
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002882 // ACTION: Longpress on a TextView.
2883 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2884 // CATEGORY: TEXT_CONTROLS
2885 // OS: O
2886 TEXT_LONGPRESS = 629;
2887
Chris Wren3824c392017-11-27 12:54:14 -05002888 // ACTION: An app requested an unknown permission
2889 // PACKAGE: The package name of the app requesting the permission
2890 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002891 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2892
Chris Wren3824c392017-11-27 12:54:14 -05002893 // ACTION: An app was granted an unknown permission
2894 // PACKAGE: The package name of the app that was granted the permission
2895 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002896 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2897
Chris Wren3824c392017-11-27 12:54:14 -05002898 // ACTION: An app requested an unknown permission and the request was denied
2899 // PACKAGE: The package name of the app requesting the permission
2900 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002901 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2902
Chris Wren3824c392017-11-27 12:54:14 -05002903 // ACTION: An unknown permission was revoked for an app
2904 // PACKAGE: The package name of the app the permission was revoked for
2905 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002906 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2907
Chris Wren3824c392017-11-27 12:54:14 -05002908 // ACTION: An app requested the permission READ_CALENDAR
2909 // PACKAGE: The package name of the app requesting the permission
2910 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002911 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2912
Chris Wren3824c392017-11-27 12:54:14 -05002913 // ACTION: An app was granted the permission READ_CALENDAR
2914 // PACKAGE: The package name of the app that was granted the permission
2915 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002916 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2917
Chris Wren3824c392017-11-27 12:54:14 -05002918 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
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_DENIED_READ_CALENDAR = 636;
2922
Chris Wren3824c392017-11-27 12:54:14 -05002923 // ACTION: The permission READ_CALENDAR was revoked for an app
2924 // PACKAGE: The package name of the app the permission was revoked for
2925 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002926 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2927
Chris Wren3824c392017-11-27 12:54:14 -05002928 // ACTION: An app requested the permission WRITE_CALENDAR
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_REQUEST_WRITE_CALENDAR = 638;
2932
Chris Wren3824c392017-11-27 12:54:14 -05002933 // ACTION: An app was granted the permission WRITE_CALENDAR
2934 // PACKAGE: The package name of the app that was granted the permission
2935 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002936 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2937
Chris Wren3824c392017-11-27 12:54:14 -05002938 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
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_DENIED_WRITE_CALENDAR = 640;
2942
Chris Wren3824c392017-11-27 12:54:14 -05002943 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2944 // PACKAGE: The package name of the app the permission was revoked for
2945 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002946 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2947
Chris Wren3824c392017-11-27 12:54:14 -05002948 // ACTION: An app requested the permission CAMERA
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_REQUEST_CAMERA = 642;
2952
Chris Wren3824c392017-11-27 12:54:14 -05002953 // ACTION: An app was granted the permission CAMERA
2954 // PACKAGE: The package name of the app that was granted the permission
2955 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002956 ACTION_PERMISSION_GRANT_CAMERA = 643;
2957
Chris Wren3824c392017-11-27 12:54:14 -05002958 // ACTION: An app requested the permission CAMERA and the request was denied
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_DENIED_CAMERA = 644;
2962
Chris Wren3824c392017-11-27 12:54:14 -05002963 // ACTION: The permission CAMERA was revoked for an app
2964 // PACKAGE: The package name of the app the permission was revoked for
2965 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002966 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2967
Chris Wren3824c392017-11-27 12:54:14 -05002968 // ACTION: An app requested the permission READ_CONTACTS
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_REQUEST_READ_CONTACTS = 646;
2972
Chris Wren3824c392017-11-27 12:54:14 -05002973 // ACTION: An app was granted the permission READ_CONTACTS
2974 // PACKAGE: The package name of the app that was granted the permission
2975 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002976 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2977
Chris Wren3824c392017-11-27 12:54:14 -05002978 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
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_DENIED_READ_CONTACTS = 648;
2982
Chris Wren3824c392017-11-27 12:54:14 -05002983 // ACTION: The permission READ_CONTACTS was revoked for an app
2984 // PACKAGE: The package name of the app the permission was revoked for
2985 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002986 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2987
Chris Wren3824c392017-11-27 12:54:14 -05002988 // ACTION: An app requested the permission WRITE_CONTACTS
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_REQUEST_WRITE_CONTACTS = 650;
2992
Chris Wren3824c392017-11-27 12:54:14 -05002993 // ACTION: An app was granted the permission WRITE_CONTACTS
2994 // PACKAGE: The package name of the app that was granted the permission
2995 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002996 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2997
Chris Wren3824c392017-11-27 12:54:14 -05002998 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
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_DENIED_WRITE_CONTACTS = 652;
3002
Chris Wren3824c392017-11-27 12:54:14 -05003003 // ACTION: The permission WRITE_CONTACTS was revoked for an app
3004 // PACKAGE: The package name of the app the permission was revoked for
3005 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003006 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
3007
Chris Wren3824c392017-11-27 12:54:14 -05003008 // ACTION: An app requested the permission GET_ACCOUNTS
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_REQUEST_GET_ACCOUNTS = 654;
3012
Chris Wren3824c392017-11-27 12:54:14 -05003013 // ACTION: An app was granted the permission GET_ACCOUNTS
3014 // PACKAGE: The package name of the app that was granted the permission
3015 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003016 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
3017
Chris Wren3824c392017-11-27 12:54:14 -05003018 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
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_DENIED_GET_ACCOUNTS = 656;
3022
Chris Wren3824c392017-11-27 12:54:14 -05003023 // ACTION: The permission GET_ACCOUNTS was revoked for an app
3024 // PACKAGE: The package name of the app the permission was revoked for
3025 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003026 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
3027
Chris Wren3824c392017-11-27 12:54:14 -05003028 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
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_REQUEST_ACCESS_FINE_LOCATION = 658;
3032
Chris Wren3824c392017-11-27 12:54:14 -05003033 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
3034 // PACKAGE: The package name of the app that was granted the permission
3035 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003036 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
3037
Chris Wren3824c392017-11-27 12:54:14 -05003038 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
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_DENIED_ACCESS_FINE_LOCATION = 660;
3042
Chris Wren3824c392017-11-27 12:54:14 -05003043 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3044 // PACKAGE: The package name of the app the permission was revoked for
3045 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003046 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3047
Chris Wren3824c392017-11-27 12:54:14 -05003048 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
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_REQUEST_ACCESS_COARSE_LOCATION = 662;
3052
Chris Wren3824c392017-11-27 12:54:14 -05003053 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3054 // PACKAGE: The package name of the app that was granted the permission
3055 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003056 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3057
Chris Wren3824c392017-11-27 12:54:14 -05003058 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
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_DENIED_ACCESS_COARSE_LOCATION = 664;
3062
Chris Wren3824c392017-11-27 12:54:14 -05003063 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3064 // PACKAGE: The package name of the app the permission was revoked for
3065 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003066 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3067
Chris Wren3824c392017-11-27 12:54:14 -05003068 // ACTION: An app requested the permission RECORD_AUDIO
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_REQUEST_RECORD_AUDIO = 666;
3072
Chris Wren3824c392017-11-27 12:54:14 -05003073 // ACTION: An app was granted the permission RECORD_AUDIO
3074 // PACKAGE: The package name of the app that was granted the permission
3075 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003076 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3077
Chris Wren3824c392017-11-27 12:54:14 -05003078 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
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_DENIED_RECORD_AUDIO = 668;
3082
Chris Wren3824c392017-11-27 12:54:14 -05003083 // ACTION: The permission RECORD_AUDIO was revoked for an app
3084 // PACKAGE: The package name of the app the permission was revoked for
3085 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003086 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3087
Chris Wren3824c392017-11-27 12:54:14 -05003088 // ACTION: An app requested the permission READ_PHONE_STATE
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_REQUEST_READ_PHONE_STATE = 670;
3092
Chris Wren3824c392017-11-27 12:54:14 -05003093 // ACTION: An app was granted the permission READ_PHONE_STATE
3094 // PACKAGE: The package name of the app that was granted the permission
3095 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003096 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3097
Chris Wren3824c392017-11-27 12:54:14 -05003098 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
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_DENIED_READ_PHONE_STATE = 672;
3102
Chris Wren3824c392017-11-27 12:54:14 -05003103 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3104 // PACKAGE: The package name of the app the permission was revoked for
3105 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003106 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3107
Chris Wren3824c392017-11-27 12:54:14 -05003108 // ACTION: An app requested the permission CALL_PHONE
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_REQUEST_CALL_PHONE = 674;
3112
Chris Wren3824c392017-11-27 12:54:14 -05003113 // ACTION: An app was granted the permission CALL_PHONE
3114 // PACKAGE: The package name of the app that was granted the permission
3115 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003116 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3117
Chris Wren3824c392017-11-27 12:54:14 -05003118 // ACTION: An app requested the permission CALL_PHONE and the request was denied
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_DENIED_CALL_PHONE = 676;
3122
Chris Wren3824c392017-11-27 12:54:14 -05003123 // ACTION: The permission CALL_PHONE was revoked for an app
3124 // PACKAGE: The package name of the app the permission was revoked for
3125 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003126 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3127
Chris Wren3824c392017-11-27 12:54:14 -05003128 // ACTION: An app requested the permission READ_CALL_LOG
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_REQUEST_READ_CALL_LOG = 678;
3132
Chris Wren3824c392017-11-27 12:54:14 -05003133 // ACTION: An app was granted the permission READ_CALL_LOG
3134 // PACKAGE: The package name of the app that was granted the permission
3135 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003136 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3137
Chris Wren3824c392017-11-27 12:54:14 -05003138 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
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_DENIED_READ_CALL_LOG = 680;
3142
Chris Wren3824c392017-11-27 12:54:14 -05003143 // ACTION: The permission READ_CALL_LOG was revoked for an app
3144 // PACKAGE: The package name of the app the permission was revoked for
3145 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003146 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3147
Chris Wren3824c392017-11-27 12:54:14 -05003148 // ACTION: An app requested the permission WRITE_CALL_LOG
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_REQUEST_WRITE_CALL_LOG = 682;
3152
Chris Wren3824c392017-11-27 12:54:14 -05003153 // ACTION: An app was granted the permission WRITE_CALL_LOG
3154 // PACKAGE: The package name of the app that was granted the permission
3155 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003156 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3157
Chris Wren3824c392017-11-27 12:54:14 -05003158 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
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_DENIED_WRITE_CALL_LOG = 684;
3162
Chris Wren3824c392017-11-27 12:54:14 -05003163 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3164 // PACKAGE: The package name of the app the permission was revoked for
3165 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003166 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3167
Chris Wren3824c392017-11-27 12:54:14 -05003168 // ACTION: An app requested the permission ADD_VOICEMAIL
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_REQUEST_ADD_VOICEMAIL = 686;
3172
Chris Wren3824c392017-11-27 12:54:14 -05003173 // ACTION: An app was granted the permission ADD_VOICEMAIL
3174 // PACKAGE: The package name of the app that was granted the permission
3175 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003176 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3177
Chris Wren3824c392017-11-27 12:54:14 -05003178 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
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_DENIED_ADD_VOICEMAIL = 688;
3182
Chris Wren3824c392017-11-27 12:54:14 -05003183 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3184 // PACKAGE: The package name of the app the permission was revoked for
3185 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003186 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3187
Chris Wren3824c392017-11-27 12:54:14 -05003188 // ACTION: An app requested the permission USE_SIP
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_REQUEST_USE_SIP = 690;
3192
Chris Wren3824c392017-11-27 12:54:14 -05003193 // ACTION: An app was granted the permission USE_SIP
3194 // PACKAGE: The package name of the app that was granted the permission
3195 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003196 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3197
Chris Wren3824c392017-11-27 12:54:14 -05003198 // ACTION: An app requested the permission USE_SIP and the request was denied
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_DENIED_USE_SIP = 692;
3202
Chris Wren3824c392017-11-27 12:54:14 -05003203 // ACTION: The permission USE_SIP was revoked for an app
3204 // PACKAGE: The package name of the app the permission was revoked for
3205 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003206 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3207
Chris Wren3824c392017-11-27 12:54:14 -05003208 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
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_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3212
Chris Wren3824c392017-11-27 12:54:14 -05003213 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3214 // PACKAGE: The package name of the app that was granted the permission
3215 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003216 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3217
Chris Wren3824c392017-11-27 12:54:14 -05003218 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
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_DENIED_PROCESS_OUTGOING_CALLS = 696;
3222
Chris Wren3824c392017-11-27 12:54:14 -05003223 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3224 // PACKAGE: The package name of the app the permission was revoked for
3225 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003226 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3227
Chris Wren3824c392017-11-27 12:54:14 -05003228 // ACTION: An app requested the permission READ_CELL_BROADCASTS
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_REQUEST_READ_CELL_BROADCASTS = 698;
3232
Chris Wren3824c392017-11-27 12:54:14 -05003233 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3234 // PACKAGE: The package name of the app that was granted the permission
3235 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003236 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3237
Chris Wren3824c392017-11-27 12:54:14 -05003238 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
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_DENIED_READ_CELL_BROADCASTS = 700;
3242
Chris Wren3824c392017-11-27 12:54:14 -05003243 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3244 // PACKAGE: The package name of the app the permission was revoked for
3245 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003246 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3247
Chris Wren3824c392017-11-27 12:54:14 -05003248 // ACTION: An app requested the permission BODY_SENSORS
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_REQUEST_BODY_SENSORS = 702;
3252
Chris Wren3824c392017-11-27 12:54:14 -05003253 // ACTION: An app was granted the permission BODY_SENSORS
3254 // PACKAGE: The package name of the app that was granted the permission
3255 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003256 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3257
Chris Wren3824c392017-11-27 12:54:14 -05003258 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
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_DENIED_BODY_SENSORS = 704;
3262
Chris Wren3824c392017-11-27 12:54:14 -05003263 // ACTION: The permission BODY_SENSORS was revoked for an app
3264 // PACKAGE: The package name of the app the permission was revoked for
3265 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003266 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3267
Chris Wren3824c392017-11-27 12:54:14 -05003268 // ACTION: An app requested the permission SEND_SMS
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_REQUEST_SEND_SMS = 706;
3272
Chris Wren3824c392017-11-27 12:54:14 -05003273 // ACTION: An app was granted the permission SEND_SMS
3274 // PACKAGE: The package name of the app that was granted the permission
3275 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003276 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3277
Chris Wren3824c392017-11-27 12:54:14 -05003278 // ACTION: An app requested the permission SEND_SMS and the request was denied
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_DENIED_SEND_SMS = 708;
3282
Chris Wren3824c392017-11-27 12:54:14 -05003283 // ACTION: The permission SEND_SMS was revoked for an app
3284 // PACKAGE: The package name of the app the permission was revoked for
3285 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003286 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3287
Chris Wren3824c392017-11-27 12:54:14 -05003288 // ACTION: An app requested the permission RECEIVE_SMS
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_REQUEST_RECEIVE_SMS = 710;
3292
Chris Wren3824c392017-11-27 12:54:14 -05003293 // ACTION: An app was granted the permission RECEIVE_SMS
3294 // PACKAGE: The package name of the app that was granted the permission
3295 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003296 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3297
Chris Wren3824c392017-11-27 12:54:14 -05003298 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
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_DENIED_RECEIVE_SMS = 712;
3302
Chris Wren3824c392017-11-27 12:54:14 -05003303 // ACTION: The permission RECEIVE_SMS was revoked for an app
3304 // PACKAGE: The package name of the app the permission was revoked for
3305 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003306 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3307
Chris Wren3824c392017-11-27 12:54:14 -05003308 // ACTION: An app requested the permission READ_SMS
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_REQUEST_READ_SMS = 714;
3312
Chris Wren3824c392017-11-27 12:54:14 -05003313 // ACTION: An app was granted the permission READ_SMS
3314 // PACKAGE: The package name of the app that was granted the permission
3315 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003316 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3317
Chris Wren3824c392017-11-27 12:54:14 -05003318 // ACTION: An app requested the permission READ_SMS and the request was denied
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_DENIED_READ_SMS = 716;
3322
Chris Wren3824c392017-11-27 12:54:14 -05003323 // ACTION: The permission READ_SMS was revoked for an app
3324 // PACKAGE: The package name of the app the permission was revoked for
3325 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003326 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3327
Chris Wren3824c392017-11-27 12:54:14 -05003328 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
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_REQUEST_RECEIVE_WAP_PUSH = 718;
3332
Chris Wren3824c392017-11-27 12:54:14 -05003333 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3334 // PACKAGE: The package name of the app that was granted the permission
3335 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003336 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3337
Chris Wren3824c392017-11-27 12:54:14 -05003338 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
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_DENIED_RECEIVE_WAP_PUSH = 720;
3342
Chris Wren3824c392017-11-27 12:54:14 -05003343 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3344 // PACKAGE: The package name of the app the permission was revoked for
3345 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003346 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3347
Chris Wren3824c392017-11-27 12:54:14 -05003348 // ACTION: An app requested the permission RECEIVE_MMS
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_REQUEST_RECEIVE_MMS = 722;
3352
Chris Wren3824c392017-11-27 12:54:14 -05003353 // ACTION: An app was granted the permission RECEIVE_MMS
3354 // PACKAGE: The package name of the app that was granted the permission
3355 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003356 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3357
Chris Wren3824c392017-11-27 12:54:14 -05003358 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
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_DENIED_RECEIVE_MMS = 724;
3362
Chris Wren3824c392017-11-27 12:54:14 -05003363 // ACTION: The permission RECEIVE_MMS was revoked for an app
3364 // PACKAGE: The package name of the app the permission was revoked for
3365 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003366 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3367
Chris Wren3824c392017-11-27 12:54:14 -05003368 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
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_REQUEST_READ_EXTERNAL_STORAGE = 726;
3372
Chris Wren3824c392017-11-27 12:54:14 -05003373 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3374 // PACKAGE: The package name of the app that was granted the permission
3375 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003376 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3377
Chris Wren3824c392017-11-27 12:54:14 -05003378 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
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_DENIED_READ_EXTERNAL_STORAGE = 728;
3382
Chris Wren3824c392017-11-27 12:54:14 -05003383 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3384 // PACKAGE: The package name of the app the permission was revoked for
3385 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003386 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3387
Chris Wren3824c392017-11-27 12:54:14 -05003388 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
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_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3392
Chris Wren3824c392017-11-27 12:54:14 -05003393 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3394 // PACKAGE: The package name of the app that was granted the permission
3395 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003396 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3397
Chris Wren3824c392017-11-27 12:54:14 -05003398 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
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_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3402
Chris Wren3824c392017-11-27 12:54:14 -05003403 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3404 // PACKAGE: The package name of the app the permission was revoked for
3405 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003406 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3407
Mahaverfa6566e2016-11-29 21:08:14 +00003408 // ACTION: Logged when a provisioning session has started
3409 PROVISIONING_SESSION_STARTED = 734;
3410
3411 // ACTION: Logged when a provisioning session has completed
3412 PROVISIONING_SESSION_COMPLETED = 735;
3413
Chris Wren3824c392017-11-27 12:54:14 -05003414 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3415 // PACKAGE: The package name of the app requesting the permission
3416 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003417 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003418
Chris Wren3824c392017-11-27 12:54:14 -05003419 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3420 // PACKAGE: The package name of the app that was granted the permission
3421 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003422 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003423
Chris Wren3824c392017-11-27 12:54:14 -05003424 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3425 // PACKAGE: The package name of the app requesting the permission
3426 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003427 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003428
Chris Wren3824c392017-11-27 12:54:14 -05003429 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3430 // PACKAGE: The package name of the app the permission was revoked for
3431 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003432 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003433
Santos Cordon3107d292016-09-20 15:50:35 -07003434 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3435 // SUBTYPE: slider value
3436 // CATEGORY: QUICK_SETTINGS
3437 // OS: 6.0
3438 ACTION_BRIGHTNESS_FOR_VR = 498;
3439
Hugo Benichie1cbf152016-12-08 09:36:52 +09003440 // ACTION: A captive portal was detected during network validation
3441 // CATEGORY: NOTIFICATION
3442 // OS: N-MR2
3443 NOTIFICATION_NETWORK_SIGN_IN = 740;
3444
3445 // ACTION: An unvalidated network without Internet was selected by the user
3446 // CATEGORY: NOTIFICATION
3447 // OS: N-MR2
3448 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3449
3450 // ACTION: A validated network failed revalidation and lost Internet access
3451 // CATEGORY: NOTIFICATION
3452 // OS: N-MR2
3453 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3454
3455 // ACTION: The system default network switched to a different network
3456 // CATEGORY: NOTIFICATION
3457 // OS: N-MR2
3458 NOTIFICATION_NETWORK_SWITCH = 743;
3459
Fan Zhang074c4cb2016-12-21 12:10:33 -08003460 // OPEN: Settings > System
3461 SETTINGS_SYSTEM_CATEGORY = 744;
3462
3463 // OPEN: Settings > Storage
3464 SETTINGS_STORAGE_CATEGORY = 745;
3465
3466 // OPEN: Settings > Network & Internet
3467 SETTINGS_NETWORK_CATEGORY = 746;
3468
3469 // OPEN: Settings > Connected Device
3470 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3471
3472 // OPEN: Settings > App & Notification
3473 SETTINGS_APP_NOTIF_CATEGORY = 748;
3474
3475 // OPEN: Settings > System > Input & Gesture
3476 SETTINGS_INPUT_CATEGORY = 749;
3477
3478 // OPEN: Settings > System > Language & Region
3479 SETTINGS_LANGUAGE_CATEGORY = 750;
3480
3481 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3482 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3483
3484 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3485 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3486
3487 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3488 SETTINGS_GESTURE_PICKUP = 753;
3489
3490 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3491 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3492
3493 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3494 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3495
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003496 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3497 // CATEGORY: Settings
3498 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3499
Alison Cichowlas803054d2016-12-13 14:38:01 -05003500 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003501 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003502 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3503 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3504 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003505
Salvador Martinezc43ab062016-12-21 11:09:11 -08003506 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3507 // user accepted
3508 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003509
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003510 // Enclosing category for group of APP_TRANSITION_FOO events,
3511 // logged when we execute an app transition.
3512 APP_TRANSITION = 761;
3513
Fan Zhang945deea2017-01-11 16:37:49 -08003514 // ACTION: User leaves Settings search UI without entering any query.
3515 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3516
3517 // ACTION: Clicking on any search result in Settings.
3518 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003519
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003520 // ACTION: Allow Battery optimization for an app
3521 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3522
3523 // ACTION: Deny Battery optimization for an app
3524 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3525
3526 // ACTION: Enable Device Admin app
3527 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3528
3529 // ACTION: Disable Device Admin app
3530 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3531
3532 // ACTION: Allow "Do Not Disturb access" for an app
3533 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3534
3535 // ACTION: Deny "Do Not Disturb access" for an app
3536 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3537
3538 // ACTION: Allow "Draw over other apps" for an app
3539 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3540
Christine Franks47175c32017-03-14 10:21:25 -07003541 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003542 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3543
3544 // ACTION: Allow "VR helper services" for an app
3545 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3546
3547 // ACTION: Deny "VR helper services" for an app
3548 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3549
3550 // ACTION: Allow "Modify system settings" for an app
3551 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3552
3553 // ACTION: Deny "Modify system settings" for an app
3554 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3555
3556 // ACTION: Allow "Notification access" for an app
3557 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3558
3559 // ACTION: Deny "Notification access" for an app
3560 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3561
3562 // ACTION: "Premium SMS access" for an app - "ask user" option
3563 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3564
3565 // ACTION: "Premium SMS access" for an app - "never allow" option
3566 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3567
3568 // ACTION: "Premium SMS access" for an app - "always allow" option
3569 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3570
3571 // ACTION: Allow "Unrestricted data access" for an app
3572 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3573
3574 // ACTION: Deny "Unrestricted data access" for an app
3575 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3576
3577 // ACTION: Allow "Usage access" for an app
3578 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3579
3580 // ACTION: Deny "Usage access" for an app
3581 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3582
Fan Zhangad5dacc2017-01-18 14:18:54 -08003583 // OPEN: Settings > Apps > Default Apps > Default browser
3584 DEFAULT_BROWSER_PICKER = 785;
3585
3586 // OPEN: Settings > Apps > Default Apps > Default emergency app
3587 DEFAULT_EMERGENCY_APP_PICKER = 786;
3588
3589 // OPEN: Settings > Apps > Default Apps > Default home
3590 DEFAULT_HOME_PICKER = 787;
3591
3592 // OPEN: Settings > Apps > Default Apps > Default phone
3593 DEFAULT_PHONE_PICKER = 788;
3594
3595 // OPEN: Settings > Apps > Default Apps > Default sms
3596 DEFAULT_SMS_PICKER = 789;
3597
Fabian Kozynski171f40d2019-02-20 12:53:17 -05003598 // OPEN: Settings > Apps > Notification > Notification Assistant
Fan Zhangad5dacc2017-01-18 14:18:54 -08003599 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3600
3601 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3602 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3603
Jason Long1b51da62017-01-24 11:35:31 -08003604 // OPEN: Settings > Apps > Default Apps > Default autofill app
3605 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003606
Chris Wren26ca65d2016-11-29 10:43:28 -05003607 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003608 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003609 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3610 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3611 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3612 NOTIFICATION_ID = 796;
3613 NOTIFICATION_TAG = 797;
3614 NOTIFICATION_SHADE_INDEX = 798;
3615 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003616
Anas Karbilaf7648f42016-12-11 00:55:02 +01003617 // OPEN: QS NFC tile shown
3618 // ACTION: QS NFC tile tapped
3619 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003620 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003621
Chris Wren26ca65d2016-11-29 10:43:28 -05003622 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003623 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003624 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3625 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3626 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3627 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3628 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3629 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3630
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003631 // ACTION: "Force stop" action on an app
3632 ACTION_APP_FORCE_STOP = 807;
3633
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003634 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3635 // CATEGORY: SETTINGS
3636 // OS: 8.0
3637 MANAGE_EXTERNAL_SOURCES = 808;
3638
Mahaver6cd47162017-01-23 09:59:33 +00003639 // ACTION: Logged when terms activity finishes.
3640 // TIME: Indicates time taken by terms activity to finish in MS.
3641 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3642
3643 // Indicates number of terms displayed on the terms screen.
3644 PROVISIONING_TERMS_COUNT = 810;
3645
3646 // Indicates number of terms read on the terms screen.
3647 PROVISIONING_TERMS_READ = 811;
3648
Winson Chung59fda9e2017-01-20 16:14:51 -08003649 // Logs that the user has edited the picture-in-picture settings.
3650 // CATEGORY: SETTINGS
3651 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3652
Winson Chungf4ac0632017-03-17 12:34:12 -07003653 // ACTION: Allow "Enable picture-in-picture" for an app
3654 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003655
Winson Chungf4ac0632017-03-17 12:34:12 -07003656 // ACTION: Deny "Enable picture-in-picture" for an app
3657 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003658
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003659 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3660 // CATEGORY: SETTINGS
3661 // OS: 8.0
3662 TTS_SLIDERS = 815;
3663
Jason Monk524fb402017-01-25 10:33:31 -05003664 // ACTION: Settings -> Display -> Theme
3665 ACTION_THEME = 816;
3666
chchaob8e253a2017-01-25 12:12:09 -08003667 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3668 // ACTION: Select to Speak configuration is chosen
3669 // SUBTYPE: 0 is off, 1 is on
3670 // CATEGORY: SETTINGS
3671 // OS: N
3672 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3673
Anton Philippov95a553e2017-01-27 00:08:24 +00003674 // OPEN: Settings > System > Backup
3675 // CATEGORY: SETTINGS
3676 // OS: O
3677 BACKUP_SETTINGS = 818;
3678
Winson Chung14fbe142016-12-19 16:18:24 -08003679 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003680 // VALUE: true if it was entered while hiding as a result of moving to
3681 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003682 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3683
3684 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3685 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3686 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3687
3688 // ACTION: The activity currently in picture-in-picture was minimized
3689 // VALUE: True if the PiP was minimized, false otherwise
3690 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3691
3692 // ACTION: Picture-in-picture was dismissed via the dismiss button
3693 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3694 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3695
3696 // ACTION: The visibility of the picture-in-picture meny
3697 // VALUE: Whether or not the menu is visible
3698 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3699
3700 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3701 // logged when the aspect ratio changes
3702 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3703
3704 // The current aspect ratio of the PiP, logged when it changes.
3705 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3706
Chris Wren27a52fa2017-02-01 14:21:43 -05003707 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3708 // CATEGORY: GLOBAL_SYSTEM_UI
3709 // OS: O
3710 FIELD_GESTURE_LENGTH = 826;
3711
3712 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3713 // CATEGORY: GLOBAL_SYSTEM_UI
3714 // OS: O
3715 FIELD_GESTURE_VELOCITY = 827;
3716
Christine Franks27fde392017-02-07 10:21:55 -08003717 // OPEN: Carrier demo mode password dialog
3718 CARRIER_DEMO_MODE_PASSWORD = 828;
3719
Fan Zhang70967f32017-02-13 16:02:24 -08003720 // ACTION: Create a Settings shortcut item.
3721 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3722
3723 // ACTION: A tile in Settings information architecture is clicked
3724 ACTION_SETTINGS_TILE_CLICK = 830;
3725
Julia Reynolds520df6e2017-02-13 09:05:10 -05003726 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
Julia Reynolds67c1e962019-01-04 14:01:10 -05003727 // updated. TYPE_DISMISS: snoozing canceled due to data being cleared on package
Julia Reynolds520df6e2017-02-13 09:05:10 -05003728 // CATEGORY: NOTIFICATION
3729 // OS: O
3730 NOTIFICATION_SNOOZED = 831;
3731
3732 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3733 // OS: O
3734 NOTIFICATION_SNOOZED_CRITERIA = 832;
3735
Fan Zhang65899432017-02-14 13:36:53 -08003736 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003737 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003738 FIELD_CONTEXT = 833;
3739
Fan Zhangd95dcb42017-02-14 13:48:09 -08003740 // ACTION: Settings advanced button is expanded
3741 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3742
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003743 // ACTION: Logs the number of times the saved network evaluator was used to
3744 // recommend a wifi network
3745 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3746
3747 // ACTION: Logs the number of times the recommended network evaluator was
3748 // used to recommend a wifi network
3749 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3750
3751 // ACTION: Logs the number of times a recommended network was resulted in a
3752 // successful connection
3753 // VALUE: true if the connection was successful, false if the connection failed
3754 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3755
Daniel Nishic581bfc2017-02-08 10:18:19 -08003756 // OPEN: Settings > Storage > Games
3757 // CATEGORY: SETTINGS
3758 // OS: O
3759 APPLICATIONS_STORAGE_GAMES = 838;
3760
3761 // OPEN: Settings > Storage > Audio and Music
3762 // CATEGORY: SETTINGS
3763 // OS: O
3764 APPLICATIONS_STORAGE_MUSIC = 839;
3765
3766 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3767 // CATEGORY: SETTINGS
3768 // OS: O
3769 STORAGE_FREE_UP_SPACE_NOW = 840;
3770
3771 // ACTION: Settings > Storage > Files to open the File Manager
3772 // CATEGORY: SETTINGS
3773 // OS: O
3774 STORAGE_FILES = 841;
3775
Fan Zhangb1d49222017-02-15 17:12:58 -08003776 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003777 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003778
Fan Zhang7f2cace2017-02-17 12:05:48 -08003779 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3780 DEFAULT_ASSIST_PICKER = 843;
3781
3782 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3783 DEFAULT_VOICE_INPUT_PICKER = 844;
3784
Daniel Nishi4058a842017-02-21 17:11:35 -08003785 // OPEN: Settings > Storage > [Profile]
3786 SETTINGS_STORAGE_PROFILE = 845;
3787
Doris Lingedb84c32017-02-23 10:56:01 -08003788 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3789 // CATEGORY: SETTINGS
3790 // OS: O
3791 ENCRYPTION_AND_CREDENTIAL = 846;
3792
Fan Zhangb66e5422017-02-24 14:37:45 -08003793 // ACTION: Settings > About device > Build number
3794 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3795
3796 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3797 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3798
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003799 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3800 // CATEGORY: SETTINGS
3801 // OS: O
3802 WIFI_NETWORK_DETAILS = 849;
3803
jackqdyuleia2a14342017-02-28 16:20:48 -08003804 // ACTION: Settings > Battery > Menu > Usage Alerts
3805 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3806
3807 // ACTION: Settings > Battery > Menu > Optimization
3808 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3809
3810 // ACTION: Settings > Battery > Menu > Apps Toggle
3811 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3812
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003813 // ACTION: Settings > Any preference is changed
3814 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3815
3816 // FIELD: The name of preference when it is changed in Settings
3817 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3818
3819 // FIELD: The new value of preference when it is changed in Settings
3820 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3821
Julia Reynoldsd373d782017-03-03 13:32:57 -05003822 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3823 // channel updated
3824 // PACKAGE: the package the channel belongs too
3825 // CATEGORY: NOTIFICATION
3826 // OS: O
3827 ACTION_NOTIFICATION_CHANNEL = 856;
3828
3829 // Tagged data for notification channel. String.
3830 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3831
3832 // Tagged data for notification channel. int.
3833 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3834
3835 // OPEN: Notification channel group created.
3836 // PACKAGE: the package the group belongs to
3837 // CATEGORY: NOTIFICATION
3838 // OS: O
3839 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3840
3841 // Tagged data for notification channel group. String.
3842 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3843
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003844 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3845 // CATEGORY: SETTINGS
3846 // OS: O
3847 SETTINGS_NETWORK_SCORER = 861;
3848
Fan Zhang99861312017-03-07 14:32:38 -08003849 // OPEN: Settings > About device > Model > Hardware info dialog
3850 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3851
mariagpuyol0f5512e2017-03-01 12:09:56 -08003852 // ACTION: Checks whether a contact's phone still exists
3853 // Value 0: It doesn't exist anymore
3854 // Value 1: It still exists
3855 // Value 2: A SecurityException was thrown
3856 // CATEGORY: SETTINGS
3857 // OS: N
3858 ACTION_PHONE_EXISTS = 863;
3859
3860 // ACTION: Retrieves a contact from CP2
3861 // Value 0: Contact retrieved without issues
3862 // Value 1: An IllegalArgumentException was thrown
3863 // CATEGORY: SETTINGS
3864 // OS: N
3865 ACTION_GET_CONTACT = 864;
3866
Chris Wren4d6b54d2017-04-27 16:56:54 -04003867 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003868 // internal platform metrics use.
3869 RESERVED_FOR_LOGBUILDER_PID = 865;
3870
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003871 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3872 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3873
3874 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3875 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3876
3877 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3878 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3879
3880 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3881 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3882
3883 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3884 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3885
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003886 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003887 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003888
Fan Zhang082d21c2017-03-13 15:25:54 -07003889 // ACTION: Settings > App detail > Uninstall
3890 ACTION_SETTINGS_UNINSTALL_APP = 872;
3891
3892 // ACTION: Settings > App detail > Uninstall Device admin app
3893 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3894
3895 // ACTION: Settings > App detail > Disable app
3896 ACTION_SETTINGS_DISABLE_APP = 874;
3897
3898 // ACTION: Settings > App detail > Enable app
3899 ACTION_SETTINGS_ENABLE_APP = 875;
3900
3901 // ACTION: Settings > App detail > Clear data
3902 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3903
3904 // ACTION: Settings > App detail > Clear cache
3905 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3906
3907 // ACTION: Clicking on any search result in Settings.
3908 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3909
3910 // FIELD: Settings inline search result name
3911 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3912
3913 // FIELD: Settings inline search result value
3914 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3915
Fan Zhang53797932017-03-13 17:46:24 -07003916 // ACTION: Settings > Search > Click saved queries
3917 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3918
Doris Lingbf8d9de2017-03-15 11:52:50 -07003919 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3920 // CATEGORY: SETTINGS
3921 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3922
Chris Wren3824c392017-11-27 12:54:14 -05003923 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3924 // PACKAGE: The package name of the app requesting the permission
3925 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003926 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3927
Chris Wren3824c392017-11-27 12:54:14 -05003928 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3929 // PACKAGE: The package name of the app that was granted the permission
3930 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003931 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3932
Chris Wren3824c392017-11-27 12:54:14 -05003933 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3934 // PACKAGE: The package name of the app requesting the permission
3935 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003936 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3937
Chris Wren3824c392017-11-27 12:54:14 -05003938 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3939 // PACKAGE: The package name of the app the permission was revoked for
3940 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003941 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3942
Chris Wren3824c392017-11-27 12:54:14 -05003943 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3944 // PACKAGE: The package name of the app requesting the permission
3945 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003946 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3947
Chris Wren3824c392017-11-27 12:54:14 -05003948 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3949 // PACKAGE: The package name of the app that was granted the permission
3950 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003951 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3952
Chris Wren3824c392017-11-27 12:54:14 -05003953 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
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_DENIED_SYSTEM_ALERT_WINDOW = 889;
3957
Chris Wren3824c392017-11-27 12:54:14 -05003958 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3959 // PACKAGE: The package name of the app the permission was revoked for
3960 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003961 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3962
Chris Wren3824c392017-11-27 12:54:14 -05003963 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
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_REQUEST_WRITE_SETTINGS = 891;
3967
Chris Wren3824c392017-11-27 12:54:14 -05003968 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3969 // PACKAGE: The package name of the app that was granted the permission
3970 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003971 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3972
Chris Wren3824c392017-11-27 12:54:14 -05003973 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
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_DENIED_WRITE_SETTINGS = 893;
3977
Chris Wren3824c392017-11-27 12:54:14 -05003978 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3979 // PACKAGE: The package name of the app the permission was revoked for
3980 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003981 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3982
Chris Wren3824c392017-11-27 12:54:14 -05003983 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
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_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3987
Chris Wren3824c392017-11-27 12:54:14 -05003988 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3989 // PACKAGE: The package name of the app that was granted the permission
3990 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003991 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3992
Chris Wren3824c392017-11-27 12:54:14 -05003993 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
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_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3997
Chris Wren3824c392017-11-27 12:54:14 -05003998 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3999 // PACKAGE: The package name of the app the permission was revoked for
4000 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07004001 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
4002
Todd Kennedy7e5407e2017-03-16 09:51:11 -07004003 // ACTION: Phase 1 of instant application resolution occurred
4004 // OS: O
4005 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
4006
4007 // ACTION: Phase 2 of instant application resolution occurred
4008 // OS: O
4009 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
4010
4011 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
4012 // OS: O
4013 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
4014
4015 // FIELD: The status of an ephemeral resolution phase
4016 // Value 0: success
4017 // Value 1: no full hash match
4018 // OS: O
4019 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
4020
4021 // FIELD - A token to identify all events that are part of the same instant application launch
4022 // OS: O
4023 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
4024
4025 // FIELD - The name of the package responsible for launching the activity
4026 // OS: O
4027 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
4028
4029 // FIELD - Whether or not the launched activity is part of an instant application
4030 // OS: O
4031 APP_TRANSITION_IS_EPHEMERAL = 905;
4032
Felipe Leme21fb1a32018-05-21 11:18:46 -07004033 // An autofill session was started.
4034 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004035 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08004036 // NOTE: starting on OS MR1, it also added the following field:
4037 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4038 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07004039 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004040 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
4041 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
4042 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004043 AUTOFILL_SESSION_STARTED = 906;
4044
4045 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004046 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4047 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004048 // Package: Package of app that is autofilled
4049 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004050 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004051 // the service returned a null response
4052 // NOTE: starting on OS P, it also added the following fields:
4053 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004054 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004055 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4056 // with 1.
4057 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4058 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4059 // was focused.
4060 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004061 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004062 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004063 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004064 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4065 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4066 // - AUTOFILL_UI_LATENCY
4067 // - AUTOFILL_AUTHENTICATED;
4068 // - AUTOFILL_DATASET_AUTHENTICATED
4069 // - AUTOFILL_INVALID_AUTHENTICATION
4070 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Felipe Lemed9dc9542018-09-19 11:54:28 -07004071 // NOTE: starting on OS Q, it also added the following fields:
4072 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Felipe Lemea3033852019-01-18 16:32:33 -08004073 // Tag FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS: number of requests made to the augmented
4074 // autofill service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004075 AUTOFILL_REQUEST = 907;
4076
4077 // Tag of a field for a package of an autofill service
4078 FIELD_AUTOFILL_SERVICE = 908;
4079
4080 // Tag of a field for the number of datasets
4081 FIELD_AUTOFILL_NUM_DATASETS = 909;
4082
4083 // An autofill dataset selection UI was shown
4084 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4085 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4086 // Type TYPE_ACTION: dataset was selected
4087 // Type TYPE_DETAIL: authentication was selected
4088 // Package: Package of app that was autofilled
4089 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4090 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004091 // NOTE: starting on OS P, it also added the following fields:
4092 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004093 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004094 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004095 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004096 AUTOFILL_FILL_UI = 910;
4097
4098 // Tag of a field for the length of the filter text
4099 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4100
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004101 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004102 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004103 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004104 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004105 AUTOFILL_AUTHENTICATED = 912;
4106
4107 // An activity was autofilled and all values could be applied
4108 // Package: Package of app that is autofilled
4109 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4110 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004111 // NOTE: starting on OS P, it also added the following fields:
4112 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004113 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004114 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004115 AUTOFILL_DATASET_APPLIED = 913;
4116
4117 // Tag of a field for the number values to be filled in
4118 FIELD_AUTOFILL_NUM_VALUES = 914;
4119
4120 // Tag of a field for the number of views that were filled
4121 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4122
4123 // An autofill save UI was shown
4124 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4125 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4126 // Type TYPE_ACTION: data was saved
4127 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004128 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004129 // NOTE: starting on OS P, it also added the following fields:
4130 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004131 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004132 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004133 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004134 // NOTE: starting on OS Q, it also added the following fields:
4135 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004136 AUTOFILL_SAVE_UI = 916;
4137
4138 // Tag of a field for the number of saveable ids
4139 FIELD_AUTOFILL_NUM_IDS = 917;
4140
Felipe Leme21fb1a32018-05-21 11:18:46 -07004141 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004142 // Type TYPE_SUCCESS: The request succeeded right away
4143 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004144 // Type TYPE_FAILURE: The request failed
4145 // Package: Package of app that was autofilled
4146 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004147 // NOTE: starting on OS P, it also added the following fields:
4148 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004149 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004150 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemed9dc9542018-09-19 11:54:28 -07004151 // NOTE: starting on OS Q, it also added the following fields:
4152 // Tag FIELD_AUTOFILL_TEXT_LEN: length of the error message provided by the service
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004153 AUTOFILL_DATA_SAVE_REQUEST = 918;
4154
4155 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004156 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004157 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004158 // NOTE: starting on OS P, it also added the following fields:
4159 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004160 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004161 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4162 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4163 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004164 AUTOFILL_SESSION_FINISHED = 919;
4165
Chris Wren148805582017-03-17 17:18:11 -04004166 // meta-event: a reader has checkpointed the log here.
4167 METRICS_CHECKPOINT = 920;
4168
Fan Zhanged1845f2017-03-23 14:46:59 -07004169 // OPEN: Settings -> Display -> When in VR Mode
4170 VR_DISPLAY_PREFERENCE = 921;
4171
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004172 // OPEN: Settings > Accessibility > Magnification
4173 // CATEGORY: SETTINGS
4174 // OS: O
4175 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004176
4177 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4178 // app.
4179 // VALUE: The package name of the app
4180 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4181
Fan Zhang1a34e752017-03-24 13:44:51 -07004182 // OPEN: Settings -> System -> Reset options
4183 RESET_DASHBOARD = 924;
4184
Jason Monk8c09ac72017-03-16 11:53:40 -04004185 // ACTION: QS -> Tile clicked
4186 ACTION_QS_CLICK = 925;
4187
4188 // ACTION: QS -> Secondary click
4189 ACTION_QS_SECONDARY_CLICK = 926;
4190
4191 // FIELD: Position info in QS clicks
4192 FIELD_QS_POSITION = 927;
4193
4194 // FIELD: The value of a QS tile when clicked (if applicable)
4195 FIELD_QS_VALUE = 928;
4196
4197 // ACTION: QS -> Detail panel -> more settings
4198 ACTION_QS_MORE_SETTINGS = 929;
4199
4200 // ACTION: QS -> Click date
4201 ACTION_QS_DATE = 930;
4202
Jason Monk1b775652017-03-31 15:42:27 -04004203 // ACTION: Event on nav button
4204 ACTION_NAV_BUTTON_EVENT = 931;
4205
4206 // FIELD: Flags for a nav button event
4207 FIELD_FLAGS = 932;
4208
4209 // FIELD: Action for a nav button event
4210 FIELD_NAV_ACTION = 933;
4211
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004212 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4213 // CATEGORY: SETTINGS
4214 // OS: O
4215 FINGERPRINT_REMOVE_SIDECAR = 934;
4216
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004217 // OPEN: Settings > Storage > Movies & TV
4218 // CATEGORY: SETTINGS
4219 // OS: O
4220 APPLICATIONS_STORAGE_MOVIES = 935;
4221
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004222 // OPEN: Text selection "assist" menu item shown.
4223 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4224 // CATEGORY: TEXT_CONTROLS
4225 // OS: O
4226 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4227
4228 // ACTION: Text selection "assist" menu item clicked.
4229 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4230 // CATEGORY: TEXT_CONTROLS
4231 // OS: O
4232 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4233
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004234 // OPEN: Settings > Security > Managed Device Info > Apps installed
4235 // CATEGORY: SETTINGS
4236 // OS: O
4237 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4238
4239 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4240 // CATEGORY: SETTINGS
4241 // OS: O
4242 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4243
4244 // OPEN: Settings > Security > Managed Device Info > Default apps
4245 // CATEGORY: SETTINGS
4246 // OS: O
4247 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4248
Julia Reynolds80b18072017-04-23 12:27:07 -04004249 // OPEN: Settings > Notifications > An app > A channel > Importance
4250 // CATEGORY: SETTINGS
4251 // OS: O
4252 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4253
4254 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4255 // CATEGORY: SETTINGS
4256 // OS: O
4257 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4258
Chris Wren4d6b54d2017-04-27 16:56:54 -04004259 // This value should never appear in log outputs - it is reserved for
4260 // internal platform metrics use.
4261 RESERVED_FOR_LOGBUILDER_UID = 943;
4262
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004263 // OPEN: Running background apps notification > List of background apps
4264 // CATEGORY: GLOBAL_SYSTEM_UI
4265 // OS: O
4266 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4267
Jorim Jaggi515dd682017-05-05 15:05:07 +02004268 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4269 // client.
4270 // OS: O
4271 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4272
Chris Wrenb3921792017-06-01 13:34:46 -04004273 // FIELD - The group ID of a notification.
4274 // Type: string
4275 // OS: O
4276 FIELD_NOTIFICATION_GROUP_ID = 946;
4277
4278 // FIELD - If the notification is a group summary: 1.
4279 // Type: int encoded boolean
4280 // OS: O
4281 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4282
Felipe Leme637e05e2017-12-06 12:09:37 -08004283 // An app attempted to forge a different component name in the AssisStructure that would be
4284 // passed to the autofill service.
4285 // OS: O (security patch)
4286 // Package: Real package of the app being autofilled
4287 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4288 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004289 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004290 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004291 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4292
4293 // FIELD - The component that an app tried tro forged.
4294 // Type: string
4295 // OS: O (security patch)
4296 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4297
Chris Wren26ca65d2016-11-29 10:43:28 -05004298 // ---- End O Constants, all O constants go above this line ----
4299
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004300 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4301 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4302
jackqdyulei92e492e2017-04-28 13:04:42 -07004303 // OPEN: Settings > Battery > High Usage > Abnormal app page
4304 // CATEGORY: SETTINGS
4305 FUELGAUGE_ANOMALY_DETAIL = 987;
4306
4307 // OPEN: Settings > Battery > High Usage
4308 DIALOG_HANDLE_ANOMALY = 988;
4309
Jonathan Solnita4138162017-05-10 21:06:04 -07004310 // ACTION: Camera lift gesture
4311 // CATEGORY: GLOBAL_SYSTEM_UI
4312 // OS: O
4313 ACTION_CAMERA_LIFT_TRIGGER = 989;
4314
Maurice Lam76ae09c2017-05-05 12:03:49 -07004315 // OPEN: Choose screen lock dialog in Settings
4316 // CATEGORY: SETTINGS
4317 // OS: O DR
4318 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4319
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004320 // OPEN: Assist Gesture training intro in Settings
4321 // CATEGORY: SETTINGS
4322 // OS: O DR
4323 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4324
4325 // OPEN: Assist Gesture training enrolling in Settings
4326 // CATEGORY: SETTINGS
4327 // OS: O DR
4328 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4329
4330 // OPEN: Assist Gesture training finished in Settings
4331 // CATEGORY: SETTINGS
4332 // OS: O DR
4333 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4334
Fan Zhangc666a202017-05-18 17:50:20 -07004335 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4336 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4337
4338 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4339 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4340
Philip Quinn0f9566d2017-05-23 10:32:08 -07004341 // OPEN: Settings > System > Languages & input > Assist gesture
4342 // CATEGORY: SETTINGS
4343 // OS: O DR
4344 SETTINGS_ASSIST_GESTURE = 996;
4345
4346 // ACTION: Assist gesture released without triggering
4347 // CATEGORY: GLOBAL_SYSTEM_UI
4348 // OS: O DR
4349 ASSIST_GESTURE_RELEASED = 997;
4350
4351 // ACTION: Assist gesture primed
4352 // CATEGORY: GLOBAL_SYSTEM_UI
4353 // OS: O DR
4354 ASSIST_GESTURE_PRIMED = 998;
4355
4356 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004357 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004358 // CATEGORY: GLOBAL_SYSTEM_UI
4359 // OS: O DR
4360 ASSIST_GESTURE_TRIGGERED = 999;
4361
Fan Zhang238162b2017-05-25 14:01:41 -07004362 // ACTION: Update default app from Settings
4363 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4364
4365 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004366 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004367
4368 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004369 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004370
Adrian Roos1c81d772017-05-25 18:00:21 -07004371 // OPEN: Settings > Display > Ambient Display
4372 // CATEGORY: SETTINGS
4373 // OS: O DR
4374 AMBIENT_DISPLAY_SETTINGS = 1003;
4375
Hugo Benichi11da42b2017-05-31 11:11:37 +09004376 // ACTION: CaptivePortalLoginActivity starts
4377 // CATEGORY: GLOBAL_SYSTEM_UI
4378 // OS: O DR
4379 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4380
4381 // ACTION: CaptivePortalLoginActivity auto-closes
4382 // CATEGORY: GLOBAL_SYSTEM_UI
4383 // OS: O DR
4384 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4385
4386 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4387 // CATEGORY: GLOBAL_SYSTEM_UI
4388 // OS: O DR
4389 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4390
4391 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4392 // CATEGORY: GLOBAL_SYSTEM_UI
4393 // OS: O DR
4394 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4395
4396 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4397 // CATEGORY: SETTINGS
4398 // OS: O DR
4399 ACTION_WIFI_SIGNIN = 1008;
4400
Antony Sargentf3cc3172017-05-04 14:58:06 -07004401 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4402 // CATEGORY: SETTINGS
4403 // OS: O DR
4404 BLUETOOTH_DEVICE_DETAILS = 1009;
4405
fanzhang172255759d2017-06-05 21:43:47 -07004406 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4407 CONFIGURE_KEYGUARD_DIALOG = 1010;
4408
Fan Zhange33c70d2017-06-06 12:37:13 -07004409 // Open: Settings > Search > No Result View
4410 SETTINGS_SEARCH_NO_RESULT = 1011;
4411
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004412 // OPEN: Assist Gesture before training
4413 // CATEGORY: SETTINGS
4414 // OS: O DR
4415 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4416
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004417 // CaptivePortalLoginActivity displays SSL error page
4418 // CATEGORY: GLOBAL_SYSTEM_UI
4419 // OS: O DR
4420 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4421
Fan Zhang1a0fc992017-06-13 13:45:21 -07004422 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4423 WIFI_TETHER_SETTINGS = 1014;
4424
Antony Sargentc3b5da62017-06-16 11:50:13 -07004425 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4426 // -> Edit name button.
4427 // CATEGORY: SETTINGS
4428 // OS: O DR
4429 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4430
Fan Zhang543587d2017-06-19 12:32:14 -07004431 // ACTION: Settings > Notification Settings > Open application notification
4432 // CATEGORY: SETTINGS
4433 // OS: O DR
4434 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4435
4436 // ACTION: Settings > App Info > Open app settings
4437 // CATEGORY: SETTINGS
4438 // OS: O DR
4439 ACTION_OPEN_APP_SETTING = 1017;
4440
jackqdyulei2f1a3592017-06-19 13:11:05 -07004441 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4442 // CATEGORY: SETTINGS
4443 // OS: O DR
4444 BLUETOOTH_PAIRING = 1018;
4445
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004446 // ACTION: Collect PSD Signals
4447 // CATEGORY: SETTINGS
4448 // OS: O DR
4449 ACTION_PSD_LOADER = 1019;
4450
jackqdyulei602bcc92017-06-21 15:17:53 -07004451 // ACTION: Background check action on an app
4452 // CATEGORY: SETTINGS
4453 // OS: O DR
4454 ACTION_APP_BACKGROUND_CHECK = 1020;
4455
4456 // ACTION: Location check action on an app
4457 // CATEGORY: SETTINGS
4458 // OS: O DR
4459 ACTION_APP_LOCATION_CHECK = 1021;
4460
Charlie Wang15a36ed2017-06-14 14:46:39 -07004461 // Device headset status
4462 // CATEGORY: OTHER
4463 // SUBTYPE: 1 is DON, 2 is DOFF
4464 // OS: O DR
4465 ACTION_HEADSET_STATUS = 1022;
4466
4467 // Device Headset Plug status
4468 // CATEGORY: OTHER
4469 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4470 // OS: O DR
4471 ACTION_HEADSET_PLUG = 1023;
4472
4473 // Device Headset battery level on Plug
4474 // CATEGORY: OTHER
4475 // FIELD - The battery percentage when the user decided to plug in
4476 // Type: integer
4477 // OS: O DR
4478 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4479
Charlie Wang566ec702017-06-26 15:30:03 -07004480 // Device Headset battery level on Plug
4481 // CATEGORY: OTHER
4482 // FIELD - The battery percentage when the user decided to plug in
4483 // Type: integer
4484 // OS: O DR
4485 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4486
Charlie Wang15a36ed2017-06-14 14:46:39 -07004487 // Device Headset Pose status
4488 // CATEGORY: OTHER
4489 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4490 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004491 ACTION_HEADSET_POSE_STATUS = 1026;
4492
4493 // Device Headset Usage session time
4494 // CATEGORY: OTHER
4495 // FIELD - The time the headset was used in a session
4496 // OS: O DR
4497 FIELD_SESSION_TIME_MS = 1027;
4498
4499 // Device Headset Idle time
4500 // CATEGORY: OTHER
4501 // FIELD - The time in between each session
4502 // OS: O DR
4503 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4504
4505 // Device Headset charge session time
4506 // CATEGORY: OTHER
4507 // FIELD - The time taken for each charge
4508 // OS: O DR
4509 FIELD_TIME_OF_CHARGE_MS = 1029;
4510
4511 // Device Headset time between charge
4512 // CATEGORY: OTHER
4513 // FIELD - The time in between each charge
4514 // OS: O DR
4515 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004516
Antony Sargentca701a22017-07-05 17:02:00 -07004517 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4518 // -> Forget button.
4519 // CATEGORY: SETTINGS
4520 // OS: O DR
4521 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4522
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004523 // An event from the camera service
4524 // CATEGORY: OTHER
4525 // SUBTYPE: CameraEvent
4526 // OS: O DR
4527 ACTION_CAMERA_EVENT = 1032;
4528
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004529 // OPEN: Settings > Trampoline Intent > Settings page
4530 // CATEGORY: SETTINGS
4531 // OS: O DR
4532 TRAMPOLINE_SETTINGS_EVENT = 1033;
4533
Chris Wren9a4f2662017-06-29 10:10:02 -04004534 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4535
Malcolm Chen21062542017-06-20 11:36:01 -07004536 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4537 // CATEGORY: SETTINGS
4538 // OS: O MR
4539 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4540
4541 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4542 // CATEGORY: SETTINGS
4543 // OS: O MR
4544 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4545
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004546 // FIELD - State of asynchronous ranking when Settings search result is clicked
4547 // CATEGORY: SETTINGS
4548 // OS: O MR
4549 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4550
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004551 // ACTION: Settings > Connected devices > SMS Mirroring
4552 // CATEGORY: SETTINGS
4553 // OS: O MR
4554 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4555
Kang Li2c571892017-07-05 14:47:32 -07004556 // ACTION: Chooser picked a ranked target.
4557 // CATEGORY: GLOBAL_SYSTEM_UI
4558 // OS: O MR
4559 ACTION_TARGET_SELECTED = 1085;
4560
4561 // FIELD - is category used in Chooser: 1.
4562 // Type: int encoded boolean
4563 // CATEGORY: GLOBAL_SYSTEM_UI
4564 // OS: O MR
4565 FIELD_IS_CATEGORY_USED = 1086;
4566
4567 // FIELD - ranked position of selected target for Chooser.
4568 // CATEGORY: GLOBAL_SYSTEM_UI
4569 // OS: O MR
4570 FIELD_RANKED_POSITION = 1087;
4571
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004572 // OPEN: Settings > Data plan usage
4573 // CATEGORY: SETTINGS
4574 // OS: O MR
4575 DATA_PLAN_USAGE_SUMMARY = 1088;
4576
Doris Lingce007eb2017-08-09 13:59:46 -07004577 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4578 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4579
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004580 // ACTION: Logged when the app has notified that it has fully drawn. See
4581 // Activity.reportFullyDrawn().
4582 APP_TRANSITION_REPORTED_DRAWN = 1090;
4583
4584 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4585 // the app transition.
4586 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4587
Daniel Nishia86115f2017-08-23 10:27:08 -07004588 // OPEN: Settings > Storage > Photos & Videos
4589 // CATEGORY: SETTINGS
4590 // OS: O MR
4591 APPLICATIONS_STORAGE_PHOTOS = 1092;
4592
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004593 // ACTION: Logged when the status bar icons change.
4594 // OS: O MR
4595 STATUS_BAR_ICONS_CHANGED = 1093;
4596
4597 // FIELD: Bitfield indicating which icons are shown.
4598 // OS: O MR
4599 FIELD_STATUS_ICONS = 1094;
4600
4601 // FIELD: Number of status icons currently shown.
4602 // OS: O MR
4603 FIELD_NUM_STATUS_ICONS = 1095;
4604
Jack He4b605792017-09-01 11:48:30 -07004605 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4606 // CATEGORY: SETTINGS
4607 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004608 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004609
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004610 // FIELD - Whether smart suggestion ranking was enabled or not
4611 // Type: int encoded boolean
4612 // CATEGORY: SETTINGS
4613 // OS: O MR
4614 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4615
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004616 // ACTION: The device boots
4617 ACTION_BOOT = 1098;
4618
4619 // FIELD: A string value representing some state of the platform, e.g., boot reason
4620 FIELD_PLATFORM_REASON = 1099;
4621
Jan Althaus786a39d2017-09-15 10:41:16 +02004622 // CATEGORY: The category for all actions relating to selection session logging.
4623 // OS: O MR
4624 TEXT_SELECTION_SESSION = 1100;
4625
4626 // ACTION: A selection session started (i.e. the selection handles appeared)
4627 // CATEGORY: TEXT_SELECTION_SESSION
4628 // OS: O MR
4629 ACTION_TEXT_SELECTION_START = 1101;
4630
4631 // ACTION: The user modified the selection (e.g. by dragging the handles)
4632 // CATEGORY: TEXT_SELECTION_SESSION
4633 // OS: O MR
4634 ACTION_TEXT_SELECTION_MODIFY = 1102;
4635
4636 // ACTION: The user modified the selection by pressing the "select all" button.
4637 // CATEGORY: TEXT_SELECTION_SESSION
4638 // OS: O MR
4639 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4640
4641 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4642 // CATEGORY: TEXT_SELECTION_SESSION
4643 // OS: O MR
4644 ACTION_TEXT_SELECTION_RESET = 1104;
4645
4646 // ACTION: Smart selection made a single word prediction
4647 // CATEGORY: TEXT_SELECTION_SESSION
4648 // OS: O MR
4649 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4650
4651 // ACTION: Smart selection made a multi word prediction
4652 // CATEGORY: TEXT_SELECTION_SESSION
4653 // OS: O MR
4654 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4655
4656 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4657 // CATEGORY: TEXT_SELECTION_SESSION
4658 // OS: O MR
4659 ACTION_TEXT_SELECTION_AUTO = 1107;
4660
4661 // ACTION: A selection session ended with the user typing over the text
4662 // CATEGORY: TEXT_SELECTION_SESSION
4663 // OS: O MR
4664 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4665
4666 // ACTION: A selection session ended with the user copying the text
4667 // CATEGORY: TEXT_SELECTION_SESSION
4668 // OS: O MR
4669 ACTION_TEXT_SELECTION_COPY = 1109;
4670
4671 // ACTION: A selection session ended with the user pasting over the text
4672 // CATEGORY: TEXT_SELECTION_SESSION
4673 // OS: O MR
4674 ACTION_TEXT_SELECTION_PASTE = 1110;
4675
4676 // ACTION: A selection session ended with the user cutting the text
4677 // CATEGORY: TEXT_SELECTION_SESSION
4678 // OS: O MR
4679 ACTION_TEXT_SELECTION_CUT = 1111;
4680
4681 // ACTION: A selection session ended with the user pressing the share button
4682 // CATEGORY: TEXT_SELECTION_SESSION
4683 // OS: O MR
4684 ACTION_TEXT_SELECTION_SHARE = 1112;
4685
4686 // ACTION: A selection session ended with the user pressing the smart share button
4687 // CATEGORY: TEXT_SELECTION_SESSION
4688 // OS: O MR
4689 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4690
4691 // ACTION: A selection session ended with the user dragging the text
4692 // CATEGORY: TEXT_SELECTION_SESSION
4693 // OS: O MR
4694 ACTION_TEXT_SELECTION_DRAG = 1114;
4695
4696 // ACTION: A selection session ended with the user abandoning the selection
4697 // CATEGORY: TEXT_SELECTION_SESSION
4698 // OS: O MR
4699 ACTION_TEXT_SELECTION_ABANDON = 1115;
4700
4701 // ACTION: A selection session ended with the user picking an unhandled action bar item
4702 // CATEGORY: TEXT_SELECTION_SESSION
4703 // OS: O MR
4704 ACTION_TEXT_SELECTION_OTHER = 1116;
4705
4706 // FIELD: Time in milliseconds from the start of the session to this event
4707 // CATEGORY: TEXT_SELECTION_SESSION
4708 // OS: O MR
4709 FIELD_SELECTION_SINCE_START = 1117;
4710
4711 // FIELD: time in milliseconds between the last event in the session and this one
4712 // CATEGORY: TEXT_SELECTION_SESSION
4713 // OS: O MR
4714 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4715
4716 // FIELD: a random uid for a selection session (lasting from select start to end)
4717 // CATEGORY: TEXT_SELECTION_SESSION
4718 // OS: O MR
4719 FIELD_SELECTION_SESSION_ID = 1119;
4720
4721 // FIELD: the sequence number of the event in the session
4722 // CATEGORY: TEXT_SELECTION_SESSION
4723 // OS: O MR
4724 FIELD_SELECTION_SESSION_INDEX = 1120;
4725
4726 // FIELD: a concatenation of the widget type and ML model version.
4727 // CATEGORY: TEXT_SELECTION_SESSION
4728 // OS: O MR
4729 FIELD_SELECTION_VERSION_TAG = 1121;
4730
4731 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4732 // packed 16bit integers. (start in MSBs, end in LSBs)
4733 // CATEGORY: TEXT_SELECTION_SESSION
4734 // OS: O MR
4735 FIELD_SELECTION_RANGE = 1122;
4736
4737 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4738 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4739 // CATEGORY: TEXT_SELECTION_SESSION
4740 // OS: O MR
4741 FIELD_SELECTION_SMART_RANGE = 1123;
4742
Felipe Lemeb22d6352017-09-08 20:03:53 -07004743 // The value of an autofillable and savable view was reset
4744 // Package: Package of app that was autofilled
4745 // OS: O MR
4746 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4747 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004748 // NOTE: starting on OS P, it also added the following fields:
4749 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004750 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004751 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004752 AUTOFILL_VALUE_RESET = 1124;
4753
4754 // Tag of AUTOFILL_VALUE_RESET
4755 // OS: O MR
4756 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4757
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004758 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004759 // Package: Package of app that was autofilled
4760 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004761 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004762 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4763
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004764 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004765 // Package: Package of app that was autofilled
4766 // OS: O MR
4767 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004768 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004769 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4770
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004771 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004772 // Package: Package of app that was autofilled
4773 // OS: O MR
4774 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004775 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004776 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4777
Felipe Leme2c888422017-10-26 12:46:35 -07004778 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004779 // Package: Package of app that is autofilled
4780 // OS: O MR
4781 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4782 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004783 // NOTE: starting on OS P, it also added the following fields:
4784 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004785 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004786 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004787 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4788
4789 // FIELD - Type of save object passed by the service when the Save UI is shown
4790 // OS: O MR
4791 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4792
Felipe Leme2c888422017-10-26 12:46:35 -07004793 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004794 // Package: Package of app that is autofilled
4795 // OS: O MR
4796 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4797 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004798 // NOTE: starting on OS P, it also added the following fields:
4799 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004800 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004801 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004802 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4803
Felipe Leme2c888422017-10-26 12:46:35 -07004804 // 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 -07004805 // Package: Package of app that is autofilled
4806 // OS: O MR
4807 // Type TYPE_UNKNOWN: The link was not properly set by the service
4808 // Type TYPE_OPEN: The link launched an activity
4809 // Type TYPE_FAILURE: The link could not launc an activity
4810 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4811 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004812 // NOTE: starting on OS P, it also added the following fields:
4813 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004814 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004815 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004816 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4817
4818 // Result of the validation on save when an autofill service provided a validator
4819 // Package: Package of app that is autofilled
4820 // OS: O MR
4821 // Type TYPE_FAILURE: The validation could not be performed due to an error
4822 // Type TYPE_SUCCESS: The validation passed
4823 // Type TYPE_DISMISS: The validation failed
4824 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4825 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004826 // NOTE: starting on OS P, it also added the following fields:
4827 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004828 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004829 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004830 AUTOFILL_SAVE_VALIDATION = 1133;
4831
Felipe Leme2c888422017-10-26 12:46:35 -07004832 // 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 -07004833 // provided by the autofill service
4834 // Package: Package of app that is autofilled
4835 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004836 // Type TYPE_OPEN: The autofill save UI was restored
4837 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004838 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004839 // NOTE: starting on OS P, it also added the following fields:
4840 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004841 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004842 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004843 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4844
Felipe Leme9d414492017-09-20 13:55:28 -07004845 // Autofill service called API that disables itself
4846 // Package: Package of the autofill service
4847 // OS: O MR
4848 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4849
Felipe Leme21fb1a32018-05-21 11:18:46 -07004850 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004851 // Reports how long it took to show the autofill UI after a field was focused
4852 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004853 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4854 // Package: Package of the autofill service
4855 // OS: O MR
4856 AUTOFILL_UI_LATENCY = 1136;
4857
Chris Wren21a2e722017-10-02 17:44:53 -04004858 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4859 // OS: O MR
4860 NOTIFICATION_SNOOZE_CLICKED = 1137;
4861
4862 // Action: user selected a notification snooze duration from the drop down
4863 // OS: O MR
4864 NOTIFICATION_SELECT_SNOOZE = 1138;
4865
4866 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4867 // OS: O MR
4868 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4869
4870 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4871 // OS: O MR
4872 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4873
4874 // Action: user tapped undo on the notification snooze leave-behind
4875 // OS: O MR
4876 NOTIFICATION_UNDO_SNOOZE = 1141;
4877
4878 // Action: user togged the visibility of the notification snooze options drop down
4879 // OS: O MR
4880 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4881
Romain Guy62e8c172017-10-24 21:37:34 +01004882 // OPEN: Settings > Display > Colors
4883 // CATEGORY: SETTINGS
4884 // OS: O MR
4885 COLOR_MODE_SETTINGS = 1143;
4886
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004887 // Enclosing category for group of APP_TRANSITION_FOO events,
4888 // logged when we cancel an app transition.
4889 APP_TRANSITION_CANCELLED = 1144;
4890
Felipe Lemeb659adb2018-01-18 15:21:36 -08004891 // Tag of a field representing a duration on autofill-related metrics.
4892 FIELD_AUTOFILL_DURATION = 1145;
4893
Doris Lingce007eb2017-08-09 13:59:46 -07004894 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4895
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004896 // OPEN: Settings > Network & Internet > Mobile network
4897 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004898 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004899
4900 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4901 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004902 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004903
4904 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4905 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004906 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004907
4908 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4909 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004910 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004911
4912 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4913 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004914 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004915
4916 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4917 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004918 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004919
4920 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4921 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004922 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004923
4924 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4925 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004926 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004927
4928 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4929 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004930 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004931
4932 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4933 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004934 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004935
4936 // ACTION: Settings > Network & Internet > Mobile network > Network
4937 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004938 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004939
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004940 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004941 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004942
4943 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4944 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004945 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004946
4947 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4948 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004949 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004950
4951 // OPEN: Settings > Network & Internet > Mobile network > System select
4952 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004953 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004954
4955 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4956 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004957 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004958
4959 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4960 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004961 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004962
Fan Zhanga2f2c912017-08-15 17:20:37 -07004963 // OPEN: Settings > Developer Options > Experiment dashboard
4964 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004965 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004966
Julia Reynolds005c8b92017-08-24 10:35:53 -04004967 // OPEN: Settings > Notifications > [App] > Topic Notifications
4968 // CATEGORY: SETTINGS
4969 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004970 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004971
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004972 // OPEN: Settings > Developer options > Enable > Info dialog
4973 // CATEGORY: SETTINGS
4974 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004975 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004976
jeffreyhuang57359c02017-09-18 11:34:00 -07004977 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4978 // CATEGORY: SETTINGS
4979 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004980 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004981
Kevin Chyn60eea712017-09-26 16:03:05 -07004982 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4983 // CATEGORY: SETTINGS
4984 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004985 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004986
jeffreyhuang37c4b132017-09-21 14:09:20 -07004987 // OPEN: Settings > Developer options > USB debugging > Info dialog
4988 // CATEGORY: SETTINGS
4989 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004990 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004991
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004992 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4993 // CATEGORY: SETTINGS
4994 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004995 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004996
Fan Zhange5b34302017-10-09 15:58:38 -07004997 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004998 // CATEGORY: SETTINGS
4999 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07005000 DEVELOPMENT_QS_TILE_CONFIG = 1224;
5001
jeffreyhuang49de1252017-10-05 15:25:14 -07005002 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
5003 // CATEGORY: SETTINGS
5004 // OS: P
5005 DIALOG_LOG_PERSIST = 1225;
5006
Beverly04216872017-09-28 10:55:32 -04005007 // ACTION: DND Settings > Priority only allows > Alarms toggle
5008 // SUBTYPE: 0 is off, 1 is on
5009 // CATEGORY: SETTINGS
5010 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005011 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04005012
5013 // ACTION: DND Settings > Priority only allows > Media toggle
5014 // SUBTYPE: 0 is off, 1 is on
5015 // CATEGORY: SETTINGS
5016 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005017 ACTION_ZEN_ALLOW_MEDIA = 1227;
5018
5019 // An autofill service explicitly defined which view should commit the autofill context
5020 // Package: Package of app that is autofilled
5021 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005022 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005023 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07005024 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005025 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005026 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
5027
5028 // The autofill context was commited when the user clicked a view explicitly marked by the
5029 // service as committing it
5030 // Package: Package of app that is autofilled
5031 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005032 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07005033 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005034 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07005035 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04005036
Malcolm Chen4f17b172017-10-19 13:54:07 -07005037 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
5038 // CATEGORY: SETTINGS
5039 // OS: P
5040 WIFI_CALLING_FOR_SUB = 1230;
5041
Felipe Leme17292d12017-10-24 14:03:10 -07005042 // An autofill service asked to disable autofill for a given application.
5043 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005044 // OS: P
5045 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08005046 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005047 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005048 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005049 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5050
5051 // An autofill service asked to disable autofill for a given activity.
5052 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005053 // OS: P
5054 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5055 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005056 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005057 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005058 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005059 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5060
jackqdyuleide3b7af2017-10-24 16:32:58 -07005061 // ACTION: Stop an app and turn on background check
5062 // CATEGORY: SETTINGS
5063 // OS: P
5064 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5065
5066 // FIELD: The action type for each anomaly
5067 // CATEGORY: SETTINGS
5068 // OS: P
5069 FIELD_ANOMALY_ACTION_TYPE = 1234;
5070
5071 // OPEN: Settings -> Battery -> Wakelock anomaly
5072 // CATEGORY: SETTINGS
5073 // OS: P
5074 ANOMALY_TYPE_WAKELOCK = 1235;
5075
5076 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5077 // CATEGORY: SETTINGS
5078 // OS: P
5079 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5080
5081 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5082 // CATEGORY: SETTINGS
5083 // OS: P
5084 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5085
Fan Zhanga4a01722017-10-30 17:54:24 -07005086 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5087 // OS: P
5088 DIALOG_OEM_LOCK_INFO = 1238;
5089
jackqdyulei331fafb2017-11-01 14:01:24 -07005090 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5091 // CATEGORY: SETTINGS
5092 // OS: P
5093 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5094
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005095 // Open: Settings > System > About phone > IMEI
5096 // CATEGORY: SETTINGS
5097 // OS: P
5098 DIALOG_IMEI_INFO = 1240;
5099
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005100 // In permission action fields tagged like this reference the permission affected
5101 FIELD_PERMISSION = 1241;
5102
5103 // ACTION: An app requested a permission and we asked to user to approve the request
5104 // PACKAGE: The package name of the app requesting the permission
5105 // Tag FIELD_PERMISSION: Name of the permission requested
5106 ACTION_PERMISSION_REQUESTED = 1242;
5107
5108 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5109 // or automatically. In the second case there will not be an
5110 // ACTION_PERMISSION_REQUESTED.
5111 // PACKAGE: The package name of the app that was granted the permission
5112 // Tag FIELD_PERMISSION: Name of the permission granted
5113 ACTION_PERMISSION_GRANTED = 1243;
5114
5115 // ACTION: An app requested the a permission and the request was denied by the user or a device
5116 // policy
5117 // PACKAGE: The package name of the app requesting the permission
5118 // Tag FIELD_PERMISSION: Name of the permission denied
5119 ACTION_PERMISSION_DENIED = 1244;
5120
5121 // ACTION: A permission was revoked
5122 // PACKAGE: The package name of the app the permission was revoked for
5123 // Tag FIELD_PERMISSION: Name of the permission revoked
5124 ACTION_PERMISSION_REVOKED = 1245;
5125
jeffreyhuang594314c2017-11-01 10:26:15 -07005126 // OPEN: Settings > System > About Phone > Sim status
5127 // CATEGORY: SETTINGS
5128 // OS: P
5129 DIALOG_SIM_STATUS = 1246;
5130
jeffreyhuang3bd59782017-11-02 11:08:28 -07005131 // OPEN: Settings > System > About Phone > Android Version
5132 // CATEGORY: SETTINGS
5133 // OS: P
5134 DIALOG_FIRMWARE_VERSION = 1247;
5135
jackqdyulei8fe97542017-11-08 16:23:43 -08005136 // OPEN: Settings > Network & internet > Menu > Private DNS
5137 // CATEGORY: SETTINGS
5138 // OS: P
5139 DIALOG_PRIVATE_DNS = 1248;
5140
5141 // ACTION: A private dns mode been selected by user
5142 // CATEGORY: SETTINGS
5143 // OS: P
5144 ACTION_PRIVATE_DNS_MODE = 1249;
5145
Jan Althausae5eb832017-11-06 12:31:59 +01005146 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5147 // CATEGORY: TEXT_SELECTION_SESSION
5148 // OS: P
5149 FIELD_SELECTION_RANGE_START = 1250;
5150
5151 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5152 // CATEGORY: TEXT_SELECTION_SESSION
5153 // OS: P
5154 FIELD_SELECTION_RANGE_END = 1251;
5155
5156 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5157 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5158 // CATEGORY: TEXT_SELECTION_SESSION
5159 // OS: P
5160 FIELD_SELECTION_SMART_RANGE_START = 1252;
5161
5162 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5163 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5164 // CATEGORY: TEXT_SELECTION_SESSION
5165 // OS: P
5166 FIELD_SELECTION_SMART_RANGE_END = 1253;
5167
5168 // FIELD: the entity type of the text currently selected.
5169 // CATEGORY: TEXT_SELECTION_SESSION
5170 // OS: P
5171 FIELD_SELECTION_ENTITY_TYPE = 1254;
5172
5173 // FIELD: the type of widget the selection was made in.
5174 // CATEGORY: TEXT_SELECTION_SESSION
5175 // OS: P
5176 FIELD_SELECTION_WIDGET_TYPE = 1255;
5177
5178 // FIELD: the name of the text classifier model used.
5179 // CATEGORY: TEXT_SELECTION_SESSION
5180 // OS: P
5181 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5182
Beverly625442d2017-11-03 17:27:02 -04005183 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5184 // CATEGORY: SETTINGS
5185 // OS: P
5186 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5187
5188 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5189 // CATEGORY: SETTINGS
5190 // OS: P
5191 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5192
5193 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5194 // CATEGORY: SETTINGS
5195 // OS: P
5196 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5197
5198 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5199 // CATEGORY: SETTINGS
5200 // OS: P
5201 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5202
5203 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5204 // CATEGORY: SETTINGS
5205 // OS: P
5206 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5207
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005208 // FIELD: the version of the widget the selection was made in.
5209 // CATEGORY: TEXT_SELECTION_SESSION
5210 // OS: P
5211 FIELD_SELECTION_WIDGET_VERSION = 1262;
5212
jackqdyulei63193602017-11-27 13:46:48 -08005213 // OPEN: Settings > Battery(version 2)
5214 // CATEGORY: SETTINGS
5215 // OS: P
5216 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5217
jackqdyulei6139eab2017-11-29 14:38:32 -08005218 // OPEN: Settings > Connected devices > Connection preferences
5219 // CATEGORY: SETTINGS
5220 // OS: P
5221 CONNECTION_DEVICE_ADVANCED = 1264;
5222
Fan Zhang5235c052017-12-05 13:49:35 -08005223 // OPEN: Settings > Security > Screen lock gear icon
5224 // CATEGORY: SETTINGS
5225 // OS: P
5226 SCREEN_LOCK_SETTINGS = 1265;
5227
Beverlybf16c142017-11-27 16:21:34 -05005228 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5229 // CATEGORY: SETTINGS
5230 // OS: P
5231 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005232
Beverlybf16c142017-11-27 16:21:34 -05005233 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5234 // CATEGORY: SETTINGS
5235 // OS: P
5236 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5237
5238 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5239 // CATEGORY: SETTINGS
5240 // OS: P
5241 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5242
5243 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5244 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5245 // CATEGORY: SETTINGS
5246 // OS: P
5247 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5248
5249 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5250 // CATEGORY: SETTINGS
5251 // OS: P
5252 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5253
Felipe Leme5e047202017-12-05 16:30:06 -08005254 // Tag of a field for the number of ids in an autofill field classification request.
5255 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5256
5257 // An autofill service updated its user data
5258 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005259 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5260 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005261 // OS: P
5262 AUTOFILL_USERDATA_UPDATED = 1272;
5263
5264 // Some data entered by the user matched the field classification requested by the service.
5265 // Package: Package of app that is autofilled
5266 // Counter: number of matches found
5267 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005268 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005269 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5270 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005271 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005272 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005273 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5274
5275 // Tag used to report autofill field classification scores
5276 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5277
Jerry Zhang18be8db2017-12-15 15:24:41 -08005278 // ACTION: Usb config has been changed to charging
5279 // CATEGORY: SETTINGS
5280 // OS: P
5281 ACTION_USB_CONFIG_CHARGING = 1275;
5282
5283 // ACTION: Usb config has been changed to mtp (file transfer)
5284 // CATEGORY: SETTINGS
5285 // OS: P
5286 ACTION_USB_CONFIG_MTP = 1276;
5287
5288 // ACTION: Usb config has been changed to ptp (photo transfer)
5289 // CATEGORY: SETTINGS
5290 // OS: P
5291 ACTION_USB_CONFIG_PTP = 1277;
5292
5293 // ACTION: Usb config has been changed to rndis (usb tethering)
5294 // CATEGORY: SETTINGS
5295 // OS: P
5296 ACTION_USB_CONFIG_RNDIS = 1278;
5297
5298 // ACTION: Usb config has been changed to midi
5299 // CATEGORY: SETTINGS
5300 // OS: P
5301 ACTION_USB_CONFIG_MIDI = 1279;
5302
5303 // ACTION: Usb config has been changed to accessory
5304 // CATEGORY: SETTINGS
5305 // OS: P
5306 ACTION_USB_CONFIG_ACCESSORY = 1280;
5307
jackqdyuleie04138d2018-01-08 17:51:57 -08005308 // OPEN: Settings > Battery > Smart Battery
5309 // CATEGORY: SETTINGS
5310 // OS: P
5311 FUELGAUGE_SMART_BATTERY = 1281;
5312
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005313 // ACTION: User tapped Screenshot in the power menu.
5314 // CATEGORY: GLOBAL_SYSTEM_UI
5315 // OS: P
5316 ACTION_SCREENSHOT_POWER_MENU = 1282;
5317
Felipe Leme3e099112018-01-18 12:57:45 -08005318 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005319 // CATEGORY: SETTINGS
5320 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005321 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005322
Felipe Leme3e099112018-01-18 12:57:45 -08005323 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005324 // CATEGORY: SETTINGS
5325 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005326 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005327
jackqdyuleid9821242018-01-09 17:42:52 -08005328 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5329 // CATEGORY: SETTINGS
5330 // OS: P
5331 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5332
Beverly92c25682018-01-22 09:27:19 -05005333 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5334 // CATEGORY: SETTINGS
5335 // OS: P
5336 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5337
Mike Digmanc94759d2018-01-23 11:01:21 -08005338 // ACTION: Rotate suggestion accepted in rotation locked mode
5339 // CATEGORY: GLOBAL_SYSTEM_UI
5340 // OS: P
5341 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5342
5343 // OPEN: Rotation suggestion shown in rotation locked mode
5344 // CATEGORY: GLOBAL_SYSTEM_UI
5345 // OS: P
5346 ROTATION_SUGGESTION_SHOWN = 1288;
5347
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005348 // An autofill service was bound using an unofficial(but still supported) permission.
5349 // Package: Package of the autofill service
5350 // OS: P
5351 AUTOFILL_INVALID_PERMISSION = 1289;
5352
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005353 // OPEN: QS Alarm tile shown
5354 // ACTION: QS Alarm tile tapped
5355 // SUBTYPE: 0 is off, 1 is on
5356 // CATEGORY: QUICK_SETTINGS
5357 // OS: P
5358 QS_ALARM = 1290;
5359
Jerry Zhang79147972018-01-31 16:04:06 -08005360 // OPEN: Settings->Connected Devices->USB->(click on details link)
5361 // CATEGORY: SETTINGS
5362 // OS: P
5363 USB_DEVICE_DETAILS = 1291;
5364
Michael Wright98bdc512018-01-26 19:15:57 +00005365 // OPEN: Settings > Accessibility > Vibration
5366 // CATEGORY: SETTINGS
5367 // OS: P
5368 ACCESSIBILITY_VIBRATION = 1292;
5369
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00005370 // OPEN: Settings > Accessibility > Vibration > Notification vibration
Michael Wright98bdc512018-01-26 19:15:57 +00005371 // CATEGORY: SETTINGS
5372 // OS: P
5373 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5374
5375 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5376 // CATEGORY: SETTINGS
5377 // OS: P
5378 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5379
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005380 // OPEN: Volume panel > output chooser dialog
5381 // OS: P
5382 OUTPUT_CHOOSER = 1295;
5383
5384 // Action: Volume panel > output chooser dialog > tap on device
5385 // OS: P
5386 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5387
5388 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5389 // OS: P
5390 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5391
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005392 // OPEN: TV Settings > Home theater control
5393 // OS: P
5394 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5395
5396 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5397 // OS: P
5398 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5399
5400 // OPEN: TV Settings > Device
5401 // OS: P
5402 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5403
5404 // OPEN: TV Settings > Network > Proxy settings
5405 // OS: P
5406 DIALOG_TV_NETWORK_PROXY = 1301;
5407
Makoto Onuki698f7a02018-02-13 15:02:23 -08005408 // Events for battery saver turning on/off and/or the interactive state changes.
5409 // OS: P
5410 BATTERY_SAVER = 1302;
5411
5412 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5413 // OS: P
5414 FIELD_INTERACTIVE = 1303;
5415
5416 // Time spent in milliseconds in the current mode.
5417 // OS: P
5418 FIELD_DURATION_MILLIS = 1304;
5419
Chris Wren8f7a1442018-05-14 17:16:31 -04005420 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005421 // OS: P
5422 FIELD_START_BATTERY_UA = 1305;
5423
Chris Wren8f7a1442018-05-14 17:16:31 -04005424 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005425 // OS: P
5426 FIELD_END_BATTERY_UA = 1306;
5427
5428 // Battery level in % (0-100) when the current "mode" started.
5429 // OS: P
5430 FIELD_START_BATTERY_PERCENT = 1307;
5431
5432 // Battery level in % (0-100) when this event was created.
5433 // OS: P
5434 FIELD_END_BATTERY_PERCENT = 1308;
5435
Christine Frankse257e452018-01-18 11:06:54 -08005436 // ACTION: Settings > Display > Night Light
5437 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5438 // CATEGORY: SETTINGS
5439 // OS: P
5440 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5441
5442 // ACTION: Settings > Display > Night Light
5443 // CATEGORY: SETTINGS
5444 // SUBTYPE: 0 is starting time, 1 is ending time
5445 // OS: P
5446 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5447
5448 // FIELD: Current mode corresponding to a QS tile
5449 // CATEGORY: QUICK SETTINGS
5450 // OS: P
5451 FIELD_QS_MODE = 1311;
5452
Jerry Zhang92306d82018-02-12 18:12:41 -08005453 // OPEN: Settings->Developer Options->Default USB
5454 // CATEGORY: SETTINGS
5455 // OS: P
5456 USB_DEFAULT = 1312;
5457
Jan Althaus31efdc32018-02-19 22:23:13 +01005458 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5459 // OS: P
5460 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5461
5462 // FIELD: milliseconds spent generating links.
5463 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5464 // OS: P
5465 FIELD_LINKIFY_LATENCY = 1314;
5466
5467 // FIELD: length of the input text in characters.
5468 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5469 // OS: P
5470 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5471
5472 // FIELD: number of links detected.
5473 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5474 // OS: P
5475 FIELD_LINKIFY_NUM_LINKS = 1316;
5476
5477 // FIELD: length of all links in characters.
5478 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5479 // OS: P
5480 FIELD_LINKIFY_LINK_LENGTH = 1317;
5481
5482 // FIELD: the type of entity the stats are for.
5483 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5484 // OS: P
5485 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5486
5487 // FIELD: a random uid for a single call to generateLinks
5488 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5489 // OS: P
5490 FIELD_LINKIFY_CALL_ID = 1319;
5491
Calin Juravle759fbda2018-02-20 19:52:30 +00005492 // FIELD: The compiler filter used when when optimizing the package.
5493 // Logged together with app transition events.
5494 // OS: P
5495 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5496
5497 // FIELD: The reason for optimizing the package.
5498 // Logged together with app transition events.
5499 // OS: P
5500 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5501
Emilian Peev6bf0a552018-02-10 02:15:49 +00005502 // FIELD: The camera API level used.
5503 // CATEGORY: CAMERA
5504 // OS: P
5505 FIELD_CAMERA_API_LEVEL = 1322;
5506
jackqdyulei73e6b342018-02-26 14:44:50 -08005507 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5508 // CATEGORY: SETTINGS
5509 // OS: P
5510 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5511
jackqdyuleibb60ea22018-02-26 17:18:12 -08005512 // OPEN: Settings > Battery > Battery tip
5513 // CATEGORY: SETTINGS
5514 // OS: P
5515 ACTION_BATTERY_TIP_SHOWN = 1324;
5516
Maggieb9d76322018-02-16 18:00:30 -08005517 // OPEN: Settings > Security & Location > Location > See all
5518 // CATEGORY: SETTINGS
5519 // OS: P
5520 RECENT_LOCATION_REQUESTS_ALL = 1325;
5521
Evan Laird404a85c2018-02-28 15:31:29 -05005522 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5523 // CATEGORY: GLOBAL_SYSTEM_UI
5524 // OS: P
5525 FIELD_GESTURE_X_PERCENT = 1326;
5526
5527 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5528 // CATEGORY: GLOBAL_SYSTEM_UI
5529 // OS: P
5530 FIELD_GESTURE_Y_PERCENT = 1327;
5531
5532 // ACTION: Expand the notification panel while unlocked
5533 // CATEGORY: GLOBAL_SYSTEM_UI
5534 // OS: P
5535 ACTION_PANEL_VIEW_EXPAND = 1328;
5536
Evan Laird404a85c2018-02-28 15:31:29 -05005537 // FIELD: Rotation of the device
5538 // CATEGORY: GLOBAL_SYSTEM_UI
5539 // OS: P
5540 FIELD_DEVICE_ROTATION = 1329;
5541
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005542 // OPEN: TV Settings > Inputs > Input Options
5543 // CATEGORY: SETTINGS
5544 // OS: P
5545 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5546
5547 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5548 // CATEGORY: SETTINGS
5549 // OS: P
5550 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5551
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005552 // ACTION: DND Settings > What to block > full screen intents
5553 // SUBTYPE: false is allowed, true is blocked
5554 // CATEGORY: SETTINGS
5555 // OS: 6.0
5556 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5557
5558 // ACTION: DND Settings > What to block
5559 // SUBTYPE: false is allowed, true is blocked
5560 // OS: P
5561 ACTION_ZEN_BLOCK_LIGHT = 1333;
5562
5563 // ACTION: DND Settings > What to block
5564 // SUBTYPE: false is allowed, true is blocked
5565 // OS: P
5566 ACTION_ZEN_BLOCK_PEEK = 1334;
5567
5568 // ACTION: DND Settings > What to block
5569 // SUBTYPE: false is allowed, true is blocked
5570 // OS: P
5571 ACTION_ZEN_BLOCK_STATUS = 1335;
5572
5573 // ACTION: DND Settings > What to block
5574 // SUBTYPE: false is allowed, true is blocked
5575 // OS: P
5576 ACTION_ZEN_BLOCK_BADGE = 1336;
5577
5578 // ACTION: DND Settings > What to block
5579 // SUBTYPE: false is allowed, true is blocked
5580 // OS: P
5581 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5582
5583 // ACTION: DND Settings > What to block
5584 // SUBTYPE: false is allowed, true is blocked
5585 // OS: P
5586 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5587
5588 // OPEN: DND Settings > What to block
5589 // OS: P
5590 ZEN_WHAT_TO_BLOCK = 1339;
5591
Beverly8fe33ba2018-03-05 14:32:35 -05005592 // ACTION: DND Settings > Priority only allows > System toggle
5593 // SUBTYPE: 0 is off, 1 is on
5594 // CATEGORY: SETTINGS
5595 // OS: P
5596 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5597
5598 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5599 // CATEGORY: SETTINGS
5600 // OS: P
5601 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5602
5603 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5604 // CATEGORY: SETTINGS
5605 // OS: P
5606 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5607
5608 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5609 // CATEGORY: SETTINGS
5610 // OS: P
5611 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5612
5613 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5614 // CATEGORY: SETTINGS
5615 // OS: P
5616 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5617
Julia Reynolds8dff1862018-03-06 14:20:40 -05005618 // Notification Guts, active app ops variant
5619 // OS: P
5620 APP_OPS_GUTS = 1345;
5621
5622 // ACTION: Notification Guts, active app ops variant > Settings button
5623 // OS: P
5624 ACTION_OPS_GUTS_SETTINGS = 1346;
5625
Lei Yu5674d2d2018-03-08 10:19:43 -08005626 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5627 // OS: P
5628 ACTION_APP_RESTRICTION_TIP = 1347;
5629
5630 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5631 // OS: P
5632 ACTION_HIGH_USAGE_TIP = 1348;
5633
Lei Yue93e5602018-03-08 12:15:38 -08005634 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5635 // OS: P
5636 ACTION_SUMMARY_TIP = 1349;
5637
5638 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5639 // OS: P
5640 ACTION_SMART_BATTERY_TIP = 1350;
5641
5642 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5643 // OS: P
5644 ACTION_EARLY_WARNING_TIP = 1351;
5645
5646 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5647 // OS: P
5648 ACTION_LOW_BATTERY_TIP = 1352;
5649
5650 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5651 // OS: P
5652 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5653
5654 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5655 // OS: P
5656 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5657
Victor Chang76817b82018-03-09 17:22:52 +00005658 // OPEN: Settings > Date & time > Select time zone -> Region
5659 // CATEGORY: SETTINGS
5660 // OS: P
5661 SETTINGS_ZONE_PICKER_REGION = 1355;
5662
5663 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5664 // CATEGORY: SETTINGS
5665 // OS: P
5666 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5667
5668 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5669 // CATEGORY: SETTINGS
5670 // OS: P
5671 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5672
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005673 // Action: notification shade > manage notifications
5674 // OS: P
5675 ACTION_MANAGE_NOTIFICATIONS = 1358;
5676
Chris Wrenaa571c62018-03-14 12:16:04 -04005677 // This value should never appear in log outputs - it is reserved for
5678 // internal platform metrics use.
5679 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5680
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005681 // OPEN: Settings > Gestures > Prevent Ringing
5682 // OS: P
5683 SETTINGS_PREVENT_RINGING = 1360;
5684
Lei Yue92285a2018-03-12 11:28:40 -07005685 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5686 // CATEGORY: SETTINGS
5687 // OS: P
5688 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5689
5690 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5691 // CATEGORY: SETTINGS
5692 // OS: P
5693 ACTION_TIP_RESTRICT_APP = 1362;
5694
5695 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5696 // CATEGORY: SETTINGS
5697 // OS: P
5698 ACTION_TIP_UNRESTRICT_APP = 1363;
5699
5700 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5701 // CATEGORY: SETTINGS
5702 // OS: P
5703 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5704
5705 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5706 // CATEGORY: SETTINGS
5707 // OS: P
5708 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5709
5710 // FIELD: type of anomaly in settings app
5711 // CATEGORY: SETTINGS
5712 // OS: P
5713 FIELD_ANOMALY_TYPE = 1366;
5714
Lei Yu4f704772018-03-20 10:51:58 -07005715 // ACTION: Settings > Anomaly receiver > Anomaly received
5716 // CATEGORY: SETTINGS
5717 // OS: P
5718 ACTION_ANOMALY_TRIGGERED = 1367;
5719
Fan Zhanga85b4872018-03-26 16:52:53 -07005720 // ACTION: Settings > Condition > Device muted
5721 // CATEGORY: SETTINGS
5722 // OS: P
5723 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5724
5725 // ACTION: Settings > Condition > Device vibrate
5726 // CATEGORY: SETTINGS
5727 // OS: P
5728 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5729
hughchen226196b2018-03-27 12:04:59 +08005730 // OPEN: Settings > Connected devices > previously connected devices
5731 // CATEGORY: SETTINGS
5732 // OS: P
5733 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005734
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005735 // ACTION: A Settings Slice is requested
5736 // CATEGORY: SETTINGS
5737 // OS: P
5738 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5739
5740 // ACTION: A Settings Slice is updated with new value
5741 // CATEGORY: SETTINGS
5742 // OS: P
5743 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5744
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005745 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5746 // note: Wifi Scanning must be off for this dialog to show
5747 // CATEGORY: SETTINGS
5748 // OS: P
5749 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5750
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005751 // OPEN: Settings > System > Gestures > Swipe up gesture
5752 // CATEGORY: SETTINGS
5753 // OS: P
5754 SETTINGS_GESTURE_SWIPE_UP = 1374;
5755
Jeff Sharkey46270712018-04-02 09:53:21 -06005756 // OPEN: Settings > Storage > Dialog to format a storage volume
5757 // CATEGORY: SETTINGS
5758 // OS: P
5759 DIALOG_VOLUME_FORMAT = 1375;
5760
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005761 // OPEN: DND onboarding activity > screen on checkbox
5762 // CATEGORY: SETTINGS
5763 // OS: P
5764 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5765
5766 // OPEN: DND onboarding activity > screen off checkbox
5767 // CATEGORY: SETTINGS
5768 // OS: P
5769 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5770
5771 // OPEN: DND onboarding activity > Ok button
5772 // CATEGORY: SETTINGS
5773 // OS: P
5774 ACTION_ZEN_ONBOARDING_OK = 1378;
5775
5776 // OPEN: DND onboarding activity > Settings link
5777 // CATEGORY: SETTINGS
5778 // OS: P
5779 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5780
5781 // OPEN: DND onboarding activity
5782 // CATEGORY: SETTINGS
5783 // OS: P
5784 SETTINGS_ZEN_ONBOARDING = 1380;
5785
Fan Zhanga496b122018-04-10 12:57:56 -07005786 // OPEN: Settings > Display > Auto brightness
5787 // CATEGORY: SETTINGS
5788 // OS: P
5789 SETTINGS_AUTO_BRIGHTNESS = 1381;
5790
Kenny Guy23991102018-04-05 21:18:38 +01005791 // OPEN: Smart replies in a notification seen at least once
5792 // CATEGORY: NOTIFICATION
5793 // PACKAGE: App that posted the notification
5794 // SUBTYPE: Number of smart replies.
5795 // OS: P
5796 SMART_REPLY_VISIBLE = 1382;
5797
5798 // ACTION: Smart reply in a notification clicked.
5799 // CATEGORY: NOTIFICATION
5800 // PACKAGE: App that posted the notification
5801 // SUBTYPE: Index of smart reply clicked.
5802 // OS: P
5803 SMART_REPLY_ACTION = 1383;
5804
5805 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5806 // OS: P
5807 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5808
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005809 // Volume dialog > ringer toggle
5810 // OS: P
5811 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5812
5813 // Volume dialog > settings button
5814 // OS: P
5815 ACTION_VOLUME_SETTINGS = 1386;
5816
Lei Yufc59a572018-04-10 10:52:08 -07005817 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5818 // CATEGORY: SETTINGS
5819 // OS: P
5820 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005821
Lei Yu97a13212018-04-11 15:45:31 -07005822 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5823 // CATEGORY: SETTINGS
5824 // OS: P
5825 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5826
5827 // FIELD: the version code of an app
5828 // CATEGORY: SETTINGS
5829 // OS: P
5830 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005831
Salvador Martinez8e899682018-04-04 14:42:59 -07005832 // OPEN: Settings > Connected Devices > Bluetooth
5833 // CATEGORY: SETTINGS
5834 // OS: P
5835 BLUETOOTH_FRAGMENT = 1390;
5836
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005837 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5838 // an app uses a hidden API.
5839 ACTION_HIDDEN_API_ACCESSED = 1391;
5840
5841 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5842 // access; see enum HiddenApiAccessMethod
5843 // OS: P
5844 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5845
5846 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5847 // denied to the API.
5848 // OS: P
5849 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5850
5851 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5852 // API that was accessed.
5853 // OS: P
5854 FIELD_HIDDEN_API_SIGNATURE = 1394;
5855
Chris Wren8f7a1442018-05-14 17:16:31 -04005856 // The number of items in the shade when this notification event was logged.
5857 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005858 NOTIFICATION_SHADE_COUNT = 1395;
5859
Julia Reynolds5da746a2018-04-23 09:41:21 -04005860 // ACTION: DND Settings > What to block
5861 // OS: P
5862 ACTION_ZEN_SOUND_ONLY = 1396;
5863
5864 // ACTION: DND Settings > Notifications
5865 // OS: P
5866 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5867
5868 // ACTION: DND Settings > Notifications
5869 // OS: P
5870 ACTION_ZEN_SHOW_CUSTOM = 1398;
5871
5872 // ACTION: DND Settings > Notifications
5873 // OS: P
5874 ACTION_ZEN_CUSTOM = 1399;
5875
5876 // Screen: DND Settings > Notifications
5877 // OS: P
5878 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5879
Chris Wrend63dffd2018-04-19 11:12:46 -04005880 // An event category for slices.
5881 // OPEN: Slice became visible.
5882 // CLOSE: Slice became invisible.
5883 // ACTION: Slice was tapped.
5884 SLICE = 1401;
5885
5886 // The authority part of the slice URI
5887 FIELD_SLICE_AUTHORITY = 1402;
5888
5889 // The path part of the slice URI
5890 FIELD_SLICE_PATH = 1403;
5891
5892 // The authority part of the subslice URI
5893 FIELD_SUBSLICE_AUTHORITY = 1404;
5894
5895 // The path part of the subslice URI
5896 FIELD_SUBSLICE_PATH = 1405;
5897
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005898 // OPEN: DND onboarding activity > don't update button
5899 // CATEGORY: SETTINGS
5900 // OS: P
5901 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5902
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005903 // ACTION: Storage initialization wizard initialization choice of external/portable
5904 // CATEGORY: SETTINGS
5905 // OS: P
5906 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5907
5908 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5909 // CATEGORY: SETTINGS
5910 // OS: P
5911 ACTION_STORAGE_INIT_INTERNAL = 1408;
5912
5913 // ACTION: Storage initialization wizard benchmark fast choice of continue
5914 // CATEGORY: SETTINGS
5915 // OS: P
5916 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5917
5918 // ACTION: Storage initialization wizard benchmark slow choice of continue
5919 // CATEGORY: SETTINGS
5920 // OS: P
5921 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5922
5923 // ACTION: Storage initialization wizard benchmark slow choice of abort
5924 // CATEGORY: SETTINGS
5925 // OS: P
5926 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5927
5928 // ACTION: Storage initialization wizard migration choice of now
5929 // CATEGORY: SETTINGS
5930 // OS: P
5931 ACTION_STORAGE_MIGRATE_NOW = 1412;
5932
5933 // ACTION: Storage initialization wizard migration choice of later
5934 // CATEGORY: SETTINGS
5935 // OS: P
5936 ACTION_STORAGE_MIGRATE_LATER = 1413;
5937
Felipe Leme11166522018-05-07 10:18:47 -07005938 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005939 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005940 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5941
hughchen2bde4092018-05-10 18:04:25 +08005942 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005943 // CATEGORY: SETTINGS
5944 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005945 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5946
5947 // OPEN: Settings > Sound > Switch hfp devices dialog
5948 // CATEGORY: SETTINGS
5949 // OS: P
5950 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005951
Beverlyc4eb9342018-05-10 15:46:03 -04005952 // ACTION: User has started or ended charging
5953 // Type TYPE_DISMISS: Charging has ended
5954 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5955 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5956 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5957 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5958 // Tag FIELD_PLUG_TYPE: Charging plug type
5959 ACTION_CHARGE = 1417;
5960
5961 // Tag used to determine battery level when device started charging
5962 FIELD_BATTERY_LEVEL_START = 1418;
5963
5964 // Tag used to determine battery level when device ended charging
5965 FIELD_BATTERY_LEVEL_END = 1419;
5966
5967 // Tag used to determine length of charging
5968 FIELD_CHARGING_DURATION_MILLIS = 1420;
5969
5970 // Tag used to determine what type of charging was started/ended
5971 // 1 = Plugged AC
5972 // 2 = Plugged USB
Beverlyc47ba512018-09-24 14:02:23 -05005973 // 4 = Wireless
Beverlyc4eb9342018-05-10 15:46:03 -04005974 FIELD_PLUG_TYPE = 1421;
5975
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005976 // ACTION: USB-C Connector connected.
5977 // CATEGORY: OTHER
5978 // OS: P
5979 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5980
5981 // ACTION: USB-C Connector disconnected.
5982 // CATEGORY: OTHER
5983 // OS: P
5984 // uses FIELD_DURATION_MILLIS for connected duration
5985 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5986
5987 // ACTION: USB-C Audio device connected
5988 // CATEGORY: OTHER
5989 // OS: P
5990 ACTION_USB_AUDIO_CONNECTED = 1424;
5991
5992 // FIELD: VIDPID of connected USB Audio device
5993 // CATEGORY: OTHER
5994 // OS: P
5995 FIELD_USB_AUDIO_VIDPID = 1425;
5996
5997 // ACTION: USB-C Audio device disconnected
5998 // CATEGORY: OTHER
5999 // OS: P
6000 // use FIELD_DURATION_MILLIS for time
6001 ACTION_USB_AUDIO_DISCONNECTED = 1426;
6002
6003 // ACTION: Hardware failure event
6004 // CATEGORY: OTHER
6005 // OS: P
6006 ACTION_HARDWARE_FAILED = 1427;
6007
6008 // FIELD: Hardware failure category
6009 // CATEGORY: OTHER
6010 // OS: P
6011 // Uses enum HardwareType
6012 FIELD_HARDWARE_TYPE = 1428;
6013
6014 // FIELD: Hardware failure category
6015 // CATEGORY: OTHER
6016 // OS: P
6017 // Uses enum HardwareFailureCode
6018 FIELD_HARDWARE_FAILURE_CODE = 1429;
6019
6020 // ACTION: Physical drop event
6021 // CATEGORY: OTHER
6022 // OS: P
6023 // use FIELD_DURATION_MILLIS for time
6024 ACTION_PHYSICAL_DROP = 1430;
6025
6026 // FIELD: Confidence in detection of drop, in integer percentage.
6027 // CATEGORY: OTHER
6028 // OS: P
6029 FIELD_CONFIDENCE_PERCENT = 1431;
6030
6031 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
6032 // CATEGORY: OTHER
6033 // OS: P
6034 FIELD_ACCEL_MILLI_G = 1432;
6035
6036 // ACTION: Battery health snapshot
6037 // CATEGORY: OTHER
6038 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006039 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006040 ACTION_BATTERY_HEALTH = 1433;
6041
6042 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
6043 // CATEGORY: OTHER
6044 // OS: P
6045 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
6046
Andrew Chantc03bc632018-05-18 10:52:00 -07006047 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006048 // CATEGORY: OTHER
6049 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006050 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006051
Andrew Chantc03bc632018-05-18 10:52:00 -07006052 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006053 // CATEGORY: OTHER
6054 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006055 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006056
Andrew Chantc03bc632018-05-18 10:52:00 -07006057 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006058 // CATEGORY: OTHER
6059 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006060 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006061
Andrew Chantc03bc632018-05-18 10:52:00 -07006062 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006063 // fractional threshold of full capacity.
6064 // CATEGORY: OTHER
6065 // OS: P
6066 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6067
Andrew Chantc03bc632018-05-18 10:52:00 -07006068 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6069 // beyond a fractional threshold of full
6070 // capacity. A comma-separated string of
6071 // buckets. If there are eight buckets,
6072 // each bucket represents charging to n/8
6073 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006074 // CATEGORY: OTHER
6075 // OS: P
6076 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6077
Beverly019d6f62018-05-15 16:16:54 -04006078 // ACTION: Hush gesture - volume up + power button
6079 // CATEGORY: GLOBAL_SYSTEM_UI
6080 // OS: P
6081 ACTION_HUSH_GESTURE = 1440;
6082
Petri Gynther778facb2018-05-18 22:59:50 -07006083 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6084 // offload
6085 // CATEGORY: SETTINGS
6086 // OS: P
6087 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6088
Andrew Chantc03bc632018-05-18 10:52:00 -07006089 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6090 // reported aggregated per day when > 0.
6091 // CATEGORY: OTHER
6092 // OS: P
6093 ACTION_SLOW_IO = 1442;
6094
6095 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6096 // The value is an integer from the enum IoOperation.
6097 // CATEGORY: OTHER
6098 // OS: P
6099 FIELD_IO_OPERATION_TYPE = 1443;
6100
6101 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6102 // over the past 24hr (reported only if > 0).
6103 // CATEGORY: OTHER
6104 // OS: P
6105 FIELD_IO_OPERATION_COUNT = 1444;
6106
6107 // ACTION: Speaker Imedance - last recorded speaker impedance.
6108 // reported max once per 24hr.
6109 // CATEGORY: OTHER
6110 // OS: P
6111 ACTION_SPEAKER_IMPEDANCE = 1445;
6112
6113 // FIELD: Speaker Impedance in milliohms.
6114 // CATEGORY: OTHER
6115 // OS: P
6116 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6117
6118 // FIELD: Speaker Location - identifies one of several speakers on a device.
6119 // CATEGORY: OTHER
6120 // OS: P
6121 FIELD_SPEAKER_LOCATION = 1447;
6122
6123 // FIELD: Instantaneous battery resistance in microohms.
6124 // CATEGORY: OTHER
6125 // OS: P
6126 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6127
6128 // FIELD: Instantaneous battery current - in microamps.
6129 // CATEGORY: OTHER
6130 // OS: P
6131 FIELD_BATTERY_CURRENT_UA = 1449;
6132
6133 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6134 // board.
6135 // CATEGORY: OTHER
6136 // OS: P
6137 FIELD_HARDWARE_LOCATION = 1450;
6138
6139 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6140 // action is logged after the subsequent boot.
6141 // CATEGORY: OTHER
6142 // OS: P
6143 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6144
Felipe Leme21fb1a32018-05-21 11:18:46 -07006145 // FIELD: Flags used on autofill-related metrics
6146 // OS: P
6147 FIELD_AUTOFILL_FLAGS = 1452;
6148
6149 // Tag used when the service returned an authenticated dataset or response.
6150 // Used to replace the following individual metrics, which now are logged as the value of this
6151 // field in the AUTOFILL_REQUEST metric:
6152 // - AUTOFILL_AUTHENTICATED;
6153 // - AUTOFILL_DATASET_AUTHENTICATED
6154 // - AUTOFILL_INVALID_AUTHENTICATION
6155 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6156 // OS: P
6157 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6158
6159 // FIELD: Index of the autofill request inside of a session.
6160 // OS: P
6161 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6162
6163 // FIELD: Number of requests made to an autofill service during a session.
6164 // OS: P
6165 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6166
Felipe Leme833c99b2018-05-24 10:41:48 -07006167 // FIELD: Id of the autofill session associated with this metric.
6168 // OS: P
6169 FIELD_AUTOFILL_SESSION_ID = 1456;
6170
Sherry Huangce02ed32019-01-17 20:37:29 +08006171 // FIELD: Device USB overheat alarm trigger.
6172 // CATEGORY: GLOBAL_SYSTEM_UI
6173 // OS: P
6174 POWER_OVERHEAT_ALARM = 1457;
6175
Chris Wren77781d32016-01-11 14:49:26 -05006176 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006177
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006178 // Time since this notification last interrupted (visibly or audible) the user
6179 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6180
6181 // OPEN: Notification interrupted the user, either audibly or visually.
6182 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6183 // CATEGORY: NOTIFICATION
6184 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006185
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006186 // OPEN: Settings
6187 // CATEGORY: SETTINGS
6188 // OS: Q
6189 SETTINGS_HOMEPAGE = 1502;
6190
Fan Zhang0b6bc412018-06-21 17:19:02 -07006191 // OPEN: Settings > Create shortcut(widget)
6192 // CATEGORY: SETTINGS
6193 // OS: Q
6194 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006195
6196 // ACTION: Authenticate using fingerprint
6197 // CATEGORY: SETTINGS
6198 // OS: Q
6199 ACTION_FACE_AUTH = 1504;
6200
6201 // ACTION: Add fingerprint > Enroll fingerprint
6202 // CATEGORY: SETTINGS
6203 // OS: Q
6204 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006205
6206 // OPEN: Face Enroll introduction
6207 // CATEGORY: SETTINGS
6208 // OS: Q
6209 FACE_ENROLL_INTRO = 1506;
6210
6211 // OPEN: Face Enroll introduction
6212 // CATEGORY: SETTINGS
6213 // OS: Q
6214 FACE_ENROLL_ENROLLING = 1507;
6215
6216 // OPEN: Face Enroll introduction
6217 // CATEGORY: SETTINGS
6218 // OS: Q
6219 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006220
6221 // OPEN: Face Enroll sidecar
6222 // CATEGORY: SETTINGS
6223 // OS: Q
6224 FACE_ENROLL_SIDECAR = 1509;
6225
6226 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006227 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006228 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006229
6230 // OPEN: Settings > Security > Face
6231 // CATEGORY: SETTINGS
6232 // OS: Q
6233 FACE = 1511;
6234
timhypeng8c6885d2018-07-30 16:44:36 +08006235 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6236 // CATEGORY: SETTINGS
6237 // OS: Q
6238 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6239
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006240 // ACTION: Activity start
6241 // CATEGORY: OTHER
6242 // OS: Q (will also ship in PQ1A)
6243 ACTION_ACTIVITY_START = 1513;
6244
6245 // Tagged data for ACTION_ACTIVITY_START.
6246 // FIELD: Calling UID
6247 // CATEGORY: OTHER
6248 // OS: Q (will also ship in PQ1A)
6249 FIELD_CALLING_UID = 1514;
6250
6251 // Tagged data for ACTION_ACTIVITY_START.
6252 // FIELD: Calling package name
6253 // CATEGORY: OTHER
6254 // OS: Q (will also ship in PQ1A)
6255 FIELD_CALLING_PACKAGE_NAME = 1515;
6256
6257 // Tagged data for ACTION_ACTIVITY_START.
6258 // FIELD: Calling UID proc state
6259 // CATEGORY: OTHER
6260 // OS: Q (will also ship in PQ1A)
6261 FIELD_CALLING_UID_PROC_STATE = 1516;
6262
6263 // Tagged data for ACTION_ACTIVITY_START.
6264 // FIELD: Calling UID has any visible window
6265 // CATEGORY: OTHER
6266 // OS: Q (will also ship in PQ1A)
6267 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6268
6269 // Tagged data for ACTION_ACTIVITY_START.
6270 // FIELD: Real calling UID
6271 // CATEGORY: OTHER
6272 // OS: Q (will also ship in PQ1A)
6273 FIELD_REAL_CALLING_UID = 1518;
6274
6275 // Tagged data for ACTION_ACTIVITY_START.
6276 // FIELD: Real calling UID proc state
6277 // CATEGORY: OTHER
6278 // OS: Q (will also ship in PQ1A)
6279 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6280
6281 // Tagged data for ACTION_ACTIVITY_START.
6282 // FIELD: Real calling UID has any visible window
6283 // CATEGORY: OTHER
6284 // OS: Q (will also ship in PQ1A)
6285 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6286
6287 // Tagged data for ACTION_ACTIVITY_START.
6288 // FIELD: Target UID
6289 // CATEGORY: OTHER
6290 // OS: Q (will also ship in PQ1A)
6291 FIELD_TARGET_UID = 1521;
6292
6293 // Tagged data for ACTION_ACTIVITY_START.
6294 // FIELD: Target UID package name
6295 // CATEGORY: OTHER
6296 // OS: Q (will also ship in PQ1A)
6297 FIELD_TARGET_PACKAGE_NAME = 1522;
6298
6299 // Tagged data for ACTION_ACTIVITY_START.
6300 // FIELD: Target UID proc state
6301 // CATEGORY: OTHER
6302 // OS: Q (will also ship in PQ1A)
6303 FIELD_TARGET_UID_PROC_STATE = 1523;
6304
6305 // Tagged data for ACTION_ACTIVITY_START.
6306 // FIELD: Target UID has any visible window
6307 // CATEGORY: OTHER
6308 // OS: Q (will also ship in PQ1A)
6309 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6310
6311 // Tagged data for ACTION_ACTIVITY_START.
6312 // FIELD: Target doze whitelist tag
6313 // CATEGORY: OTHER
6314 // OS: Q (will also ship in PQ1A)
6315 FIELD_TARGET_WHITELIST_TAG = 1525;
6316
6317 // Tagged data for ACTION_ACTIVITY_START.
6318 // FIELD: Target short component name
6319 // CATEGORY: OTHER
6320 // OS: Q (will also ship in PQ1A)
6321 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6322
6323 // Tagged data for ACTION_ACTIVITY_START.
6324 // FIELD: Coming from pending intent
6325 // CATEGORY: OTHER
6326 // OS: Q (will also ship in PQ1A)
6327 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6328
6329 // Tagged data for ACTION_ACTIVITY_START.
6330 // FIELD: Intent action
6331 // CATEGORY: OTHER
6332 // OS: Q (will also ship in PQ1A)
6333 FIELD_INTENT_ACTION = 1528;
6334
6335 // Tagged data for ACTION_ACTIVITY_START.
6336 // FIELD: Caller app process record process name
6337 // CATEGORY: OTHER
6338 // OS: Q (will also ship in PQ1A)
6339 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6340
6341 // Tagged data for ACTION_ACTIVITY_START.
6342 // FIELD: Caller app process record current proc state
6343 // CATEGORY: OTHER
6344 // OS: Q (will also ship in PQ1A)
6345 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6346
6347 // Tagged data for ACTION_ACTIVITY_START.
6348 // FIELD: Caller app process record has client activities
6349 // CATEGORY: OTHER
6350 // OS: Q (will also ship in PQ1A)
6351 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6352
6353 // Tagged data for ACTION_ACTIVITY_START.
6354 // FIELD: Caller app process record has foreground services
6355 // CATEGORY: OTHER
6356 // OS: Q (will also ship in PQ1A)
6357 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6358
6359 // Tagged data for ACTION_ACTIVITY_START.
6360 // FIELD: Caller app process record has foreground activities
6361 // CATEGORY: OTHER
6362 // OS: Q (will also ship in PQ1A)
6363 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6364
6365 // Tagged data for ACTION_ACTIVITY_START.
6366 // FIELD: Caller app process record has top UI
6367 // CATEGORY: OTHER
6368 // OS: Q (will also ship in PQ1A)
6369 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6370
6371 // Tagged data for ACTION_ACTIVITY_START.
6372 // FIELD: Caller app process record has overlay UI
6373 // CATEGORY: OTHER
6374 // OS: Q (will also ship in PQ1A)
6375 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6376
6377 // Tagged data for ACTION_ACTIVITY_START.
6378 // FIELD: Caller app process record pending UI clean
6379 // CATEGORY: OTHER
6380 // OS: Q (will also ship in PQ1A)
6381 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6382
6383 // Tagged data for ACTION_ACTIVITY_START.
6384 // FIELD: Millis since caller app's process record last interaction event
6385 // CATEGORY: OTHER
6386 // OS: Q (will also ship in PQ1A)
6387 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6388
6389 // Tagged data for ACTION_ACTIVITY_START.
6390 // FIELD: Millis since caller app's process record fg interaction
6391 // CATEGORY: OTHER
6392 // OS: Q (will also ship in PQ1A)
6393 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6394
6395 // Tagged data for ACTION_ACTIVITY_START.
6396 // FIELD: Millis since caller app's process record last became unimportant
6397 // CATEGORY: OTHER
6398 // OS: Q (will also ship in PQ1A)
6399 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6400
6401 // Tagged data for ACTION_ACTIVITY_START.
6402 // FIELD: Activity record launch mode
6403 // CATEGORY: OTHER
6404 // OS: Q (will also ship in PQ1A)
6405 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6406
6407 // Tagged data for ACTION_ACTIVITY_START.
6408 // FIELD: Activity record target activity
6409 // CATEGORY: OTHER
6410 // OS: Q (will also ship in PQ1A)
6411 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6412
6413 // Tagged data for ACTION_ACTIVITY_START.
6414 // FIELD: Activity record flags
6415 // CATEGORY: OTHER
6416 // OS: Q (will also ship in PQ1A)
6417 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6418
6419 // Tagged data for ACTION_ACTIVITY_START.
6420 // FIELD: Activity record real activity
6421 // CATEGORY: OTHER
6422 // OS: Q (will also ship in PQ1A)
6423 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6424
6425 // Tagged data for ACTION_ACTIVITY_START.
6426 // FIELD: Activity record short component name
6427 // CATEGORY: OTHER
6428 // OS: Q (will also ship in PQ1A)
6429 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6430
6431 // Tagged data for ACTION_ACTIVITY_START.
6432 // FIELD: Activity record process name
6433 // CATEGORY: OTHER
6434 // OS: Q (will also ship in PQ1A)
6435 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6436
6437 // Tagged data for ACTION_ACTIVITY_START.
6438 // FIELD: Activity record is fullscreen
6439 // CATEGORY: OTHER
6440 // OS: Q (will also ship in PQ1A)
6441 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6442
6443 // Tagged data for ACTION_ACTIVITY_START.
6444 // FIELD: Activity record is no display
6445 // CATEGORY: OTHER
6446 // OS: Q (will also ship in PQ1A)
6447 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6448
6449 // Tagged data for ACTION_ACTIVITY_START.
6450 // FIELD: Millis since activity was last visible
6451 // CATEGORY: OTHER
6452 // OS: Q (will also ship in PQ1A)
6453 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6454
6455 // Tagged data for ACTION_ACTIVITY_START.
6456 // FIELD: Activity record's resultTo packageName
6457 // CATEGORY: OTHER
6458 // OS: Q (will also ship in PQ1A)
6459 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6460
6461 // Tagged data for ACTION_ACTIVITY_START.
6462 // FIELD: Activity record's resultTo shortComponentName
6463 // CATEGORY: OTHER
6464 // OS: Q (will also ship in PQ1A)
6465 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6466
6467 // Tagged data for ACTION_ACTIVITY_START.
6468 // FIELD: Activity record is visible
6469 // CATEGORY: OTHER
6470 // OS: Q (will also ship in PQ1A)
6471 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6472
6473 // Tagged data for ACTION_ACTIVITY_START.
6474 // FIELD: Activity record is visible ignoring keyguard
6475 // CATEGORY: OTHER
6476 // OS: Q (will also ship in PQ1A)
6477 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6478
6479 // Tagged data for ACTION_ACTIVITY_START.
6480 // FIELD: Millis since activity's last launch
6481 // CATEGORY: OTHER
6482 // OS: Q (will also ship in PQ1A)
6483 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006484
Kevin Chyn2c94a292018-08-09 15:00:06 -07006485 // OPEN: Settings > Add face
6486 // OS: Q
6487 FACE_ENROLL_PREVIEW = 1554;
6488
Felipe Lemec9f32592018-08-02 14:57:11 -07006489 // Field used to indicate whether a save request was used to update existing user data.
6490 FIELD_AUTOFILL_UPDATE = 1555;
6491
tmfangf391da12018-08-15 17:01:40 +08006492 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6493 // CATEGORY: SETTINGS
6494 // OS: Q
6495 SETTINGS_WIFI_ADD_NETWORK = 1556;
6496
Lucas Dupinc81702e2018-08-09 15:41:55 -07006497 // OPEN: Settings > System > Input & Gesture > Reach up gesture
6498 // OS: Q
Lucas Dupin13b0cb92018-09-28 09:27:46 -07006499 SETTINGS_GESTURE_WAKE_LOCK_SCREEN = 1557;
Lucas Dupinc81702e2018-08-09 15:41:55 -07006500
Shaotang Li4187f7a62018-07-04 14:03:25 +08006501 // OPEN: Emergency dialer opened
6502 // CLOSE: Emergency dialer closed
6503 // SUBTYPE: The entry type that user opened emergency dialer
6504 // CATEGORY: EMERGENCY_DIALER
6505 // OS: Q
6506 EMERGENCY_DIALER = 1558;
6507
6508 // FIELD: The screen is currently locked
6509 // CATEGORY: EMERGENCY_DIALER
6510 // OS: Q
6511 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559;
6512
6513 // FIELD: Bit flag indicating the actions performed by user
6514 // CATEGORY: EMERGENCY_DIALER
6515 // OS: Q
6516 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560;
6517
6518 // FIELD: The duration user stayed at emergency dialer
6519 // CATEGORY: EMERGENCY_DIALER
6520 // OS: Q
6521 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561;
6522
6523 // ACTION: Making call via emergency dialer
6524 // SUBTYPE: The UI that user made phone call
6525 // CATEGORY: EMERGENCY_DIALER
6526 // OS: Q
6527 EMERGENCY_DIALER_MAKE_CALL = 1562;
6528
6529 // FIELD: The phone number type of a call user made
6530 // CATEGORY: EMERGENCY_DIALER
6531 // OS: Q
6532 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6533
6534 // FIELD: There is a shortcut for the phone number
6535 // CATEGORY: EMERGENCY_DIALER
6536 // OS: Q
6537 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564;
6538
6539 // FIELD: The phone is in pocket while using emergency dialer
6540 // CATEGORY: EMERGENCY_DIALER
6541 // OS: Q
6542 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565;
6543
6544 // ACTION: The second tap on emergency shortcut to make a phone call
6545 // CATEGORY: EMERGENCY_DIALER
6546 // OS: Q
6547 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566;
6548
6549 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6550 // CATEGORY: EMERGENCY_DIALER
6551 // OS: Q
6552 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567;
6553
Shaotang Li786da902018-08-02 11:18:00 +08006554 // OPEN: Power menu is opened
6555 // CATEGORY: GLOBAL_SYSTEM_UI
6556 // OS: Q
6557 POWER_MENU = 1568;
6558
6559 // ACTION: User tapped emergency dialer icon in the power menu.
6560 // CATEGORY: GLOBAL_SYSTEM_UI
6561 // OS: Q
6562 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569;
6563
Lucas Dupin323f9ff2018-08-27 16:55:56 -07006564 // OPEN: Settings > System > Input & Gesture > Wake screen
6565 // OS: Q
6566 SETTINGS_GESTURE_WAKE_SCREEN = 1570;
6567
jackqdyulei2cc9b4b2018-09-07 13:12:43 -07006568 // OPEN: Settings > Network & internet > Mobile network
6569 // CATEGORY: SETTINGS
6570 // OS: Q
6571 MOBILE_NETWORK = 1571;
6572
Felipe Lemed9dc9542018-09-19 11:54:28 -07006573 // Tag of a field for the length of a text
6574 FIELD_AUTOFILL_TEXT_LEN = 1572;
6575
Julia Reynolds23a46352018-09-25 15:31:47 -04006576 // Action: the notification assistant is changing a notification
6577 // OS: Q
6578 NOTIFICATION_ASSISTANT_ADJUSTMENT = 1573;
6579
6580 // Subtype: The people attached to a notification was changed
6581 ADJUSTMENT_KEY_PEOPLE = 1574;
6582
6583 // Subtype: The snooze options attached to a notification was changed
6584 ADJUSTMENT_KEY_SNOOZE_CRITERIA = 1575;
6585
6586 // Subtype: The group of a notification was changed
6587 ADJUSTMENT_KEY_GROUP_KEY = 1576;
6588
6589 // Subtype: The user sentiment of a notification was changed
6590 ADJUSTMENT_KEY_USER_SENTIMENT = 1577;
6591
6592 // Subtype: New actions have been added to a notification
6593 ADJUSTMENT_KEY_SMART_ACTIONS = 1578;
6594
6595 // Subtype: New smart replies have been added to a notification
6596 ADJUSTMENT_KEY_SMART_REPLIES = 1579;
6597
6598 // Subtype: The importance of a notification has been changed
6599 ADJUSTMENT_KEY_IMPORTANCE = 1580;
6600
jackqdyuleidb71d282018-10-10 10:37:19 -07006601 // OPEN: Settings > Network & internet > Mobile network > Choose network
6602 // CATEGORY: SETTINGS
6603 // OS: Q
6604 MOBILE_NETWORK_SELECT = 1581;
6605
6606 // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog
6607 // CATEGORY: SETTINGS
6608 // OS: Q
6609 MOBILE_DATA_DIALOG = 1582;
6610
6611 // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog
6612 // CATEGORY: SETTINGS
6613 // OS: Q
6614 MOBILE_ROAMING_DIALOG = 1583;
6615
Fan Zhang916c13b2018-10-16 22:49:45 -07006616 // OPEN: Settings > Display > Lock screen display > On lock screen
6617 // CATEGORY: SETTINGS
6618 // OS: Q
6619 LOCK_SCREEN_NOTIFICATION_CONTENT = 1584;
6620
Kevin Chynf589b6c2018-10-26 08:10:37 -07006621 // ConfirmDeviceCredentials > BiometricPrompt
6622 // CATEGORY: SETTINGS
6623 // OS: Q
6624 BIOMETRIC_FRAGMENT = 1585;
6625
Kevin Chynb879f512018-10-31 17:56:26 -07006626 // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent)
6627 // CATEGORY: SETTINGS
6628 // OS: Q
6629 BIOMETRIC_ENROLL_ACTIVITY = 1586;
6630
tmfanga3f63a92018-11-05 19:05:18 +08006631 // OPEN: Settings > Privacy
6632 // CATEGORY: SETTINGS
6633 // OS: Q
6634 TOP_LEVEL_PRIVACY = 1587;
6635
Beverlyd58cc772018-11-09 16:23:11 -05006636 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6637 // Allow apps to override
6638 // CATEGORY: SETTINGS
6639 // OS: Q
6640 NOTIFICATION_ZEN_MODE_OVERRIDING_APPS = 1588;
6641
6642 // OPEN: Settings > Sound & notification > Do Not Disturb > See all exceptions >
6643 // Allow apps to override > Choose app
6644 // CATEGORY: SETTINGS
6645 // OS: Q
6646 NOTIFICATION_ZEN_MODE_OVERRIDING_APP = 1589;
6647
Esteban Talaveraf9c53b62018-11-14 18:20:29 +00006648 // ACTION: User sent a direct reply
6649 // PACKAGE: App that posted the notification
6650 // CATEGORY: NOTIFICATION
6651 // OS: Q
6652 NOTIFICATION_DIRECT_REPLY_ACTION = 1590;
6653
Chienyuane7a535c2018-11-30 16:01:48 +08006654 // OPEN: Settings > Developer options > Disable > Info dialog
6655 // CATEGORY: SETTINGS
6656 // OS: Q
6657 DIALOG_DISABLE_DEVELOPMENT_OPTIONS = 1591;
6658
Susi Kharraz-Post9b033672018-11-28 08:14:07 -05006659 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6660 // indicating the StatusBarState when menu was pulled down
6661 // CATEGORY: QUICK_SETTINGS
6662 // OS: Q
6663 FIELD_STATUS_BAR_STATE = 1592;
6664
6665 // Tag for an ACTION: QS -> Tile click / Secondary click / long press
6666 // indicating whether current state is full QS
6667 // CATEGORY: QUICK_SETTINGS
6668 // OS: Q
6669 FIELD_IS_FULL_QS = 1593;
6670
Issei Suzuki9e5ff4b2018-12-04 14:23:24 +01006671 // ACTION: Display folding state was changed
6672 // CATEGORY: OTHER
6673 // SUBTYPE: 1 if display is folded, 0 if not.
6674 // OS: Q
6675 ACTION_DISPLAY_FOLD = 1594;
6676
Arc Wangb16327a2018-11-30 14:15:52 +08006677 // OPEN: WifiDppConfiguratorActivity (android.settings.WIFI_DPP_CONFIGURATOR_XXX action intents)
6678 // CATEGORY: SETTINGS
6679 // OS: Q
6680 SETTINGS_WIFI_DPP_CONFIGURATOR = 1595;
6681
6682 // OPEN: WifiDppEnrolleeActivity (android.settings.WIFI_DPP_ENROLLEE_XXX action intents)
6683 // CATEGORY: SETTINGS
6684 // OS: Q
6685 SETTINGS_WIFI_DPP_ENROLLEE = 1596;
6686
Hongming Jin5172ec12018-12-13 11:02:42 -08006687 // OPEN: Settings > Apps & Notifications -> Special app access -> Financial Apps Sms Access
6688 // CATEGORY: SETTINGS
6689 // OS: Q
6690 SETTINGS_FINANCIAL_APPS_SMS_ACCESS = 1597;
6691
Chad Brubaker90f391f2018-10-19 10:26:19 -07006692 // OPEN: QS Sensor Privacy Mode tile shown
6693 // ACTION: QS Sensor Privacy Mode tile tapped
6694 // SUBTYPE: 0 is off, 1 is on
6695 // CATEGORY: QUICK_SETTINGS
6696 // OS: Q
6697 QS_SENSOR_PRIVACY = 1598;
6698
Gustav Sennton6f65fc32018-12-12 17:40:28 +00006699 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart actions.
6700 // OS: Q
6701 NOTIFICATION_SMART_ACTION_COUNT = 1599;
6702
6703 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6704 // Whether the notification has notification-assistant generated
6705 // actions/replies.
6706 // OS: Q
6707 NOTIFICATION_SMART_SUGGESTION_ASSISTANT_GENERATED = 1600;
6708
6709 // Tagged data for NOTIFICATION_ITEM_ACTION. Whether the action is a smart
6710 // action.
6711 // OS: Q
6712 NOTIFICATION_ACTION_IS_SMART = 1601;
6713
Beverlyf3c2c862018-12-21 09:57:31 -05006714 // FIELD: true if the associated ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* allows/blocks
6715 // the effect/sound when DND is on. false if set to disallow/show.
6716 // OS: Q
6717 FIELD_ZEN_TOGGLE_EXCEPTION = 1602;
6718
6719 // FIELD: rule id an ACTION_ZEN_ALLOW_* or ACTION_ZEN_BLOCK_* is associated with
6720 // OS: Q
6721 FIELD_ZEN_RULE_ID = 1603;
6722
6723 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6724 // > Do Not Disturb behavior
6725 // CATEGORY: SETTINGS
6726 // OS: Q
6727 ZEN_CUSTOM_RULE_SETTINGS = 1604;
6728
6729 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6730 // > Do Not Disturb behavior > Custom
6731 // CATEGORY: SETTINGS
6732 // OS: Q
6733 ZEN_CUSTOM_RULE_SOUND_SETTINGS = 1605;
6734
6735 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6736 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6737 // CATEGORY: SETTINGS
6738 // OS: Q
6739 ZEN_CUSTOM_RULE_DEFAULT_SETTINGS = 1606;
6740
6741 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6742 // > Do Not Disturb behavior > Custom
6743 // CATEGORY: SETTINGS
6744 // OS: Q
6745 ZEN_CUSTOM_RULE_CUSTOM_SETTINGS = 1607;
6746
6747 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6748 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6749 // > Notification restriction
6750 // CATEGORY: SETTINGS
6751 // OS: Q
6752 ZEN_CUSTOM_RULE_NOTIFICATION_RESTRICTIONS = 1608;
6753
6754 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6755 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6756 // > Notification restriction > Custom
6757 // CATEGORY: SETTINGS
6758 // OS: Q
6759 ZEN_CUSTOM_RULE_VIS_EFFECTS = 1609;
6760
6761 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6762 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6763 // > Notification restriction > Custom > Allow messages
6764 // CATEGORY: SETTINGS
6765 // OS: Q
6766 ZEN_CUSTOM_RULE_MESSAGES = 1610;
6767
6768 // OPEN: Settings > Sound > Do Not Disturb > Schedules > (Click on system rule)
6769 // > Do Not Disturb behavior > Use default Do Not Disturb behavior
6770 // > Notification restriction > Custom > Allow calls
6771 // CATEGORY: SETTINGS
6772 // OS: Q
6773 ZEN_CUSTOM_RULE_CALLS = 1611;
6774
6775 // OPEN: Settings > Sound > Do Not Disturb > Click footer link if custom settings applied
6776 // CATEGORY: SETTINGS
6777 // OS: Q
6778 ZEN_CUSTOM_SETTINGS_DIALOG = 1612;
6779
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006780 // OPEN: Settings > Developer Options > Game Driver Preferences
Yiwei Zhang71434b72018-12-28 11:32:42 +08006781 // CATEGORY: SETTINGS
6782 // OS: Q
Yiwei Zhang2b3be862019-01-24 14:45:53 -08006783 SETTINGS_GAME_DRIVER_DASHBOARD = 1613;
Yiwei Zhang71434b72018-12-28 11:32:42 +08006784
Tony Mak5a5f0d52019-01-08 11:07:23 +00006785 // CATEGORY: The category for all actions relating to language detection logging.
6786 // OS: Q
6787 LANGUAGE_DETECTION = 1614;
6788
6789 // CATEGORY: The category for all actions relating to conversation actions logging.
6790 // OS: Q
6791 CONVERSATION_ACTIONS = 1615;
6792
6793 // ACTION: Actions from a text classifier are shown to user.
Tony Mak03a1d032019-01-24 15:12:00 +00006794 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006795 // OS: Q
6796 ACTION_TEXT_CLASSIFIER_ACTIONS_SHOWN = 1616;
6797
Tony Mak03a1d032019-01-24 15:12:00 +00006798 // FIELD: Event time of a text classifier event in unix timestamp.
6799 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006800 // OS: Q
6801 FIELD_TEXT_CLASSIFIER_EVENT_TIME = 1617;
6802
6803 // ACTION: Users compose their own replies instead of using suggested ones.
Tony Mak03a1d032019-01-24 15:12:00 +00006804 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006805 // OS: Q
6806 ACTION_TEXT_CLASSIFIER_MANUAL_REPLY = 1618;
6807
6808 // ACTION: Text classifier generates an action.
Tony Mak03a1d032019-01-24 15:12:00 +00006809 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
Tony Mak5a5f0d52019-01-08 11:07:23 +00006810 // OS: Q
6811 ACTION_TEXT_CLASSIFIER_ACTIONS_GENERATED = 1619;
6812
Alexey Kuzminccdaebb2018-12-10 12:02:51 +00006813 // OPEN: Settings > Accessibility > Vibration > Ring vibration
6814 // CATEGORY: SETTINGS
6815 // OS: Q
6816 ACCESSIBILITY_VIBRATION_RING = 1620;
6817
Eyal Posenera9cf9c72018-12-18 16:23:54 +02006818 // ACTION: Notification blocking helper view, which helps the user to block
6819 // application or channel from showing notifications.
6820 // SUBTYPE: NotificationBlockingHelper enum.
6821 // CATEGORY: NOTIFICATION
6822 // OS: Q
6823 NOTIFICATION_BLOCKING_HELPER = 1621;
6824
Ruchi Kandoi6513d9d2019-01-09 13:23:04 -08006825 // ACTION: Tap & Pay -> Default Application Setting -> Use Forground
6826 // OS: Q
6827 ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622;
6828
6829 // ACTION: Tap & Pay -> Default Application Setting -> Use Default
6830 // OS: Q
6831 ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623;
Chris Wren6c109522018-03-12 10:00:12 -04006832
Beverly5015ac82019-01-10 16:33:02 -05006833 // OPEN: Settings > System > Input & Gesture > Skip song gesture
6834 // OS: Q
6835 SETTINGS_GESTURE_SKIP_SONG = 1624;
6836
6837 // OPEN: Settings > System > Input & Gesture > Silence gesture
6838 // OS: Q
6839 SETTINGS_GESTURE_SILENCE = 1625;
6840
Lucas Dupind43bf702019-01-15 13:40:42 -08006841 // OPEN: Settings > System > Input & Gesture > Tap screen gesture
6842 // OS: Q
6843 SETTINGS_GESTURE_TAP_SCREEN = 1626;
6844
Antony Sargent29932062019-01-10 15:59:11 -08006845 // OPEN: Settings > Network & internet > Click Mobile network to land on a page with a list of
6846 // SIM/eSIM subscriptions.
6847 // CATEGORY: SETTINGS
6848 // OS: Q
6849 MOBILE_NETWORK_LIST = 1627;
6850
Alex Salo1dea1e62019-01-18 14:17:20 -08006851 // OPEN: Settings > Display > Adaptive sleep
6852 // OS: Q
6853 SETTINGS_ADAPTIVE_SLEEP = 1628;
Tony Mak03a1d032019-01-24 15:12:00 +00006854
Felipe Leme479294a2019-01-22 17:23:07 -08006855 // Tagged data for SMART_REPLY_VISIBLE and NOTIFICATION_ITEM_ACTION.
6856 // The UI location of the notification containing the smart suggestions.
6857 // This is a NotificationLocation object (see the NotificationLocation
6858 // enum).
6859 // OS: Q
6860 NOTIFICATION_LOCATION = 1629;
6861
Felipe Lemea3033852019-01-18 16:32:33 -08006862 // The autofill system made request to the system-provided augmented autofill service.
6863 // OS: Q
6864 // Package: Package of app that is autofilled
6865 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
6866 // Tag FIELD_AUTOFILL_SERVICE: Package of the augmented autofill service that processed the
6867 // request
6868 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
6869 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme479294a2019-01-22 17:23:07 -08006870 AUTOFILL_AUGMENTED_REQUEST = 1630;
Felipe Lemea3033852019-01-18 16:32:33 -08006871
6872 // Tag of a field for the number of augmented autofill requests in a session
6873 // OS: Q
Felipe Leme479294a2019-01-22 17:23:07 -08006874 FIELD_AUTOFILL_NUMBER_AUGMENTED_REQUESTS = 1631;
Gustav Sennton3757d852019-01-21 12:11:40 +00006875
Edgar Wang5ee81542019-01-11 19:30:12 +08006876 // OPEN: Settings > System > Aware
6877 // OS: Q
6878 SETTINGS_AWARE = 1632;
6879
6880 // OPEN: Settings > System > Aware > Disable > Dialog
6881 // OS: Q
6882 DIALOG_AWARE_DISABLE = 1633;
6883
Tony Mak03a1d032019-01-24 15:12:00 +00006884 // FIELD: Session ID of TextClassifierEvent.
6885 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6886 // OS: Q
6887 FIELD_TEXT_CLASSIFIER_SESSION_ID = 1634;
6888
6889 // FIELD: First entity type.
6890 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6891 // OS: Q
6892 FIELD_TEXT_CLASSIFIER_FIRST_ENTITY_TYPE = 1635;
6893 // FIELD: Second entity type.
6894 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6895 // OS: Q
6896 FIELD_TEXT_CLASSIFIER_SECOND_ENTITY_TYPE = 1636;
6897
6898 // FIELD: Third entity type.
6899 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6900 // OS: Q
6901 FIELD_TEXT_CLASSIFIER_THIRD_ENTITY_TYPE = 1637;
6902
6903 // FIELD: Score of the suggestion.
6904 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6905 // OS: Q
6906 FIELD_TEXT_CLASSIFIER_SCORE = 1638;
6907
6908 // FIELD: widget type, e.g: notification, textview
6909 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6910 // OS: Q
6911 FIELD_TEXT_CLASSIFIER_WIDGET_TYPE = 1639;
6912
6913 // FIELD: version of the widget.
6914 // CATEGORY: LANGUAGE_DETECTION, CONVERSATION_ACTIONS
6915 // OS: Q
6916 FIELD_TEXT_CLASSIFIER_WIDGET_VERSION = 1640;
6917
Will Brockman828427e2019-01-28 09:55:45 -05006918 // Tagged data for NOTIFICATION_ITEM. One of the CATEGORY String constants from
6919 // https://developer.android.com/reference/android/app/Notification .
6920 // OS: Q
6921 // CATEGORY: NOTIFICATION
6922 FIELD_NOTIFICATION_CATEGORY = 1641;
6923
Antony Sargent4348de52019-01-29 16:46:13 -08006924 // OPEN: Settings > Settings > Network & internet > Click Mobile network to land on page with
6925 // details for a SIM/eSIM mobile network > Click edit icon to bring up a rename dialog.
6926 // OS: Q
6927 MOBILE_NETWORK_RENAME_DIALOG = 1642;
6928
Sunny Shaoab08c4c2019-01-30 16:04:23 +08006929 // ACTION: Settings > Search Bar > Avatar
6930 // CATEGORY: SETTINGS
6931 // OS: Q
6932 ACTION_CLICK_ACCOUNT_AVATAR = 1643;
6933
Bernard Chaudd6c3b12019-01-31 15:31:22 +00006934 // OPEN: Set new password (action intents android.app.action.SET_NEW_PASSWORD or
6935 // android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6936 // CATEGORY: SETTINGS
6937 // OS: Q
6938 SET_NEW_PASSWORD_ACTIVITY = 1644;
6939
6940 // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD)
6941 // CATEGORY: SETTINGS
6942 // OS: Q
6943 ACTION_SET_NEW_PASSWORD = 1645;
6944
6945 // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD)
6946 // CATEGORY: SETTINGS
6947 // OS: Q
6948 ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646;
6949
Milo Sredkov13d88112019-02-01 12:23:24 +00006950 // Tagged data for SMART_REPLY_VISIBLE and SMART_REPLY_ACTION.
6951 // Whether the smart reply was / is to be sent via direct reply because
6952 // getEditChoicesBeforeSending was enabled.
6953 // OS: Q
6954 NOTIFICATION_SMART_REPLY_EDIT_BEFORE_SENDING = 1647;
6955
6956 // Tagged data for SMART_REPLY_ACTION.
6957 // Whether the smart reply was modified by the user via the direct reply field (implies that
6958 // getEditChoicesBeforeSending was enabled).
6959 // actions/replies.
6960 // OS: Q
6961 NOTIFICATION_SMART_REPLY_MODIFIED_BEFORE_SENDING = 1648;
6962
Susi Kharraz-Post7e2115d2019-02-01 16:51:22 -05006963 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6964 // Field to add the mimetype for a ChooserActivity
6965 // OS:Q
6966 FIELD_SHARESHEET_MIMETYPE = 1649;
6967
6968 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6969 // Sharesheet direct targets are ready to show.
6970 // OS:Q
6971 ACTION_ACTIVITY_CHOOSER_SHOWN_DIRECT_TARGET = 1650;
6972
6973 // CATEGORY: ACTION_SHARESHEET_SCROLL
6974 // Sharesheet are either expanded, scrolling through them or compacted again.
6975 // OS:Q
6976 // Subtype 1 means collapsed, 0 expanded
6977 ACTION_SHARESHEET_COLLAPSED_CHANGED = 1651;
6978
6979 // ACTION: Share with screenshot extra
6980 // OS: Q
6981 ACTION_SHARE_WITH_PREVIEW = 1652;
6982
6983 // CATEGORY: ACTION_ACTIVITY_CHOOSER_SHOWN
6984 // OS:Q
6985 // The time elapsed from triggering the share to displaying the app targets
6986 // formerly: histogram system_cost_for_smart_sharing
6987 FIELD_TIME_TO_APP_TARGETS = 1653;
6988
Matthew Fritze4d1dc0b2019-02-11 13:31:42 -08006989 // Open: Settings > Panel for Internet Connectivity
6990 PANEL_INTERNET_CONNECTIVITY = 1654;
6991
6992 // Open: Settings > Panel for Volume
6993 PANEL_VOLUME = 1655;
6994
6995 // Open: Settings > Panel for NFC
6996 PANEL_NFC = 1656;
6997
6998 // Open: Settings > Panel for Media Output
6999 PANEL_MEDIA_OUTPUT = 1657;
7000
7001 // ACTION: An interaction with a Slice or other component in the Panel.
7002 // CATEGORY: SETTINGS
7003 // OS: Q
7004 ACTION_PANEL_INTERACTION = 1658;
7005
Susi Kharraz-Post9893b8c2019-02-12 14:21:29 -05007006 // ACTION: Change phone orientation
7007 // OS: Q
7008 // SUBTYPE is orientation defined in Configuration.class
7009 ACTION_PHONE_ORIENTATION_CHANGED = 1659;
7010
7011 // CATEGORY: ACTION_PHONE_ORIENTATION_CHANGED
7012 // OS: Q
7013 // Different display can have different orientations, so need to log display id
7014 FIELD_DISPLAY_ID = 1660;
7015
Susi Kharraz-Post0446fab2019-02-21 09:42:31 -05007016 // ACTION: Changing from work to parent profile or vice versa
7017 // OS: Q
7018 ACTION_SWITCH_SHARE_PROFILE = 1661;
7019
Raff Tsaic3d33ca422019-02-19 11:40:36 +08007020 // ACTION: Show Contextual homepage, log latency in loading cards
7021 ACTION_CONTEXTUAL_HOME_SHOW = 1662;
7022
7023 // ACTION: Contextual card displays
7024 ACTION_CONTEXTUAL_CARD_SHOW = 1663;
7025
7026 // ACTION: Contextual cards are eligible to be shown, but don't rank high
7027 ACTION_CONTEXTUAL_CARD_NOT_SHOW = 1664;
7028
7029 // ACTION: Settings > long press a card, and click dismiss
7030 // Contextual card is dismissed
7031 ACTION_CONTEXTUAL_CARD_DISMISS = 1665;
7032
7033 // ACTION: Settings > click a card
7034 // Contextual card is clicked
7035 ACTION_CONTEXTUAL_CARD_CLICK = 1666;
7036
Mariia Sandrikova908d8132019-02-21 20:02:49 +00007037 // Mapping: go/at-mapping
7038 PAGE_ATSSI = 1667;
7039
7040 PAGE_ATSII = 1668;
7041
7042 PAGE_ATUS = 1669;
7043
7044 PAGE_ATSSP = 1670;
7045
7046 PAGE_ATSAP = 1671;
7047
7048 PAGE_ATSCP = 1672;
7049
7050 PAGE_ATHNP = 1673;
7051
7052 ACTION_ATSG = 1674;
7053
7054 ACTION_ATPG = 1675;
7055
7056 ACTION_ATCLPB = 1676;
7057
7058 ACTION_ATCGIB = 1677;
7059
7060 ACTION_ATCPAB = 1678;
7061
7062 ACTION_ATCSAUC = 1679;
7063
7064 ACTION_ATCSCUC = 1680;
7065
7066 ACTION_ATCHNUC = 1681;
7067
Beverly5015ac82019-01-10 16:33:02 -05007068 // ---- End Q Constants, all Q constants go above this line ----
Chris Wren77781d32016-01-11 14:49:26 -05007069 // Add new aosp constants above this line.
7070 // END OF AOSP CONSTANTS
7071 }
7072}