blob: 4ebf9aa005d8942d3c6074c0c802a99cb7dc0b5d [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 TYPE_TRANSITION_HOT_LAUNCH = 9;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Chris Wren5e334f62016-11-14 10:16:21 -050076 }
77
Chris Wren65f07fe2017-03-14 14:10:37 -040078 // Types of alerts, as bit field values
79 enum Alert {
80 // Vibrate the device.
81 ALERT_BUZZ = 1;
82
83 // Make sound through the speaker.
84 ALERT_BEEP = 2;
85
86 // Flash a notificaiton light.
87 ALERT_BLINK = 4;
88 }
89
90 // Reasons that a notification might be dismissed.
91 enum DismissReason {
92 // from android.service.notification.NotificationListenerService
93
94 // Notification was canceled by the status bar reporting a notification click
95 REASON_CLICK = 1;
96
97 // Notification was canceled by the status bar reporting a user dismissal.
98 REASON_CANCEL = 2;
99
100 // Notification was canceled by the status bar reporting a user dismiss all.
101 REASON_CANCEL_ALL = 3;
102
103 // Notification was canceled by the status bar reporting an inflation error.
104 REASON_ERROR = 4;
105
106 // Notification was canceled by the package manager modifying the package.
107 REASON_PACKAGE_CHANGED = 5;
108
109 // Notification was canceled by the owning user context being stopped.
110 REASON_USER_STOPPED = 6;
111
112 // Notification was canceled by the user banning the package.
113 REASON_PACKAGE_BANNED = 7;
114
115 // Notification was canceled by the app canceling this specific notification.
116 REASON_APP_CANCEL = 8;
117
118 //Notification was canceled by the app cancelling all its notifications.
119 REASON_APP_CANCEL_ALL = 9;
120
121 // Notification was canceled by a listener reporting a user dismissal.
122 REASON_LISTENER_CANCEL = 10;
123
124 //Notification was canceled by a listener reporting a user dismiss all.
125 REASON_LISTENER_CANCEL_ALL = 11;
126
127 // Notification was canceled because it was a member of a canceled group.
128 REASON_GROUP_SUMMARY_CANCELED = 12;
129
130 // Notification was canceled because it was an invisible member of a group.
131 REASON_GROUP_OPTIMIZATION = 13;
132
133 // Notification was canceled by the device administrator suspending the package.
134 REASON_PACKAGE_SUSPENDED = 14;
135
136 // Notification was canceled by the owning managed profile being turned off.
137 REASON_PROFILE_TURNED_OFF = 15;
138
139 // Autobundled summary notification was canceled because its group was unbundled.
140 REASON_UNAUTOBUNDLED = 16;
141
142 // Notification was canceled by the user banning the channel.
143 REASON_CHANNEL_BANNED = 17;
144
145 // Notification was snoozed.
146 REASON_SNOOZED = 18;
147
148 // Notification was canceled due to timeout.
149 REASON_TIMEOUT = 19;
150 }
151
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700152 // Subtypes of camera events for ACTION_CAMERA_EVENT
153 enum CameraEvent {
154 // A back-facing camera was used
155 CAMERA_BACK_USED = 0;
156
157 // A front-facing camera was used
158 CAMERA_FRONT_USED = 1;
159
160 // An external camera was used
161 CAMERA_EXTERNAL_USED = 2;
162 }
163
Jan Althaus786a39d2017-09-15 10:41:16 +0200164 // TextClassifier entity types.
165 enum TextClassifierEntityType {
166 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
167 TEXT_CLASSIFIER_TYPE_OTHER = 2;
168 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
169 TEXT_CLASSIFIER_TYPE_PHONE = 4;
170 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
171 TEXT_CLASSIFIER_TYPE_URL = 6;
172 }
173
Jan Althausae5eb832017-11-06 12:31:59 +0100174 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
175 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500176 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100177 TEXT_SELECTION_INVOCATION_MANUAL = 1;
178 TEXT_SELECTION_INVOCATION_LINK = 2;
179 }
180
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100181 // Access method for hidden API events. Type of data tagged with
182 // FIELD_HIDDEN_API_ACCESS_METHOD.
183 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
184 enum HiddenApiAccessMethod {
185 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
186 ACCESS_METHOD_REFLECTION = 1;
187 ACCESS_METHOD_JNI = 2;
188 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
189 }
190
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700191 enum HardwareType {
192 HARDWARE_UNKNOWN = 0;
193 HARDWARE_MICROPHONE = 1;
194 HARDWARE_CODEC = 2;
195 HARDWARE_SPEAKER = 3;
196 HARDWARE_FINGERPRINT = 4;
197 }
198
199 enum HardwareFailureCode {
200 HARDWARE_FAILURE_UNKNOWN = 0;
201 HARDWARE_FAILURE_COMPLETE = 1;
202 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
203 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
204 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
205 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
206 }
207
Andrew Chantc03bc632018-05-18 10:52:00 -0700208 enum IoOperation {
209 IOOP_UNKNOWN = 0;
210 IOOP_READ = 1;
211 IOOP_WRITE = 2;
212 IOOP_UNMAP = 3;
213 IOOP_SYNC = 4;
214 }
215
Chris Wren77781d32016-01-11 14:49:26 -0500216 // Known visual elements: views or controls.
217 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500218 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500219 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500222 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > Accessibility
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > Accessibility > Captions
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OPEN: Settings > Accessibility > [Service]
235 // CATEGORY: SETTINGS
236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500237 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500238
239 // OPEN: Settings > Accessibility > Color correction
240 // CATEGORY: SETTINGS
241 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500242 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500243
244 // OPEN: Settings > Accessibility > Accessibility shortcut
245 // CATEGORY: SETTINGS
246 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500247 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500248
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700249 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
250 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
251 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > Accounts
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Accounts > [Single Account Sync Settings]
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Accounts > Add an account
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Accounts > [List of accounts when more than one]
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Cellular network settings > APNs
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500287 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500290 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500291
292 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500293 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Apps > Configure apps > App links > [App]
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500301 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500302
303 // OPEN: Settings > Internal storage > Apps storage > [App]
304 // CATEGORY: SETTINGS
305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500306 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500307
308 // OPEN: Settings > Apps > [App info]
309 // CATEGORY: SETTINGS
310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500311 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Memory > App usage > [App Memory usage]
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500319 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OPEN: Settings > Memory > App usage
322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OPEN: Settings > Bluetooth
327 // CATEGORY: SETTINGS
328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500329 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Choose Bluetooth device (ex: when sharing)
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500337 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Security > Choose screen lock
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Security > Choose screen lock > Choose your password
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings > Security > Choose screen lock > Confirm your password
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
360 // CATEGORY: SETTINGS
361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500362 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500363
364 // OPEN: Settings > Security > Encrypt phone
365 // CATEGORY: SETTINGS
366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500367 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500368
369 // OPEN: Settings > Security > Encrypt phone > Confirm
370 // CATEGORY: SETTINGS
371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500372 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500373
374 // OPEN: Settings > Search results
375 // CATEGORY: SETTINGS
376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500377 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings (Root page)
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500385 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Data usage
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > Date & time
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OPEN: Settings > Developer options
398 // CATEGORY: SETTINGS
399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500400 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500401
402 // OPEN: Settings > About phone
403 // CATEGORY: SETTINGS
404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500405 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500406
407 // OPEN: Settings > About phone > Status > IMEI information
408 // CATEGORY: SETTINGS
409 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500410 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings > Internal storage
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > About phone > Status > SIM status
418 // CATEGORY: SETTINGS
419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500420 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: Settings > About phone > Status
423 // CATEGORY: SETTINGS
424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500425 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500428 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: Settings > Display
431 // CATEGORY: SETTINGS
432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500433 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OPEN: Settings > Display > Daydream
436 // CATEGORY: SETTINGS
437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500438 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500439
440 // OPEN: Settings > Security > Screen lock > Secure start-up
441 // CATEGORY: SETTINGS
442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500443 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 // OPEN: Settings > Security > Nexus Imprint
446 // CATEGORY: SETTINGS
447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500448 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500451 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Battery > History details
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Battery > Battery saver
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Battery > [App Use details]
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Battery
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OPEN: Settings > Home
474 // CATEGORY: SETTINGS
475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500476 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500477
478 // OPEN: Settings > Security > SIM card lock settings
479 // CATEGORY: SETTINGS
480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500481 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500482
483 // OPEN: Settings > Language & input
484 // CATEGORY: SETTINGS
485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500486 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500487
488 // OPEN: Settings > Language & input > Physical keyboard
489 // CATEGORY: SETTINGS
490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500491 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Language & input > Spell checker
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500499 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Language & input > Personal dictionary
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Language & input > Add word
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Location
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Location > Location mode
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Apps
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OPEN: Settings > Backup & reset > Factory data reset
527 // CATEGORY: SETTINGS
528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500529 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
532 // CATEGORY: SETTINGS
533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500534 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500535
536 // OPEN: Settings > Data usage > Network restrictions
537 // CATEGORY: SETTINGS
538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500539 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500540
541 // OPEN: Settings > More > Android Beam
542 // CATEGORY: SETTINGS
543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500544 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500545
546 // OPEN: Settings > Tap & pay
547 // CATEGORY: SETTINGS
548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500549 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500550
551 // OPEN: Settings > Sound & notification
552 // CATEGORY: SETTINGS
553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500554 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500555
556 // OPEN: Settings > Sound & notification > App notifications > [App]
557 // CATEGORY: SETTINGS
558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500559 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings > Sound & notification > Other sounds
562 // CATEGORY: SETTINGS
563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500564 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500565
566 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500567 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500568
569 // OPEN: Settings Widget > Notification log
570 // CATEGORY: SETTINGS
571 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500572 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500573
574 // OPEN: Settings > Sound & notification > Do not disturb
575 // CATEGORY: SETTINGS
576 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500577 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500578
579 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500580 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500581
582 // OPEN: Print job notification > Print job settings
583 // CATEGORY: SETTINGS
584 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500585 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500586
587 // OPEN: Settings > Printing > [Print Service]
588 // CATEGORY: SETTINGS
589 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500590 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500591
592 // OPEN: Settings > Printing
593 // CATEGORY: SETTINGS
594 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500595 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500596
597 // OPEN: Settings > Backup & reset
598 // CATEGORY: SETTINGS
599 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500600 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500601
602 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500603 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: Settings > Backup & reset > Network settings reset
606 // CATEGORY: SETTINGS
607 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500608 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500609
610 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
611 // CATEGORY: SETTINGS
612 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500613 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500614
615 // OPEN: Settings > Developer Options > Running Services
616 // CATEGORY: SETTINGS
617 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500618 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500619
620 // OPEN: Settings > Security > Screen pinning
621 // CATEGORY: SETTINGS
622 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500623 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500624
625 // OPEN: Settings > Security
626 // CATEGORY: SETTINGS
627 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500628 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: Settings > SIM cards
631 // CATEGORY: SETTINGS
632 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500633 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500634
635 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500636 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > More > Tethering & portable hotspot
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Security > Trust agents
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Settings > Security > Trusted credentials
649 // CATEGORY: SETTINGS
650 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500651 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500652
653 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
654 // CATEGORY: SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OPEN: Settings > Language & input > Text-to-speech output
659 // CATEGORY: SETTINGS
660 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500661 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500662
663 // OPEN: Settings > Security > Apps with usage access
664 // CATEGORY: SETTINGS
665 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500666 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500667
668 // OPEN: Settings > Users
669 // CATEGORY: SETTINGS
670 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500671 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500672
673 // OPEN: Settings > Users > [Restricted profile app & content access]
674 // CATEGORY: SETTINGS
675 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500676 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: Settings > Users > [User settings]
679 // CATEGORY: SETTINGS
680 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500681 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500682
683 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500684 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: Settings > More > VPN
687 // CATEGORY: SETTINGS
688 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500689 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500690
691 // OPEN: Settings > Display > Choose wallpaper from
692 // CATEGORY: SETTINGS
693 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500694 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500695
696 // OPEN: Settings > Display > Cast
697 // CATEGORY: SETTINGS
698 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500699 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500700
701 // OPEN: Settings > Wi-Fi
702 // CATEGORY: SETTINGS
703 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500704 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500705
706 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
707 // CATEGORY: SETTINGS
708 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500709 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500710
711 // OPEN: Settings > More > Wi-Fi Calling
712 // CATEGORY: SETTINGS
713 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500714 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OPEN: Settings > Wi-Fi > Saved networks
717 // CATEGORY: SETTINGS
718 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500719 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500722 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500725 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500726
727 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
728 // CATEGORY: SETTINGS
729 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500730 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500731
732 // OPEN: Settings > More
733 // CATEGORY: SETTINGS
734 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500735 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500736
737 // OPEN: Quick Settings Panel
738 // CATEGORY: QUICK_SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS Airplane mode tile shown
743 // ACTION: QS Airplane mode tile tapped
744 // SUBTYPE: 0 is off, 1 is on
745 // CATEGORY: QUICK_SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS Bluetooth tile shown
750 // ACTION: QS Bluetooth tile tapped
751 // SUBTYPE: 0 is off, 1 is on
752 // CATEGORY: QUICK_SETTINGS
753 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500754 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: QS Cast tile shown
757 // ACTION: QS Cast tile tapped
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Cellular tile shown
763 // ACTION: QS Cellular tile tapped
764 // CATEGORY: QUICK_SETTINGS
765 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500766 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500767
768 // OPEN: QS Color inversion tile shown
769 // ACTION: QS Color inversion tile tapped
770 // SUBTYPE: 0 is off, 1 is on
771 // CATEGORY: QUICK_SETTINGS
772 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500773 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500774
775 // OPEN: QS Cellular tile > Cellular detail panel
776 // CATEGORY: QUICK_SETTINGS
777 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500778 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500779
780 // OPEN: QS Do not disturb tile shown
781 // ACTION: QS Do not disturb tile tapped
782 // SUBTYPE: 0 is off, 1 is on
783 // CATEGORY: QUICK_SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // OPEN: QS Flashlight tile shown
788 // ACTION: QS Flashlight tile tapped
789 // SUBTYPE: 0 is off, 1 is on
790 // CATEGORY: QUICK_SETTINGS
791 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500792 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OPEN: QS Hotspot tile shown
795 // ACTION: QS Hotspot tile tapped
796 // SUBTYPE: 0 is off, 1 is on
797 // CATEGORY: QUICK_SETTINGS
798 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500799 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500800
801 // OPEN: QS 3P tile shown
802 // ACTION: QS 3P tile tapped
803 // CATEGORY: QUICK_SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // OPEN: QS Location tile shown
808 // ACTION: QS Location tile tapped
809 // SUBTYPE: 0 is off, 1 is on
810 // CATEGORY: QUICK_SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // OPEN: QS Rotation tile shown
815 // ACTION: QS Rotation tile tapped
816 // SUBTYPE: 0 is off, 1 is on
817 // CATEGORY: QUICK_SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500822 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500823
824 // OPEN: QS User list panel
825 // CATEGORY: QUICK_SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // OPEN: QS WiFi tile shown
830 // ACTION: QS WiFi tile tapped
831 // SUBTYPE: 0 is off, 1 is on
832 // CATEGORY: QUICK_SETTINGS
833 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OPEN: Notification Panel (including lockscreen)
837 // CATEGORY: NOTIFICATION
838 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500839 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: Notification in panel became visible.
842 // PACKAGE: App that posted the notification.
843 // ACTION: Notification is tapped.
844 // PACKAGE: App that posted the notification
845 // DETAIL: Notification is expanded by user.
846 // PACKAGE: App that posted the notification
847 // DISMISS: Notification is dismissed.
848 // PACKAGE: App that posted the notification
849 // SUBTYPE: Dismiss reason from NotificationManagerService.java
850 // CATEGORY: NOTIFICATION
851 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500852 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: User tapped notification action
855 // PACKAGE: App that posted the notification
856 // SUBTYPE: Index of action on notification
857 // CATEGORY: NOTIFICATION
858 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OPEN: Settings > Apps > Configure apps > App permissions
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OPEN: Settings > Location > Scanning
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500872 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // OPEN: Settings > Sound & notification > App notifications
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // ACTION: Settings > Wi-Fi > Overflow > Add Network
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700885 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500886 // CATEGORY: SETTINGS
887 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500888 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500889
890 // ACTION: Settings > Wi-Fi > Overflow > Refresh
891 // CATEGORY: SETTINGS
892 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500893 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500894
895 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
896 // CATEGORY: SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700901 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: Settings > Wi-Fi > Toggle on
907 // CATEGORY: SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500912 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: Settings > Sound & notification > DND > Priority only allows
915 // CATEGORY: SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // OPEN: Settings > Sound & notification > DND > Automatic rules
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: Settings > Apps > Configure apps > App links
925 // CATEGORY: SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: Settings > Sound & notification > DND > [Time based rule]
930 // CATEGORY: SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: Settings > Sound & notification > DND > [External rule]
935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // OPEN: Settings > Sound & notification > DND > [Event rule]
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500943
Howard Ro4db243a2018-08-07 15:44:25 -0700944 // ACTION: App notification settings > Block Notifications or long press on
945 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -0500946 // CATEGORY: SETTINGS
Howard Ro4db243a2018-08-07 15:44:25 -0700947 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: Notification shade > Dismiss all button
951 // CATEGORY: NOTIFICATION
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // OPEN: QS Do Not Disturb detail panel
956 // CATEGORY: QUICK_SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // OPEN: QS Bluetooth detail panel
961 // CATEGORY: QUICK_SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // OPEN: QS Cast detail panel
966 // CATEGORY: QUICK_SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // OPEN: QS Wi-Fi detail panel
971 // CATEGORY: QUICK_SETTINGS
972 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500973 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500974
975 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
976 // SUBTYPE: 0 is off, 1 is on
977 // CATEGORY: QUICK_SETTINGS
978 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500979 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500980
981 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
982 // SUBTYPE: 0 is off, 1 is on
983 // CATEGORY: QUICK_SETTINGS
984 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500985 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // ACTION: QS Cellular detail panel > Cellular toggle
988 // SUBTYPE: 0 is off, 1 is on
989 // CATEGORY: QUICK_SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: QS User list panel > Select different user
994 // CATEGORY: QUICK_SETTINGS
995 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500996 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500997
998 // ACTION: QS Cast detail panel > Select cast device
999 // CATEGORY: QUICK_SETTINGS
1000 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001001 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: QS Cast detail panel > Disconnect cast device
1004 // CATEGORY: QUICK_SETTINGS
1005 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001006 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: Settings > Bluetooth > Toggle
1009 // SUBTYPE: 0 is off, 1 is on
1010 // CATEGORY: SETTINGS
1011 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001012 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001013
1014 // ACTION: Settings > Bluetooth > Overflow > Refresh
1015 // CATEGORY: SETTINGS
1016 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001017 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001018
1019 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1020 // CATEGORY: SETTINGS
1021 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001022 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001023
1024 // ACTION: Settings > Bluetooth > Overflow > Show received files
1025 // CATEGORY: SETTINGS
1026 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001027 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: QS DND details panel > Increase / Decrease exit time
1030 // SUBTYPE: true is increase, false is decrease
1031 // CATEGORY: QUICK_SETTINGS
1032 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001033 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001034
1035 // ACTION: QS DND details panel > [Exit condition]
1036 // CATEGORY: QUICK_SETTINGS
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // ACTION: QS DND details panel > [DND mode]
1041 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1042 // CATEGORY: QUICK_SETTINGS
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: QS DND detail panel > DND toggle
1047 // SUBTYPE: 0 is off, 1 is on
1048 // CATEGORY: QUICK_SETTINGS
1049 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001050 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001051
1052 // ACTION: DND Settings > Priority only allows > Reminder toggle
1053 // SUBTYPE: 0 is off, 1 is on
1054 // CATEGORY: SETTINGS
1055 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001056 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001057
1058 // ACTION: DND Settings > Priority only allows > Event toggle
1059 // SUBTYPE: 0 is off, 1 is on
1060 // CATEGORY: SETTINGS
1061 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001062 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001063
1064 // ACTION: DND Settings > Priority only allows > Messages
1065 // SUBTYPE: 0 is off, 1 is on
1066 // CATEGORY: SETTINGS
1067 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001068 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001069
1070 // ACTION: DND Settings > Priority only allows > Calls
1071 // SUBTYPE: 0 is off, 1 is on
1072 // CATEGORY: SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1077 // SUBTYPE: 0 is off, 1 is on
1078 // CATEGORY: SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: DND Settings > Automatic rules > Add rule
1083 // CATEGORY: SETTINGS
1084 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001085 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // ACTION: DND Settings > Automatic rules > Add rule > OK
1088 // CATEGORY: SETTINGS
1089 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001090 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001091
1092 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1093 // CATEGORY: SETTINGS
1094 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001095 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1098 // CATEGORY: SETTINGS
1099 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001100 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001101
1102 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1103 // SUBTYPE: 0 is off, 1 is on
1104 // CATEGORY: SETTINGS
1105 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001106 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001107
1108 // ACTION: Settings > More > Airplane mode toggle
1109 // SUBTYPE: 0 is off, 1 is on
1110 // CATEGORY: SETTINGS
1111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001112 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // ACTION: Settings > Data usage > Cellular data toggle
1115 // SUBTYPE: 0 is off, 1 is on
1116 // CATEGORY: SETTINGS
1117 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001118 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001119
1120 // OPEN: Settings > Sound & notification > Notification access
1121 // CATEGORY: SETTINGS
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // OPEN: Settings > Sound & notification > Do Not Disturb access
1126 // CATEGORY: SETTINGS
1127 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001128 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // OPEN: Settings > Apps > Configure apps > Default Apps
1131 // CATEGORY: SETTINGS
1132 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001133 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001134
1135 // OPEN: Settings > Internal storage > Apps storage
1136 // CATEGORY: SETTINGS
1137 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001138 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001139
1140 // OPEN: Settings > Security > Usage access
1141 // CATEGORY: SETTINGS
1142 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001143 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // OPEN: Settings > Battery > Battery optimization
1146 // CATEGORY: SETTINGS
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001151 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001152
1153 // ACTION: Lockscreen > Unlock gesture
1154 // CATEGORY: GLOBAL_SYSTEM_UI
1155 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001156 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001157
1158 // ACTION: Lockscreen > Pull shade open
1159 // CATEGORY: GLOBAL_SYSTEM_UI
1160 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001161 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001162
1163 // ACTION: Lockscreen > Tap on lock, shows hint
1164 // CATEGORY: GLOBAL_SYSTEM_UI
1165 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001166 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001167
1168 // ACTION: Lockscreen > Camera
1169 // CATEGORY: GLOBAL_SYSTEM_UI
1170 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001171 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001172
1173 // ACTION: Lockscreen > Dialer
1174 // CATEGORY: GLOBAL_SYSTEM_UI
1175 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001176 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // ACTION: Lockscreen > Tap on lock, locks phone
1179 // CATEGORY: GLOBAL_SYSTEM_UI
1180 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001181 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // ACTION: Lockscreen > Tap on notification, false touch rejection
1184 // CATEGORY: GLOBAL_SYSTEM_UI
1185 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001186 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // ACTION: Lockscreen > Swipe down to open quick settings
1189 // CATEGORY: GLOBAL_SYSTEM_UI
1190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001191 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // ACTION: Swipe down to open quick settings when unlocked
1194 // CATEGORY: GLOBAL_SYSTEM_UI
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // ACTION: Notification shade > Tap to open quick settings
1199 // CATEGORY: GLOBAL_SYSTEM_UI
1200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001201 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001202
1203 // OPEN: Lockscreen
1204 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1205 // CATEGORY: GLOBAL_SYSTEM_UI
1206 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001207 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001208
1209 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1210 // CATEGORY: GLOBAL_SYSTEM_UI
1211 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001212 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001213
1214 // OPEN: Screen turned on
1215 // SUBTYPE: 2 is user action
1216 // CATEGORY: GLOBAL_SYSTEM_UI
1217 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001218 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // OPEN: Notification caused sound, vibration, and/or LED blink
1221 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1222 // CATEGORY: NOTIFICATION
1223 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001224 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001225
1226 // ACTION: Lockscreen > Emergency Call button
1227 // CATEGORY: GLOBAL_SYSTEM_UI
1228 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001229 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1232 // CATEGORY: SETTINGS
1233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001234 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001235
1236 // OPEN: Settings > Memory
1237 // CATEGORY: SETTINGS
1238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001239 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001240
1241 // ACTION: Settings > Display > When device is rotated
1242 // CATEGORY: SETTINGS
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Long press on notification to view controls
1247 // CATEGORY: NOTIFICATION
1248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001249 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001250
1251 // ACTION: Notificatoin controls > Info button
1252 // CATEGORY: NOTIFICATION
1253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001254 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001255
1256 // ACTION: Notification controls > Settings button
1257 // CATEGORY: NOTIFICATION
1258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001259 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001260
1261 // OPEN: Volume Dialog (with hardware buttons)
1262 // CATEGORY: GLOBAL_SYSTEM_UI
1263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001264 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001265
1266 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1267 // CATEGORY: GLOBAL_SYSTEM_UI
1268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001269 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001270
1271 // ACTION: Volume dialog > Adjust volume slider
1272 // SUBTYPE: volume level (0-7)
1273 // CATEGORY: GLOBAL_SYSTEM_UI
1274 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001275 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001276
1277 // ACTION: Volume dialog > Select non-active stream
1278 // SUBTYPE: stream (defined in AudioSystem.java)
1279 // CATEGORY: GLOBAL_SYSTEM_UI
1280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001281 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001282
1283 // ACTION: Adjust volume with hardware key
1284 // SUBTYPE: volume level (0-7)
1285 // CATEGORY: GLOBAL_SYSTEM_UI
1286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001287 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001288
1289 // ACTION: Volume dialog > Mute a stream by tapping icon
1290 // SUBTYPE: mute is 1, audible is 2
1291 // CATEGORY: GLOBAL_SYSTEM_UI
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // ACTION: Volume dialog > Change ringer mode by tapping icon
1296 // SUBTYPE: 2 is audible, 3 is vibrate
1297 // CATEGORY: GLOBAL_SYSTEM_UI
1298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001299 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001300
1301 // ACTION: Chooser shown (share target, file open, etc.)
1302 // CATEGORY: GLOBAL_SYSTEM_UI
1303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001304 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001305
1306 // ACTION: Chooser > User taps an app target
1307 // SUBTYPE: Index of target
1308 // CATEGORY: GLOBAL_SYSTEM_UI
1309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001310 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001311
1312 // ACTION: Chooser > User taps a service target
1313 // SUBTYPE: Index of target
1314 // CATEGORY: GLOBAL_SYSTEM_UI
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // ACTION: Chooser > User taps a standard target
1319 // SUBTYPE: Index of target
1320 // CATEGORY: GLOBAL_SYSTEM_UI
1321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001322 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001323
1324 // ACTION: QS Brightness Slider (with auto brightness disabled)
1325 // SUBTYPE: slider value
1326 // CATEGORY: QUICK_SETTINGS
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // ACTION: QS Brightness Slider (with auto brightness enabled)
1331 // SUBTYPE: slider value
1332 // CATEGORY: QUICK_SETTINGS
1333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001334 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001335
1336 // OPEN: Settings > Display > Brightness Slider
1337 // CATEGORY: SETTINGS
1338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001339 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001340
Christine Franks47175c32017-03-14 10:21:25 -07001341 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // OPEN: Display has entered dream mode
1347 // CATEGORY: GLOBAL_SYSTEM_UI
1348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001349 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001350
1351 // OPEN: Display has entered ambient notification mode
1352 // CATEGORY: GLOBAL_SYSTEM_UI
1353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001354 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001355
1356 // OPEN: Overview
1357 // CATEGORY: GLOBAL_SYSTEM_UI
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // OPEN: Settings > About phone > Legal information
1362 // CATEGORY: SETTINGS
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // OPEN: Settings > Search > Perform search
1367 // CATEGORY: SETTINGS
1368 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001369 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001370
1371 // OPEN: Settings > System UI Tuner
1372 // CATEGORY: SETTINGS
1373 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001374 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001375
1376 // OPEN: Settings > System UI Tuner > Quick Settings
1377 // CATEGORY: SETTINGS
1378 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001379 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001380
1381 // OPEN: Settings > System UI Tuner > Demo mode
1382 // CATEGORY: SETTINGS
1383 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001384 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1387 // PACKAGE: Tile
1388 // CATEGORY: SETTINGS
1389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001390 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001391
1392 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1393 // PACKAGE: Tile
1394 // CATEGORY: SETTINGS
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1399 // PACKAGE: Tile
1400 // CATEGORY: SETTINGS
1401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001402 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001403
1404 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1405 // PACKAGE: Icon
1406 // CATEGORY: SETTINGS
1407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001408 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001409
1410 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1411 // PACKAGE: Icon
1412 // CATEGORY: SETTINGS
1413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001414 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001415
1416 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1417 // SUBTYPE: false is disabled, true is enabled
1418 // CATEGORY: SETTINGS
1419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001420 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001421
1422 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1423 // SUBTYPE: false is disabled, true is enabled
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1429 // SUBTYPE: 0 is disabled, 1 is enabled
1430 // CATEGORY: SETTINGS
1431 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001432 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001433
1434 // OPEN: Settings > Developer options > Inactive apps
1435 // CATEGORY: SETTINGS
1436 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001437 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001438
1439 // ACTION: Long press home to bring up assistant
1440 // CATEGORY: GLOBAL_SYSTEM_UI
1441 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001442 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001443
1444 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1445 // CATEGORY: SETTINGS
1446 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001447 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001448
1449 // OPEN: Fingerprint Enroll > Find Sensor
1450 // CATEGORY: SETTINGS
1451 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001452 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001453
1454 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1455 // CATEGORY: SETTINGS
1456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001457 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001458
1459 // OPEN: Fingerprint Enroll introduction
1460 // CATEGORY: SETTINGS
1461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001462 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001463
1464 // OPEN: Fingerprint Enroll onboarding
1465 // CATEGORY: SETTINGS
1466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001467 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001468
1469 // OPEN: Fingerprint Enroll > Let's Start!
1470 // CATEGORY: SETTINGS
1471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001472 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001473
1474 // OPEN: Fingerprint Enroll SUW > Let's Start!
1475 // CATEGORY: SETTINGS
1476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001477 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001478
1479 // OPEN: Fingerprint Enroll SUW > Find Sensor
1480 // CATEGORY: SETTINGS
1481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001482 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001483
1484 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1485 // CATEGORY: SETTINGS
1486 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001487 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001488
1489 // OPEN: Fingerprint Enroll SUW introduction
1490 // CATEGORY: SETTINGS
1491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001492 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001493
1494 // OPEN: Fingerprint Enroll SUW onboarding
1495 // CATEGORY: SETTINGS
1496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001497 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001498
1499 // ACTION: Add fingerprint > Enroll fingerprint
1500 // CATEGORY: SETTINGS
1501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001502 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001503
1504 // ACTION: Authenticate using fingerprint
1505 // CATEGORY: SETTINGS
1506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001507 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001508
1509 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1510 // CATEGORY: SETTINGS
1511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001512 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001513
1514 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1515 // CATEGORY: SETTINGS
1516 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001517 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001518
1519 // ACTION: Double tap camera shortcut
1520 // CATEGORY: GLOBAL_SYSTEM_UI
1521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001522 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001523
1524 // ACTION: Double twist camera shortcut
1525 // CATEGORY: GLOBAL_SYSTEM_UI
1526 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001527 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001528
1529 // OPEN: QS Work Mode tile shown
1530 // ACTION: QS Work Mode tile tapped
1531 // SUBTYPE: 0 is off, 1 is on
1532 // CATEGORY: QUICK_SETTINGS
1533 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001534 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001535
1536 // OPEN: Settings > Developer Options > Background Check
1537 // CATEGORY: SETTINGS
1538 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001539 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001540
1541 // OPEN: QS Lock tile shown
1542 // ACTION: QS Lock tile tapped
1543 // SUBTYPE: 0 is off, 1 is on
1544 // CATEGORY: QUICK_SETTINGS
1545 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001546 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001547
1548 // OPEN: QS User Tile shown
1549 // CATEGORY: QUICK_SETTINGS
1550 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001551 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001552
1553 // OPEN: QS Battery tile shown
1554 // CATEGORY: QUICK_SETTINGS
1555 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001556 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001557
1558 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1559 // CATEGORY: SETTINGS
1560 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001561 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001562
1563 // ACTION: Visual interruptions > No screen interuptions toggle
1564 // SUBTYPE: 0 is off, 1 is on
1565 // CATEGORY: SETTINGS
1566 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001567 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001568
1569 // ACTION: Visual interruptions > No notification light toggle
1570 // SUBTYPE: 0 is off, 1 is on
1571 // CATEGORY: SETTINGS
1572 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001573 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001574
Julia Reynolds005c8b92017-08-24 10:35:53 -04001575 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001576 // CATEGORY: SETTINGS
1577 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001578 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001579
1580 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1581 // PACKAGE: Selected SMS app
1582 // CATEGORY: SETTINGS
1583 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001584 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001585
1586 // OPEN: QS Color modification tile shown
1587 // ACTION: QS Color modification tile tapped
1588 // SUBTYPE: 0 is off, 1 is on
1589 // CATEGORY: QUICK_SETTINGS
1590 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001591 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001592
1593 // OPEN: QS Custom tile shown
1594 // ACTION: QS Work Mode tile tapped
1595 // CATEGORY: QUICK_SETTINGS
1596 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001597 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001598
1599 // ACTION: Visual interruptions > Never turn off the screen toggle
1600 // SUBTYPE: 0 is off, 1 is on
1601 // CATEGORY: SETTINGS
1602 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001603 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001604
Chris Wren7c516842016-03-01 16:44:32 -05001605 // ACTION: Overview > Long-press task, drag to enter split-screen
1606 // CATEGORY: GLOBAL_SYSTEM_UI
1607 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001608 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1609
Chris Wren7c516842016-03-01 16:44:32 -05001610 // ACTION: In App > Long-press Overview button to enter split-screen
1611 // CATEGORY: GLOBAL_SYSTEM_UI
1612 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001613 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1614
Chris Wren7c516842016-03-01 16:44:32 -05001615 // ACTION: In App > Swipe Overview button to enter split-screen
1616 // CATEGORY: GLOBAL_SYSTEM_UI
1617 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001618 ACTION_WINDOW_DOCK_SWIPE = 272;
1619
Chris Wren7c516842016-03-01 16:44:32 -05001620 // ACTION: Launch profile-specific app > Confirm credentials
1621 // CATEGORY: GLOBAL_SYSTEM_UI
1622 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001623 PROFILE_CHALLENGE = 273;
1624
Chris Wren7c516842016-03-01 16:44:32 -05001625 // OPEN: QS Battery detail panel
1626 // CATEGORY: GLOBAL_SYSTEM_UI
1627 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001628 QS_BATTERY_DETAIL = 274;
1629
Chris Wren7c516842016-03-01 16:44:32 -05001630 // OPEN: Overview > History
1631 // CATEGORY: GLOBAL_SYSTEM_UI
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 OVERVIEW_HISTORY = 275;
1634
Chris Wren7c516842016-03-01 16:44:32 -05001635 // ACTION: Overview > Page by tapping Overview button
1636 // CATEGORY: GLOBAL_SYSTEM_UI
1637 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001638 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001639
Chris Wren7c516842016-03-01 16:44:32 -05001640 // ACTION: Overview > Select app
1641 // CATEGORY: GLOBAL_SYSTEM_UI
1642 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001643 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001644
Chris Wren7c516842016-03-01 16:44:32 -05001645 // ACTION: View emergency info
1646 // CATEGORY: GLOBAL_SYSTEM_UI
1647 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001648 ACTION_VIEW_EMERGENCY_INFO = 278;
1649
Chris Wren7c516842016-03-01 16:44:32 -05001650 // ACTION: Edit emergency info activity
1651 // CATEGORY: SETTINGS
1652 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001653 ACTION_EDIT_EMERGENCY_INFO = 279;
1654
Chris Wren7c516842016-03-01 16:44:32 -05001655 // ACTION: Edit emergency info field
1656 // CATEGORY: SETTINGS
1657 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001658 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1659
Chris Wren7c516842016-03-01 16:44:32 -05001660 // ACTION: Add emergency contact
1661 // CATEGORY: SETTINGS
1662 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001663 ACTION_ADD_EMERGENCY_CONTACT = 281;
1664
Chris Wren7c516842016-03-01 16:44:32 -05001665 // ACTION: Delete emergency contact
1666 // CATEGORY: SETTINGS
1667 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001668 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1669
Chris Wren7c516842016-03-01 16:44:32 -05001670 // ACTION: Call emergency contact
1671 // CATEGORY: SETTINGS
1672 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001673 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001674
Chris Wren7c516842016-03-01 16:44:32 -05001675 // OPEN: QS Data Saver tile shown
1676 // ACTION: QS Data Saver tile tapped
1677 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001678 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001679
Robin Lee8c1306e2016-02-01 11:37:02 +00001680 // OPEN: Settings > Security > User credentials
1681 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001682 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001683 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001684
Chris Wren7c516842016-03-01 16:44:32 -05001685 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1686 // CATEGORY: GLOBAL_SYSTEM_UI
1687 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001688 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001689
1690 // Logged when the user scrolls through overview manually
1691 OVERVIEW_SCROLL = 287;
1692
1693 // Logged when the overview times out automatically selecting an app
1694 OVERVIEW_SELECT_TIMEOUT = 288;
1695
1696 // Logged when a user dismisses a task in overview
1697 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001698
1699 // Logged when the user modifying the notification importance slider.
1700 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1701
1702 // Logged when the user saves a modification to notification importance. Negative numbers
1703 // indicate the user lowered the importance; positive means they increased it.
1704 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001705
Chris Wren7c516842016-03-01 16:44:32 -05001706 // ACTION: Long-press power button, then tap "Take bug report" option.
1707 // CATEGORY: GLOBAL_SYSTEM_UI
1708 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001709 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1710
Chris Wren7c516842016-03-01 16:44:32 -05001711 // ACTION: Long-press power button, then long-press "Take bug report" option.
1712 // CATEGORY: GLOBAL_SYSTEM_UI
1713 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001714 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1715
Chris Wren7c516842016-03-01 16:44:32 -05001716 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1717 // CATEGORY: SETTINGS
1718 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001719 // Interactive bug report initiated from Settings.
1720 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1723 // CATEGORY: SETTINGS
1724 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001725 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001726 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1727
Chris Wren7c516842016-03-01 16:44:32 -05001728 // ACTION: User tapped notification action to cancel a bug report
1729 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001730 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001731 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1732
Chris Wren7c516842016-03-01 16:44:32 -05001733 // ACTION: User tapped notification action to launch bug report details screen
1734 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001735 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001736 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1737
Chris Wren7c516842016-03-01 16:44:32 -05001738 // ACTION: User tapped notification action to take adition screenshot on bug report
1739 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001740 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001741 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1742
Chris Wren7c516842016-03-01 16:44:32 -05001743 // ACTION: User tapped notification to share bug report
1744 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001745 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001746 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1747
Chris Wren7c516842016-03-01 16:44:32 -05001748 // ACTION: User changed bug report name using the details screen
1749 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001750 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001751 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1752
Chris Wren7c516842016-03-01 16:44:32 -05001753 // ACTION: User changed bug report title using the details screen
1754 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001755 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001756 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1757
Chris Wren7c516842016-03-01 16:44:32 -05001758 // ACTION: User changed bug report description using the details screen
1759 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001760 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001761 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1762
Chris Wren7c516842016-03-01 16:44:32 -05001763 // ACTION: User tapped Save in the bug report details screen.
1764 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001765 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001766 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1767
Chris Wren7c516842016-03-01 16:44:32 -05001768 // ACTION: User tapped Cancel in the bug report details screen.
1769 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001770 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001771 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001772
1773 // Tuner: Open/close calibrate dialog.
1774 TUNER_CALIBRATE_DISPLAY = 305;
1775
1776 // Tuner: Open/close color and appearance.
1777 TUNER_COLOR_AND_APPEARANCE = 306;
1778
1779 // Tuner: Apply calibrate dialog.
1780 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1781
1782 // Tuner: Open/close night mode.
1783 TUNER_NIGHT_MODE = 308;
1784
1785 // Tuner: Change night mode.
1786 ACTION_TUNER_NIGHT_MODE = 309;
1787
1788 // Tuner: Change night mode auto.
1789 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1790
1791 // Tuner: Change night mode adjust dark theme.
1792 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1793
1794 // Tuner: Change night mode adjust tint.
1795 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1796
1797 // Tuner: Change night mode adjust brightness.
1798 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1799
1800 // Tuner: Change do not disturb in volume panel.
1801 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1802
1803 // Tuner: Change do not disturb volume buttons shortcut.
1804 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001805
1806 // Logs the action the user takes when an app crashed.
1807 ACTION_APP_CRASH = 316;
1808
1809 // Logs the action the user takes when an app ANR'd.
1810 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001811
1812 // Logged when a user double taps the overview button to launch the previous task
1813 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001814
1815 // Logged when we execute an app transition. This indicates the total delay from startActivity
1816 // until the app transition is starting to animate, in milliseconds.
1817 APP_TRANSITION_DELAY_MS = 319;
1818
1819 // Logged when we execute an app transition. This indicates the reason why the transition
1820 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1821 APP_TRANSITION_REASON = 320;
1822
1823 // Logged when we execute an app transition and we drew a starting window. This indicates the
1824 // delay from startActivity until the starting window was drawn.
1825 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1826
1827 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1828 // the delay from startActivity until all windows have been drawn.
1829 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1830
1831 // Logged when we execute an app transition. This indicates the component name of the current
1832 // transition.
1833 APP_TRANSITION_COMPONENT_NAME = 323;
1834
1835 // Logged when we execute an app transition. This indicates whether the process was already
1836 // running.
1837 APP_TRANSITION_PROCESS_RUNNING = 324;
1838
1839 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1840 // the transition was executed.
1841 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001842
Chris Wren38f98812016-07-13 14:28:40 -04001843 // ACTION: app requested access to a scoped directory, user granted it.
1844 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1845 // CATEGORY: GLOBAL_SYSTEM_UI
1846 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001847 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1848
Chris Wren38f98812016-07-13 14:28:40 -04001849 // ACTION: app requested access to a scoped directory, user denied it.
1850 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1851 // CATEGORY: GLOBAL_SYSTEM_UI
1852 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001853 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1854
Chris Wren38f98812016-07-13 14:28:40 -04001855 // ACTION: app requested access to a scoped directory, user granted it.
1856 // PACKAGE: app that requested access
1857 // CATEGORY: GLOBAL_SYSTEM_UI
1858 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001859 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1860
Chris Wren38f98812016-07-13 14:28:40 -04001861 // ACTION: app requested access to a scoped directory, user denied it.
1862 // PACKAGE: app that requested access.
1863 // CATEGORY: GLOBAL_SYSTEM_UI
1864 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001865 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1866
Chris Wren38f98812016-07-13 14:28:40 -04001867 // ACTION: app requested access to a directory user has already been granted
1868 // access before.
1869 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1870 // CATEGORY: GLOBAL_SYSTEM_UI
1871 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001872 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1873
Chris Wren38f98812016-07-13 14:28:40 -04001874 // ACTION: app requested access to a directory user has already been granted
1875 // access before.
1876 // PACKAGE: app that requested access.
1877 // CATEGORY: GLOBAL_SYSTEM_UI
1878 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001879 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001880
Chris Wren38f98812016-07-13 14:28:40 -04001881 // ACTION: Logged when the user slides a notification and reveals the gear
1882 // beneath it.
1883 // CATEGORY: NOTIFICATION
1884 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001885 ACTION_REVEAL_GEAR = 332;
1886
Chris Wren38f98812016-07-13 14:28:40 -04001887 // ACTION: Logged when the user taps on the gear beneath a notification.
1888 // CATEGORY: NOTIFICATION
1889 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001890 ACTION_TOUCH_GEAR = 333;
1891
Ruben Brunke24b9a62016-02-16 21:38:24 -08001892 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001893 // CATEGORY: SETTINGS
1894 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001895 VR_MANAGE_LISTENERS = 334;
1896
Jason Monk6f5354d2016-03-08 14:18:08 -05001897 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001898 // CATEGORY: SETTINGS
1899 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001901
Jason Monk6f5354d2016-03-08 14:18:08 -05001902 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001903 // CATEGORY: SETTINGS
1904 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001906
Jason Monk6f5354d2016-03-08 14:18:08 -05001907 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001908 // CATEGORY: SETTINGS
1909 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001911
Jason Monk6f5354d2016-03-08 14:18:08 -05001912 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001913 // CATEGORY: SETTINGS
1914 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001916
Jason Monk6f5354d2016-03-08 14:18:08 -05001917 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001918 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001919 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001920
Jason Monk6f5354d2016-03-08 14:18:08 -05001921 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001922 // CATEGORY: SETTINGS
1923 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001924 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001925
Jason Monk6f5354d2016-03-08 14:18:08 -05001926 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001927 // CATEGORY: SETTINGS
1928 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001929 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001930
Jason Monk6f5354d2016-03-08 14:18:08 -05001931 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001932 // CATEGORY: SETTINGS
1933 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001934 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001935
Jason Monk6f5354d2016-03-08 14:18:08 -05001936 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001937 // CATEGORY: SETTINGS
1938 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001939 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001940
Jason Monk6f5354d2016-03-08 14:18:08 -05001941 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001942 // CATEGORY: SETTINGS
1943 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001944 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001945
Jason Monk6f5354d2016-03-08 14:18:08 -05001946 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001947 // CATEGORY: SETTINGS
1948 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001949 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001950
Jason Monk6f5354d2016-03-08 14:18:08 -05001951 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001952 // CATEGORY: SETTINGS
1953 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001954 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001955
Jason Monk6f5354d2016-03-08 14:18:08 -05001956 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001957 // CATEGORY: SETTINGS
1958 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001959 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001960
Jason Monk6f5354d2016-03-08 14:18:08 -05001961 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001962 // CATEGORY: SETTINGS
1963 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001964 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001965
Jason Monk6f5354d2016-03-08 14:18:08 -05001966 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001967 // CATEGORY: SETTINGS
1968 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001969 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1970
1971 // Used for generic logging of Settings Preference Persistence, should not be used
1972 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001973 // CATEGORY: SETTINGS
1974 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001975 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001976
Jason Monk6f5354d2016-03-08 14:18:08 -05001977 // Settings -> Apps -> Gear -> Special access
1978 SPECIAL_ACCESS = 351;
1979
Muyuan Lia2129992016-03-03 18:30:39 -08001980 // Logs that the user docks window via shortcut key.
1981 WINDOW_DOCK_SHORTCUTS = 352;
1982
Felipe Lemeadccb992016-03-09 17:40:49 -08001983 // User already denied access to the request folder; action takes an integer
1984 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001985 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001986 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1987
1988 // User already denied access to the request folder; action pass package name
1989 // of calling package.
1990 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1991
1992 // User denied access to the request folder and checked 'Do not ask again';
1993 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001994 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001995 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1996
1997 // User denied access to the request folder and checked 'Do not ask again';
1998 // action pass package name of calling package.
1999 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2000
Winson3b6ba1a2016-03-22 15:37:54 -07002001 // Logged when a user dismisses all task in overview
2002 OVERVIEW_DISMISS_ALL = 357;
2003
Jason Monk96defbe2016-03-29 16:51:03 -04002004 // Quick Settings -> Edit
2005 QS_EDIT = 358;
2006
2007 // Quick Settings -> Edit -> Overflow -> Reset
2008 ACTION_QS_EDIT_RESET = 359;
2009
2010 // QS -> Edit - Drag a tile out of the active tiles.
2011 // The _SPEC contains either the spec of the tile or
2012 // the package of the 3rd party app in the PKG field.
2013 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2014 ACTION_QS_EDIT_REMOVE = 361;
2015
2016 // QS -> Edit - Drag a tile into the active tiles.
2017 // The _SPEC contains either the spec of the tile or
2018 // the package of the 3rd party app in the PKG field.
2019 ACTION_QS_EDIT_ADD_SPEC = 362;
2020 ACTION_QS_EDIT_ADD = 363;
2021
2022 // QS -> Edit - Drag a tile within the active tiles.
2023 // The _SPEC contains either the spec of the tile or
2024 // the package of the 3rd party app in the PKG field.
2025 ACTION_QS_EDIT_MOVE_SPEC = 364;
2026 ACTION_QS_EDIT_MOVE = 365;
2027
2028 // Long-press on a QS tile. Tile spec in package field.
2029 ACTION_QS_LONG_PRESS = 366;
2030
Anna Galuszadad131f2016-03-22 13:49:02 -07002031 // OPEN: SUW Welcome Screen -> Vision Settings
2032 // CATEGORY: SETTINGS
2033 // OS: N
2034 SUW_ACCESSIBILITY = 367;
2035
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002036 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2037 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2038 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002039 // ACTION: New magnification gesture configuration is chosen
2040 // SUBTYPE: 0 is off, 1 is on
2041 // CATEGORY: SETTINGS
2042 // OS: N
2043 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2044
2045 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2046 // ACTION: New font size is chosen
2047 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2048 // CATEGORY: SETTINGS
2049 // OS: N
2050 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2051
2052 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2053 // ACTION: New display size is chosen
2054 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2055 // CATEGORY: SETTINGS
2056 // OS: N
2057 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2058
2059 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2060 // ACTION: New screen reader configuration is chosen
2061 // SUBTYPE: 0 is off, 1 is on
2062 // CATEGORY: SETTINGS
2063 // OS: N
2064 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2065
Jason Monkc3620392016-03-30 15:46:03 -04002066 // ------- Begin N Settings conditionals -----
2067 // Conditionals are the green bars at the top of the settings dashboard
2068 // All conditionals will have visible/hide events onResume/onPause
2069 // but they will also be used as extra ints in the
2070 // dismiss/expand/collapse/click/button events
2071
2072 // swipe away conditional
2073 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2074
2075 // click on collapsed conditional or clicks expand button
2076 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2077
2078 // click collapse button on expanded conditional
2079 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2080
2081 // click main area of expanded conditional
2082 ACTION_SETTINGS_CONDITION_CLICK = 375;
2083
2084 // click a direct button on expanded conditional
2085 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2086
2087 // Airplane mode on
2088 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2089 // AKA Data saver on
2090 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2091 // Battery saver on
2092 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2093 // Cellular data off
2094 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2095 // Do not disturb on
2096 SETTINGS_CONDITION_DND = 381;
2097 // Hotspot on
2098 SETTINGS_CONDITION_HOTSPOT = 382;
2099 // Work profile off
2100 SETTINGS_CONDITION_WORK_MODE = 383;
2101
Jason Monk1b5d87b2016-03-30 16:03:15 -04002102 // ------- Begin N Settings suggestions -----
2103 // Since suggestions come from system apps, suggestions will
2104 // have generic constants and the package providing the suggestion
2105 // will be put in the package field. For suggestions in the Settings
2106 // package, the class name will be filled in instead (since settings
2107 // provides several suggetions).
2108
2109 // Settings shown/hidden on main settings dashboard.
2110 // These are actually visibility events, but visible/hidden doesn't
2111 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002112 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2113 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002114
2115 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002116 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002117
2118 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002119 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002120
Jason Monk397df682016-03-28 15:48:34 -04002121 // Settings > Apps > Gear > Special Access > Premium SMS access
2122 PREMIUM_SMS_ACCESS = 388;
2123
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002124 // Logged when the user resizes the docked stack. Arguments:
2125 // 0: Split 50:50
2126 // 1: Docked smaller
2127 // 2: Docked larger
2128 ACTION_WINDOW_DOCK_RESIZE = 389;
2129
2130 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2131 // 0: Docked gets maximized
2132 // 1: Fullscreen gets maximized
2133 ACTION_WINDOW_UNDOCK_MAX = 390;
2134
2135 // User tried to dock an unresizable app.
2136 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2137
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002138 // System UI Tuner > Other > Power notification controls
2139 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2140
2141 // System UI Tuner > Other > Power notification controls > Toggle on/off
2142 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2143
Chris Wren38f98812016-07-13 14:28:40 -04002144 // Action: user enable / disabled data saver using Settings
2145 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2146 // VALUE: 1 for enabled, 0 for disabled
2147 // CATEGORY: SETTINGS
2148 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002149 ACTION_DATA_SAVER_MODE = 394;
2150
Chris Wren38f98812016-07-13 14:28:40 -04002151 // User whitelisted an app for Data Saver mode; action pass package name of app
2152 // Action: user enable / disabled data saver using Settings
2153 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2154 // or
2155 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2156 // VALUE: package name of APP
2157 // CATEGORY: SETTINGS
2158 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002159 ACTION_DATA_SAVER_WHITELIST = 395;
2160
Chris Wren38f98812016-07-13 14:28:40 -04002161 // User blacklisted an app for Data Saver mode; action pass package name of app
2162 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2163 // VALUE: package name of APP
2164 // CATEGORY: SETTINGS
2165 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002166 ACTION_DATA_SAVER_BLACKLIST = 396;
2167
Adrian Roosceeb04c2016-04-25 14:00:54 -07002168 // User opened a remote input view associated with a notification. Passes package name of app
2169 // that posted the notification. Note that this can also happen transiently during notification
2170 // reinflation.
2171 ACTION_REMOTE_INPUT_OPEN = 397;
2172
2173 // User attempt to send data through a remote input view associated with a notification.
2174 // Passes package name of app that posted the notification. May succeed or fail.
2175 ACTION_REMOTE_INPUT_SEND = 398;
2176
2177 // Failed attempt to send data through a remote input view associated with a
2178 // notification. Passes package name of app that posted the notification.
2179 ACTION_REMOTE_INPUT_FAIL = 399;
2180
2181 // User closed a remote input view associated with a notification. Passes package name of app
2182 // that posted the notification. Note that this can also happen transiently during notification
2183 // reinflation.
2184 ACTION_REMOTE_INPUT_CLOSE = 400;
2185
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002186 // OPEN: Settings > Accounts > Work profile settings
2187 // CATEGORY: SETTINGS
2188 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2189
Jason Monk25118d12016-05-10 13:25:50 -04002190 // Settings -> Dev options -> Convert to file encryption
2191 CONVERT_FBE = 402;
2192
2193 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2194 CONVERT_FBE_CONFIRM = 403;
2195
2196 // Settings -> Dev options -> Running services
2197 RUNNING_SERVICES = 404;
2198
Jason Monka1f697f2016-05-06 15:09:44 -04002199 // The dialog shown by 3P intent to change current webview implementation.
2200 WEBVIEW_IMPLEMENTATION = 405;
2201
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002202 // Settings launched from expanded quick settings.
2203 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2204
Chris Wren698b1702016-05-23 11:16:32 -04002205 // Notification expansion state toggled by the expand affordance.
2206 ACTION_NOTIFICATION_EXPANDER = 407;
2207
2208 // Notification group expansion state toggled by the expand affordance.
2209 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2210
Chris Wren7ee84182016-05-27 13:34:02 -04002211
Chris Wren6abeeb92016-05-26 14:44:38 -04002212 // Notification expansion state toggled by the expand gesture.
2213 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2214
2215 // Notification group expansion state toggled by the expand gesture.
2216 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2217
Bhavik Singh3451da42016-06-01 18:25:59 -07002218 // User performs gesture that activates the ambient display
2219 // 1: Gesture performed is Nudge
2220 // 2: Gesture performed is Pickup
2221 // 4: Gesture performed is Double Tap
2222 ACTION_AMBIENT_GESTURE = 411;
2223
Jason Monk9fa5f822016-05-11 10:26:31 -04002224 // ---- End N Constants, all N constants go above this line ----
2225
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002226 // ------- Begin N App Disambig Shade -----
2227 // Application disambig shade opened or closed with a featured app.
2228 // These are actually visibility events, but visible/hidden doesn't
2229 // take a package, so these are being logged as actions.
2230 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002231 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2232 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002233
2234 // Application disambig shade opened or closed without a featured app.
2235 // These are actually visibility events, but visible/hidden doesn't
2236 // take a package, so these are being logged as actions.
2237 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002238 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2239 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002240
2241 // User opens in an app by pressing “Always” in the application disambig shade.
2242 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002243 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002244
2245 // User opens in an app by pressing “Just Once” in the application disambig shade.
2246 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002247 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002248
2249 // User opens in an app by tapping on its name in the application disambig shade.
2250 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002251 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002252
Daniel Nishi010aa492016-05-11 09:42:24 -07002253 // OPEN: Settings > Internal storage > Storage manager
2254 // CATEGORY: SETTINGS
2255 STORAGE_MANAGER_SETTINGS = 458;
2256
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002257 // OPEN: Settings -> Gestures
2258 // CATEGORY: SETTINGS
2259 SETTINGS_GESTURES = 459;
2260
Daniel Nishi597e67f2016-05-18 13:56:13 -07002261 // ------ Begin Deletion Helper ------
2262 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2263 // SUBTYPE: false is off, true is on
2264 // CATEGORY: SETTINGS
2265 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002266
Daniel Nishi597e67f2016-05-18 13:56:13 -07002267 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2268 // SUBTYPE: false is off, true is on
2269 // CATEGORY: SETTINGS
2270 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2271
2272 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2273 // CATEGORY: SETTINGS
2274 // PACKAGE: Unchecked app
2275 ACTION_DELETION_SELECTION_APP_ON = 462;
2276
2277 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2278 // CATEGORY: SETTINGS
2279 // PACKAGE: Checked app
2280 ACTION_DELETION_SELECTION_APP_OFF = 463;
2281
2282 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2283 // SUBTYPE: false is expanded, true is collapsed
2284 // CATEGORY: SETTINGS
2285 ACTION_DELETION_APPS_COLLAPSED = 464;
2286
2287 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2288 // SUBTYPE: false is off, true is on
2289 // CATEGORY: SETTINGS
2290 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2291
2292 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2293 // SUBTYPE: false is expanded, true is collapsed
2294 // CATEGORY: SETTINGS
2295 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2296
2297 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2298 // CATEGORY: SETTINGS
2299 ACTION_DELETION_HELPER_CLEAR = 467;
2300
2301 // ACTION: Settings > Storage > Free Up Space > Cancel
2302 // CATEGORY: SETTINGS
2303 ACTION_DELETION_HELPER_CANCEL = 468;
2304
2305 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2306 // CATEGORY: SETTINGS
2307 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2308
2309 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2310 // CATEGORY: SETTINGS
2311 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2312
2313 // Deletion helper encountered an error during package deletion.
2314 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2315
2316 // Deletion helper encountered an error during downloads folder deletion.
2317 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2318
2319 // Deletion helper encountered an error during photo and video deletion.
2320 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2321
Fan Zhang5e956e82016-05-06 10:51:47 -07002322 // OPEN: Settings (root page if there are multiple tabs)
2323 // CATEGORY: SETTINGS
2324 DASHBOARD_CONTAINER = 474;
2325
2326 // OPEN: Settings -> SUPPORT TAB
2327 // CATEGORY: SETTINGS
2328 SUPPORT_FRAGMENT = 475;
2329
2330 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002331 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002332 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002333
2334 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002335 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002336 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2337
Fan Zhanga1985502016-06-16 16:48:38 -07002338 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002339 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002340 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2341
2342 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002343 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002344 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2345
2346 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002347 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002348 ACTION_SUPPORT_SIGN_IN = 480;
2349
2350 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002351 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002352 ACTION_SUPPORT_PHONE = 481;
2353
2354 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002355 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002356 ACTION_SUPPORT_CHAT = 482;
2357
2358 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002359 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002360 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2361
2362 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002363 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002364 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2365
Fan Zhang80807212016-06-30 12:26:55 -07002366 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002367 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002368 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2369
2370 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002371 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002372 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2373
2374 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002375 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002376 ACTION_SUPPORT_DIAL_TOLLED = 487;
2377
Justin Klaassen19494272016-07-18 21:38:24 -07002378 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002379 // CATEGORY: SETTINGS
2380 NIGHT_DISPLAY_SETTINGS = 488;
2381
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002382 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002383 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002384 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2385
Jason Monk484fd362016-07-13 15:24:32 -04002386 // Settings launched from collapsed quick settings.
2387 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2388
Justin Klaassen19494272016-07-18 21:38:24 -07002389 // OPEN: QS Night Light tile shown
2390 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002391 // SUBTYPE: 0 is off, 1 is on
2392 // CATEGORY: QUICK_SETTINGS
2393 QS_NIGHT_DISPLAY = 491;
2394
Justin Klaassen19494272016-07-18 21:38:24 -07002395 // Night Light on
2396 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2397
Doris Ling3c00afb2016-07-19 17:04:21 -07002398 // System navigation key up.
2399 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2400
2401 // System navigation key down.
2402 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2403
Doris Ling6dd3e462016-08-04 13:17:27 -07002404 // OPEN: Settings > Display -> Ambient Display
2405 // CATEGORY: SETTINGS
2406 ACTION_AMBIENT_DISPLAY = 495;
2407
Adrian Roos159ef7b2016-02-25 11:58:32 -08002408 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2409
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002410 // ACTION: The lockscreen gets shown because the SIM card was removed
2411 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2412 // CATEGORY: GLOBAL_SYSTEM_UI
2413 // OS: N-MR2
2414 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2415
2416 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2417
Clara Bayarric17a5982016-04-15 12:26:47 +01002418 // ------- Begin N Keyboard Shortcuts Helper -----
2419 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002420 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002421
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002422 // OPEN: Print Preview screen
2423 // Package: Package of app where print job is from
2424 PRINT_PREVIEW = 501;
2425
2426 // OPEN: User expands full print job options shade in print preview.
2427 PRINT_JOB_OPTIONS = 502;
2428
2429 // OPEN: “All Printers” screen for selecting printer
2430 // Subtype: # of printers listed
2431 PRINT_ALL_PRINTERS = 503;
2432
2433 // OPEN: “Add Printers” screen for adding printers
2434 // Subtype: # of enabled print service listed
2435 PRINT_ADD_PRINTERS = 504;
2436
2437 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2438 // Package: Package of print service.
2439 ACTION_PRINT = 505;
2440
2441 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2442 // Count all ACTION_PRINTER_SELECT_ALL actions.
2443 // Package: Package of print service tied to printer
2444 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2445
2446 // ACTION: User selects a printer from the “All printers” screen.
2447 // Package: Package of print service tied to printer
2448 ACTION_PRINTER_SELECT_ALL = 507;
2449
2450 // ACTION: User changes an option for the print job from print preview.
2451 // Subtype: 1: Copies
2452 // 2: Color mode
2453 // 3: Duplex mode
2454 // 4: Media (==Paper) size
2455 // 5: Orientation
2456 // 6: Page range
2457 // Package: Package of print service tied to printer
2458 ACTION_PRINT_JOB_OPTIONS = 508;
2459
2460 // ACTION: User searches for printer from All Printers
2461 ACTION_PRINTER_SEARCH = 509;
2462
2463 // ACTION: User selects “Add print service” button from All Printers
2464 ACTION_PRINT_SERVICE_ADD = 510;
2465
2466 // ACTION: User Enables/Disables Print Service via any means.
2467 // Subtype: 0: Enabled
2468 // 1: Disabled
2469 ACTION_PRINT_SERVICE_TOGGLE = 511;
2470
2471 // ACTION: User installs print recommended print service
2472 // Package: Package of print service
2473 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2474
Doris Ling88a6b162016-08-08 16:17:43 -07002475 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2476 // SUBTYPE: sub settings classname
2477 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2478
Fan Zhang92c60382016-08-08 14:03:53 -07002479 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2480 USER_DICTIONARY_SETTINGS = 514;
2481
2482 // OPEN: Settings > Date & time > Select time zone
2483 ZONE_PICKER = 515;
2484
2485 // OPEN: Settings > Security > Device administrators
2486 DEVICE_ADMIN_SETTINGS = 516;
2487
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002488 // ACTION: Managed provisioning was launched to set this package as DPC app.
2489 // PACKAGE: DPC's package name.
2490 PROVISIONING_DPC_PACKAGE_NAME = 517;
2491
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002492 // ACTION: Managed provisioning triggered DPC installation.
2493 // PACKAGE: Package name of package which installed DPC.
2494 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2495
2496 // ACTION: Logged when provisioning activity finishes.
2497 // TIME: Indicates time taken by provisioning activity to finish in MS.
2498 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2499
2500 // ACTION: Logged when preprovisioning activity finishes.
2501 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2502 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2503
2504 // ACTION: Logged when encrypt device activity finishes.
2505 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2506 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2507
2508 // ACTION: Logged when web activity finishes.
2509 // TIME: Indicates total time taken by web activity to finish in MS.
2510 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2511
2512 // ACTION: Logged when trampoline activity finishes.
2513 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2514 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2515
2516 // ACTION: Logged when encryption activity finishes.
2517 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2518 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2519
2520 // ACTION: Logged when finalization activity finishes.
2521 // TIME: Indicates time taken by finalization activity to finish in MS.
2522 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002523
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002524 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002525 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002526
Fan Zhang95094182016-08-24 18:14:16 -07002527 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002528 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002529
2530 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002531 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002532
2533 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002534 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002535
2536 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002537 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002538
2539 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002540 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002541
Fan Zhangc1352ae2016-09-16 12:46:11 -07002542 // OPEN: Settings > Security > Use one lock dialog
2543 DIALOG_UNIFICATION_CONFIRMATION = 532;
2544
2545 // OPEN: Settings > Security > User Credential
2546 DIALOG_USER_CREDENTIAL = 533;
2547
2548 // OPEN: Settings > Accounts > Remove account
2549 DIALOG_REMOVE_USER = 534;
2550
2551 // OPEN: Settings > Accounts > Confirm auto sync dialog
2552 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2553
2554 // OPEN: Settings > Apps > Dialog for running service details
2555 DIALOG_RUNNIGN_SERVICE = 536;
2556
2557 // OPEN: Settings > Dialog for hiding home settings
2558 DIALOG_NO_HOME = 537;
2559
2560 // OPEN: Settings > Bluetooth > Rename this device
2561 DIALOG_BLUETOOTH_RENAME = 538;
2562
2563 // OPEN: Settings > Bluetooth > Paired device profile
2564 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2565
2566 // OPEN: Settings > Battery optimization > details for app
2567 DIALOG_HIGH_POWER_DETAILS = 540;
2568
2569 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2570 DIALOG_KEYBOARD_LAYOUT = 541;
2571
2572 // OPEN: Settings > Wifi > WPS Setup dialog
2573 DIALOG_WPS_SETUP = 542;
2574
2575 // OPEN: Settings > WIFI Scan permission dialog
2576 DIALOG_WIFI_SCAN_MODE = 543;
2577
2578 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2579 DIALOG_WIFI_SKIP = 544;
2580
2581 // OPEN: Settings > Wireless > VPN > Config dialog
2582 DIALOG_LEGACY_VPN_CONFIG = 545;
2583
2584 // OPEN: Settings > Wireless > VPN > Config dialog for app
2585 DIALOG_VPN_APP_CONFIG = 546;
2586
2587 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2588 DIALOG_VPN_CANNOT_CONNECT = 547;
2589
2590 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2591 DIALOG_VPN_REPLACE_EXISTING = 548;
2592
2593 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2594 DIALOG_BILLING_CYCLE = 549;
2595
2596 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2597 DIALOG_BILLING_BYTE_LIMIT = 550;
2598
2599 // OPEN: Settings > Billing cycle > turn on data limit dialog
2600 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2601
2602 // OPEN: Settings > Service > Turn off notification access dialog
2603 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2604
2605 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2606 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2607
2608 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2609 DIALOG_ZEN_ACCESS_GRANT = 554;
2610
2611 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2612 DIALOG_ZEN_ACCESS_REVOKE = 555;
2613
2614 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2615 DIALOG_ZEN_TIMEPICKER = 556;
2616
2617 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2618 DIALOG_SERVICE_ACCESS_WARNING = 557;
2619
2620 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2621 DIALOG_APP_INFO_ACTION = 558;
2622
2623 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2624 DIALOG_VOLUME_FORGET = 559;
2625
2626 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2627 DIALOG_VOLUME_SLOW_WARNING = 560;
2628
2629 // OPEN: Settings > Storage > Dialog for initializing a volume
2630 DIALOG_VOLUME_INIT = 561;
2631
2632 // OPEN: Settings > Storage > Dialog for unmounting a volume
2633 DIALOG_VOLUME_UNMOUNT = 562;
2634
2635 // OPEN: Settings > Storage > Dialog for renaming a volume
2636 DIALOG_VOLUME_RENAME = 563;
2637
2638 // OPEN: Settings > Storage > Dialog for clear cache
2639 DIALOG_STORAGE_CLEAR_CACHE = 564;
2640
2641 // OPEN: Settings > Storage > Dialog for system info
2642 DIALOG_STORAGE_SYSTEM_INFO = 565;
2643
2644 // OPEN: Settings > Storage > Dialog for other info
2645 DIALOG_STORAGE_OTHER_INFO = 566;
2646
2647 // OPEN: Settings > Storage > Dialog for user info
2648 DIALOG_STORAGE_USER_INFO = 567;
2649
2650 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2651 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2652
2653 // OPEN: Settings > Add fingerprint > Error dialog
2654 DIALOG_FINGERPINT_ERROR = 569;
2655
2656 // OPEN: Settings > Fingerprint > Rename or delete dialog
2657 DIALOG_FINGERPINT_EDIT = 570;
2658
2659 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2660 DIALOG_FINGERPINT_DELETE_LAST = 571;
2661
2662 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2663 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2664
2665 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2666 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2667
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002668 // OPEN: Settings > Proxy Selector error dialog
2669 DIALOG_PROXY_SELECTOR_ERROR = 574;
2670
2671 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2672 DIALOG_WIFI_P2P_DISCONNECT = 575;
2673
2674 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2675 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2676
2677 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2678 DIALOG_WIFI_P2P_RENAME = 577;
2679
2680 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2681 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2682
2683 // OPEN: Settings > APN > Restore default dialog
2684 DIALOG_APN_RESTORE_DEFAULT = 579;
2685
2686 // OPEN: Settings > Dream > When to dream dialog
2687 DIALOG_DREAM_START_DELAY = 580;
2688
2689 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2690 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2691
2692 // OPEN: Settings > Tether > AP setting dialog
2693 DIALOG_AP_SETTINGS = 582;
2694
2695 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2696 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2697
2698 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2699 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2700
2701 // OPEN: Settings > Account > Remove account dialog
2702 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2703
2704 // OPEN: Settings > Account > Remove account failed dialog
2705 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2706
2707 // OPEN: Settings > Account > Cannot do onetime sync dialog
2708 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2709
2710 // OPEN: Settings > Display > Night light > Set start time dialog
2711 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2712
2713 // OPEN: Settings > Display > Night light > Set end time dialog
2714 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2715
2716 // OPEN: Settings > User > Edit info dialog
2717 DIALOG_USER_EDIT = 590;
2718
2719 // OPEN: Settings > User > Confirm remove dialog
2720 DIALOG_USER_REMOVE = 591;
2721
2722 // OPEN: Settings > User > Enable calling dialog
2723 DIALOG_USER_ENABLE_CALLING = 592;
2724
2725 // OPEN: Settings > User > Enable calling and sms dialog
2726 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2727
2728 // OPEN: Settings > User > Cannot manage device message dialog
2729 DIALOG_USER_CANNOT_MANAGE = 594;
2730
2731 // OPEN: Settings > User > Add user dialog
2732 DIALOG_USER_ADD = 595;
2733
2734 // OPEN: Settings > User > Setup user dialog
2735 DIALOG_USER_SETUP = 596;
2736
2737 // OPEN: Settings > User > Setup profile dialog
2738 DIALOG_USER_SETUP_PROFILE = 597;
2739
2740 // OPEN: Settings > User > Choose user type dialog
2741 DIALOG_USER_CHOOSE_TYPE = 598;
2742
2743 // OPEN: Settings > User > Need lockscreen dialog
2744 DIALOG_USER_NEED_LOCKSCREEN = 599;
2745
2746 // OPEN: Settings > User > Confirm exit guest mode dialog
2747 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2748
2749 // OPEN: Settings > User > Edit user profile dialog
2750 DIALOG_USER_EDIT_PROFILE = 601;
2751
2752 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2753 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2754
2755 // OPEN: Settings > Wifi > Edit AP dialog
2756 DIALOG_WIFI_AP_EDIT = 603;
2757
2758 // OPEN: Settings > Wifi > PBC Config dialog
2759 DIALOG_WIFI_PBC = 604;
2760
2761 // OPEN: Settings > Wifi > Display pin dialog
2762 DIALOG_WIFI_PIN = 605;
2763
2764 // OPEN: Settings > Wifi > Write config to NFC dialog
2765 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002766 // OPEN: Settings > Date > Date picker dialog
2767 DIALOG_DATE_PICKER = 607;
2768
2769 // OPEN: Settings > Date > Time picker dialog
2770 DIALOG_TIME_PICKER = 608;
2771
2772 // OPEN: Settings > Wireless > Manage wireless plan dialog
2773 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002774
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002775 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002776 PROVISIONING_NETWORK_TYPE = 610;
2777
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002778 // ACTION: Logs action which triggered provisioning.
2779 PROVISIONING_ACTION = 611;
2780
Mahaver Chopraab282072016-10-06 19:19:23 +01002781 // ACTION: Logs extra passed by the dpc while provisioning.
2782 PROVISIONING_EXTRA = 612;
2783
Salvador Martinez64867c12016-10-14 15:25:09 -07002784 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2785 BLUETOOTH_DIALOG_FRAGMENT = 613;
2786
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002787 // ACTION: Logs provisioning started by zero touch.
2788 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2789
2790 // ACTION: Logs provisioning started by NFC bump.
2791 PROVISIONING_ENTRY_POINT_NFC = 615;
2792
2793 // ACTION: Logs provisioning started using QR code.
2794 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2795
2796 // ACTION: Logs provisioning started using adb.
2797 PROVISIONING_ENTRY_POINT_ADB = 617;
2798
2799 // ACTION: Logs provisioning started by trusted source.
2800 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2801
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002802 // ACTION: Logged when copy account task finishes.
2803 // TIME: Indicates time taken by copy account task to finish in MS.
2804 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2805
2806 // ACTION: Logged when create profile task finishes.
2807 // TIME: Indicates time taken by create profile task to finish in MS.
2808 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2809
2810 // ACTION: Logged when start profile task finishes.
2811 // TIME: Indicates time taken by start profile task to finish in MS.
2812 PROVISIONING_START_PROFILE_TASK_MS = 621;
2813
2814 // ACTION: Logged when download package task finishes.
2815 // TIME: Indicates time taken by download package task to finish in MS.
2816 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2817
2818 // ACTION: Logged when install package task finishes.
2819 // TIME: Indicates time taken by install package task to finish in MS.
2820 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2821
2822 // ACTION: User cancelled provisioning.
2823 PROVISIONING_CANCELLED = 624;
2824
2825 // ACTION: Logged when provisioning throws an error.
2826 PROVISIONING_ERROR = 625;
2827
2828 // ACTION: Logs the status of copying user account during provisioning.
2829 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2830
2831 // ACTION: Logs the end to end time taken by all provisioning tasks.
2832 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2833
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002834 // OPEN: Settings > Privacy
2835 // CATEGORY: SETTINGS
2836 // OS: O
2837 ENTERPRISE_PRIVACY_SETTINGS = 628;
2838
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002839 // ACTION: Longpress on a TextView.
2840 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2841 // CATEGORY: TEXT_CONTROLS
2842 // OS: O
2843 TEXT_LONGPRESS = 629;
2844
Chris Wren3824c392017-11-27 12:54:14 -05002845 // ACTION: An app requested an unknown permission
2846 // PACKAGE: The package name of the app requesting the permission
2847 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002848 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2849
Chris Wren3824c392017-11-27 12:54:14 -05002850 // ACTION: An app was granted an unknown permission
2851 // PACKAGE: The package name of the app that was granted the permission
2852 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002853 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2854
Chris Wren3824c392017-11-27 12:54:14 -05002855 // ACTION: An app requested an unknown permission and the request was denied
2856 // PACKAGE: The package name of the app requesting the permission
2857 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002858 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2859
Chris Wren3824c392017-11-27 12:54:14 -05002860 // ACTION: An unknown permission was revoked for an app
2861 // PACKAGE: The package name of the app the permission was revoked for
2862 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002863 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2864
Chris Wren3824c392017-11-27 12:54:14 -05002865 // ACTION: An app requested the permission READ_CALENDAR
2866 // PACKAGE: The package name of the app requesting the permission
2867 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002868 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2869
Chris Wren3824c392017-11-27 12:54:14 -05002870 // ACTION: An app was granted the permission READ_CALENDAR
2871 // PACKAGE: The package name of the app that was granted the permission
2872 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002873 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2874
Chris Wren3824c392017-11-27 12:54:14 -05002875 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2876 // PACKAGE: The package name of the app requesting the permission
2877 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002878 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2879
Chris Wren3824c392017-11-27 12:54:14 -05002880 // ACTION: The permission READ_CALENDAR was revoked for an app
2881 // PACKAGE: The package name of the app the permission was revoked for
2882 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002883 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2884
Chris Wren3824c392017-11-27 12:54:14 -05002885 // ACTION: An app requested the permission WRITE_CALENDAR
2886 // PACKAGE: The package name of the app requesting the permission
2887 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002888 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2889
Chris Wren3824c392017-11-27 12:54:14 -05002890 // ACTION: An app was granted the permission WRITE_CALENDAR
2891 // PACKAGE: The package name of the app that was granted the permission
2892 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002893 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2894
Chris Wren3824c392017-11-27 12:54:14 -05002895 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2896 // PACKAGE: The package name of the app requesting the permission
2897 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002898 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2899
Chris Wren3824c392017-11-27 12:54:14 -05002900 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2901 // PACKAGE: The package name of the app the permission was revoked for
2902 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002903 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2904
Chris Wren3824c392017-11-27 12:54:14 -05002905 // ACTION: An app requested the permission CAMERA
2906 // PACKAGE: The package name of the app requesting the permission
2907 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002908 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2909
Chris Wren3824c392017-11-27 12:54:14 -05002910 // ACTION: An app was granted the permission CAMERA
2911 // PACKAGE: The package name of the app that was granted the permission
2912 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002913 ACTION_PERMISSION_GRANT_CAMERA = 643;
2914
Chris Wren3824c392017-11-27 12:54:14 -05002915 // ACTION: An app requested the permission CAMERA and the request was denied
2916 // PACKAGE: The package name of the app requesting the permission
2917 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002918 ACTION_PERMISSION_DENIED_CAMERA = 644;
2919
Chris Wren3824c392017-11-27 12:54:14 -05002920 // ACTION: The permission CAMERA was revoked for an app
2921 // PACKAGE: The package name of the app the permission was revoked for
2922 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002923 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2924
Chris Wren3824c392017-11-27 12:54:14 -05002925 // ACTION: An app requested the permission READ_CONTACTS
2926 // PACKAGE: The package name of the app requesting the permission
2927 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002928 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2929
Chris Wren3824c392017-11-27 12:54:14 -05002930 // ACTION: An app was granted the permission READ_CONTACTS
2931 // PACKAGE: The package name of the app that was granted the permission
2932 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002933 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2934
Chris Wren3824c392017-11-27 12:54:14 -05002935 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2936 // PACKAGE: The package name of the app requesting the permission
2937 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002938 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2939
Chris Wren3824c392017-11-27 12:54:14 -05002940 // ACTION: The permission READ_CONTACTS was revoked for an app
2941 // PACKAGE: The package name of the app the permission was revoked for
2942 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002943 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2944
Chris Wren3824c392017-11-27 12:54:14 -05002945 // ACTION: An app requested the permission WRITE_CONTACTS
2946 // PACKAGE: The package name of the app requesting the permission
2947 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002948 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2949
Chris Wren3824c392017-11-27 12:54:14 -05002950 // ACTION: An app was granted the permission WRITE_CONTACTS
2951 // PACKAGE: The package name of the app that was granted the permission
2952 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002953 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2954
Chris Wren3824c392017-11-27 12:54:14 -05002955 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2956 // PACKAGE: The package name of the app requesting the permission
2957 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002958 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2959
Chris Wren3824c392017-11-27 12:54:14 -05002960 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2961 // PACKAGE: The package name of the app the permission was revoked for
2962 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002963 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2964
Chris Wren3824c392017-11-27 12:54:14 -05002965 // ACTION: An app requested the permission GET_ACCOUNTS
2966 // PACKAGE: The package name of the app requesting the permission
2967 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002968 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2969
Chris Wren3824c392017-11-27 12:54:14 -05002970 // ACTION: An app was granted the permission GET_ACCOUNTS
2971 // PACKAGE: The package name of the app that was granted the permission
2972 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002973 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2974
Chris Wren3824c392017-11-27 12:54:14 -05002975 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2976 // PACKAGE: The package name of the app requesting the permission
2977 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002978 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2979
Chris Wren3824c392017-11-27 12:54:14 -05002980 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2981 // PACKAGE: The package name of the app the permission was revoked for
2982 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002983 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2984
Chris Wren3824c392017-11-27 12:54:14 -05002985 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2986 // PACKAGE: The package name of the app requesting the permission
2987 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002988 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2989
Chris Wren3824c392017-11-27 12:54:14 -05002990 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2991 // PACKAGE: The package name of the app that was granted the permission
2992 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002993 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2994
Chris Wren3824c392017-11-27 12:54:14 -05002995 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2996 // PACKAGE: The package name of the app requesting the permission
2997 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002998 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2999
Chris Wren3824c392017-11-27 12:54:14 -05003000 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3001 // PACKAGE: The package name of the app the permission was revoked for
3002 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003003 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3004
Chris Wren3824c392017-11-27 12:54:14 -05003005 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3006 // PACKAGE: The package name of the app requesting the permission
3007 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003008 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3009
Chris Wren3824c392017-11-27 12:54:14 -05003010 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3011 // PACKAGE: The package name of the app that was granted the permission
3012 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003013 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3014
Chris Wren3824c392017-11-27 12:54:14 -05003015 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3016 // PACKAGE: The package name of the app requesting the permission
3017 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003018 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3019
Chris Wren3824c392017-11-27 12:54:14 -05003020 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3021 // PACKAGE: The package name of the app the permission was revoked for
3022 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003023 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3024
Chris Wren3824c392017-11-27 12:54:14 -05003025 // ACTION: An app requested the permission RECORD_AUDIO
3026 // PACKAGE: The package name of the app requesting the permission
3027 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003028 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3029
Chris Wren3824c392017-11-27 12:54:14 -05003030 // ACTION: An app was granted the permission RECORD_AUDIO
3031 // PACKAGE: The package name of the app that was granted the permission
3032 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003033 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3034
Chris Wren3824c392017-11-27 12:54:14 -05003035 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3036 // PACKAGE: The package name of the app requesting the permission
3037 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003038 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3039
Chris Wren3824c392017-11-27 12:54:14 -05003040 // ACTION: The permission RECORD_AUDIO was revoked for an app
3041 // PACKAGE: The package name of the app the permission was revoked for
3042 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003043 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3044
Chris Wren3824c392017-11-27 12:54:14 -05003045 // ACTION: An app requested the permission READ_PHONE_STATE
3046 // PACKAGE: The package name of the app requesting the permission
3047 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003048 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3049
Chris Wren3824c392017-11-27 12:54:14 -05003050 // ACTION: An app was granted the permission READ_PHONE_STATE
3051 // PACKAGE: The package name of the app that was granted the permission
3052 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003053 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3054
Chris Wren3824c392017-11-27 12:54:14 -05003055 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3056 // PACKAGE: The package name of the app requesting the permission
3057 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003058 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3059
Chris Wren3824c392017-11-27 12:54:14 -05003060 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3061 // PACKAGE: The package name of the app the permission was revoked for
3062 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003063 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3064
Chris Wren3824c392017-11-27 12:54:14 -05003065 // ACTION: An app requested the permission CALL_PHONE
3066 // PACKAGE: The package name of the app requesting the permission
3067 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003068 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3069
Chris Wren3824c392017-11-27 12:54:14 -05003070 // ACTION: An app was granted the permission CALL_PHONE
3071 // PACKAGE: The package name of the app that was granted the permission
3072 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003073 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3074
Chris Wren3824c392017-11-27 12:54:14 -05003075 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3076 // PACKAGE: The package name of the app requesting the permission
3077 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003078 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3079
Chris Wren3824c392017-11-27 12:54:14 -05003080 // ACTION: The permission CALL_PHONE was revoked for an app
3081 // PACKAGE: The package name of the app the permission was revoked for
3082 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003083 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3084
Chris Wren3824c392017-11-27 12:54:14 -05003085 // ACTION: An app requested the permission READ_CALL_LOG
3086 // PACKAGE: The package name of the app requesting the permission
3087 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003088 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3089
Chris Wren3824c392017-11-27 12:54:14 -05003090 // ACTION: An app was granted the permission READ_CALL_LOG
3091 // PACKAGE: The package name of the app that was granted the permission
3092 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003093 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3094
Chris Wren3824c392017-11-27 12:54:14 -05003095 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3096 // PACKAGE: The package name of the app requesting the permission
3097 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003098 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3099
Chris Wren3824c392017-11-27 12:54:14 -05003100 // ACTION: The permission READ_CALL_LOG was revoked for an app
3101 // PACKAGE: The package name of the app the permission was revoked for
3102 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003103 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3104
Chris Wren3824c392017-11-27 12:54:14 -05003105 // ACTION: An app requested the permission WRITE_CALL_LOG
3106 // PACKAGE: The package name of the app requesting the permission
3107 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003108 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3109
Chris Wren3824c392017-11-27 12:54:14 -05003110 // ACTION: An app was granted the permission WRITE_CALL_LOG
3111 // PACKAGE: The package name of the app that was granted the permission
3112 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003113 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3114
Chris Wren3824c392017-11-27 12:54:14 -05003115 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3116 // PACKAGE: The package name of the app requesting the permission
3117 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003118 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3119
Chris Wren3824c392017-11-27 12:54:14 -05003120 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3121 // PACKAGE: The package name of the app the permission was revoked for
3122 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003123 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3124
Chris Wren3824c392017-11-27 12:54:14 -05003125 // ACTION: An app requested the permission ADD_VOICEMAIL
3126 // PACKAGE: The package name of the app requesting the permission
3127 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003128 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3129
Chris Wren3824c392017-11-27 12:54:14 -05003130 // ACTION: An app was granted the permission ADD_VOICEMAIL
3131 // PACKAGE: The package name of the app that was granted the permission
3132 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003133 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3134
Chris Wren3824c392017-11-27 12:54:14 -05003135 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3136 // PACKAGE: The package name of the app requesting the permission
3137 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003138 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3139
Chris Wren3824c392017-11-27 12:54:14 -05003140 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3141 // PACKAGE: The package name of the app the permission was revoked for
3142 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003143 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3144
Chris Wren3824c392017-11-27 12:54:14 -05003145 // ACTION: An app requested the permission USE_SIP
3146 // PACKAGE: The package name of the app requesting the permission
3147 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003148 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3149
Chris Wren3824c392017-11-27 12:54:14 -05003150 // ACTION: An app was granted the permission USE_SIP
3151 // PACKAGE: The package name of the app that was granted the permission
3152 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003153 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3154
Chris Wren3824c392017-11-27 12:54:14 -05003155 // ACTION: An app requested the permission USE_SIP and the request was denied
3156 // PACKAGE: The package name of the app requesting the permission
3157 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003158 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3159
Chris Wren3824c392017-11-27 12:54:14 -05003160 // ACTION: The permission USE_SIP was revoked for an app
3161 // PACKAGE: The package name of the app the permission was revoked for
3162 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003163 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3164
Chris Wren3824c392017-11-27 12:54:14 -05003165 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3166 // PACKAGE: The package name of the app requesting the permission
3167 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003168 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3169
Chris Wren3824c392017-11-27 12:54:14 -05003170 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3171 // PACKAGE: The package name of the app that was granted the permission
3172 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003173 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3174
Chris Wren3824c392017-11-27 12:54:14 -05003175 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3176 // PACKAGE: The package name of the app requesting the permission
3177 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003178 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3179
Chris Wren3824c392017-11-27 12:54:14 -05003180 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3181 // PACKAGE: The package name of the app the permission was revoked for
3182 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003183 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3184
Chris Wren3824c392017-11-27 12:54:14 -05003185 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3186 // PACKAGE: The package name of the app requesting the permission
3187 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003188 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3189
Chris Wren3824c392017-11-27 12:54:14 -05003190 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3191 // PACKAGE: The package name of the app that was granted the permission
3192 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003193 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3194
Chris Wren3824c392017-11-27 12:54:14 -05003195 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3196 // PACKAGE: The package name of the app requesting the permission
3197 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003198 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3199
Chris Wren3824c392017-11-27 12:54:14 -05003200 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3201 // PACKAGE: The package name of the app the permission was revoked for
3202 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003203 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3204
Chris Wren3824c392017-11-27 12:54:14 -05003205 // ACTION: An app requested the permission BODY_SENSORS
3206 // PACKAGE: The package name of the app requesting the permission
3207 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003208 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3209
Chris Wren3824c392017-11-27 12:54:14 -05003210 // ACTION: An app was granted the permission BODY_SENSORS
3211 // PACKAGE: The package name of the app that was granted the permission
3212 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003213 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3214
Chris Wren3824c392017-11-27 12:54:14 -05003215 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3216 // PACKAGE: The package name of the app requesting the permission
3217 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003218 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3219
Chris Wren3824c392017-11-27 12:54:14 -05003220 // ACTION: The permission BODY_SENSORS was revoked for an app
3221 // PACKAGE: The package name of the app the permission was revoked for
3222 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003223 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3224
Chris Wren3824c392017-11-27 12:54:14 -05003225 // ACTION: An app requested the permission SEND_SMS
3226 // PACKAGE: The package name of the app requesting the permission
3227 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003228 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3229
Chris Wren3824c392017-11-27 12:54:14 -05003230 // ACTION: An app was granted the permission SEND_SMS
3231 // PACKAGE: The package name of the app that was granted the permission
3232 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003233 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3234
Chris Wren3824c392017-11-27 12:54:14 -05003235 // ACTION: An app requested the permission SEND_SMS and the request was denied
3236 // PACKAGE: The package name of the app requesting the permission
3237 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003238 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3239
Chris Wren3824c392017-11-27 12:54:14 -05003240 // ACTION: The permission SEND_SMS was revoked for an app
3241 // PACKAGE: The package name of the app the permission was revoked for
3242 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003243 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3244
Chris Wren3824c392017-11-27 12:54:14 -05003245 // ACTION: An app requested the permission RECEIVE_SMS
3246 // PACKAGE: The package name of the app requesting the permission
3247 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003248 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3249
Chris Wren3824c392017-11-27 12:54:14 -05003250 // ACTION: An app was granted the permission RECEIVE_SMS
3251 // PACKAGE: The package name of the app that was granted the permission
3252 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003253 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3254
Chris Wren3824c392017-11-27 12:54:14 -05003255 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3256 // PACKAGE: The package name of the app requesting the permission
3257 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003258 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3259
Chris Wren3824c392017-11-27 12:54:14 -05003260 // ACTION: The permission RECEIVE_SMS was revoked for an app
3261 // PACKAGE: The package name of the app the permission was revoked for
3262 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003263 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3264
Chris Wren3824c392017-11-27 12:54:14 -05003265 // ACTION: An app requested the permission READ_SMS
3266 // PACKAGE: The package name of the app requesting the permission
3267 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003268 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3269
Chris Wren3824c392017-11-27 12:54:14 -05003270 // ACTION: An app was granted the permission READ_SMS
3271 // PACKAGE: The package name of the app that was granted the permission
3272 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003273 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3274
Chris Wren3824c392017-11-27 12:54:14 -05003275 // ACTION: An app requested the permission READ_SMS and the request was denied
3276 // PACKAGE: The package name of the app requesting the permission
3277 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003278 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3279
Chris Wren3824c392017-11-27 12:54:14 -05003280 // ACTION: The permission READ_SMS was revoked for an app
3281 // PACKAGE: The package name of the app the permission was revoked for
3282 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003283 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3284
Chris Wren3824c392017-11-27 12:54:14 -05003285 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3286 // PACKAGE: The package name of the app requesting the permission
3287 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003288 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3289
Chris Wren3824c392017-11-27 12:54:14 -05003290 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3291 // PACKAGE: The package name of the app that was granted the permission
3292 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003293 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3294
Chris Wren3824c392017-11-27 12:54:14 -05003295 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3296 // PACKAGE: The package name of the app requesting the permission
3297 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003298 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3299
Chris Wren3824c392017-11-27 12:54:14 -05003300 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3301 // PACKAGE: The package name of the app the permission was revoked for
3302 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003303 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3304
Chris Wren3824c392017-11-27 12:54:14 -05003305 // ACTION: An app requested the permission RECEIVE_MMS
3306 // PACKAGE: The package name of the app requesting the permission
3307 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003308 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3309
Chris Wren3824c392017-11-27 12:54:14 -05003310 // ACTION: An app was granted the permission RECEIVE_MMS
3311 // PACKAGE: The package name of the app that was granted the permission
3312 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003313 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3314
Chris Wren3824c392017-11-27 12:54:14 -05003315 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3316 // PACKAGE: The package name of the app requesting the permission
3317 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003318 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3319
Chris Wren3824c392017-11-27 12:54:14 -05003320 // ACTION: The permission RECEIVE_MMS was revoked for an app
3321 // PACKAGE: The package name of the app the permission was revoked for
3322 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003323 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3324
Chris Wren3824c392017-11-27 12:54:14 -05003325 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3326 // PACKAGE: The package name of the app requesting the permission
3327 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003328 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3329
Chris Wren3824c392017-11-27 12:54:14 -05003330 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3331 // PACKAGE: The package name of the app that was granted the permission
3332 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003333 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3334
Chris Wren3824c392017-11-27 12:54:14 -05003335 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3336 // PACKAGE: The package name of the app requesting the permission
3337 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003338 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3339
Chris Wren3824c392017-11-27 12:54:14 -05003340 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3341 // PACKAGE: The package name of the app the permission was revoked for
3342 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003343 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3344
Chris Wren3824c392017-11-27 12:54:14 -05003345 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3346 // PACKAGE: The package name of the app requesting the permission
3347 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003348 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3349
Chris Wren3824c392017-11-27 12:54:14 -05003350 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3351 // PACKAGE: The package name of the app that was granted the permission
3352 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003353 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3354
Chris Wren3824c392017-11-27 12:54:14 -05003355 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3356 // PACKAGE: The package name of the app requesting the permission
3357 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003358 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3359
Chris Wren3824c392017-11-27 12:54:14 -05003360 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3361 // PACKAGE: The package name of the app the permission was revoked for
3362 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003363 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3364
Mahaverfa6566e2016-11-29 21:08:14 +00003365 // ACTION: Logged when a provisioning session has started
3366 PROVISIONING_SESSION_STARTED = 734;
3367
3368 // ACTION: Logged when a provisioning session has completed
3369 PROVISIONING_SESSION_COMPLETED = 735;
3370
Chris Wren3824c392017-11-27 12:54:14 -05003371 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3372 // PACKAGE: The package name of the app requesting the permission
3373 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003374 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003375
Chris Wren3824c392017-11-27 12:54:14 -05003376 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3377 // PACKAGE: The package name of the app that was granted the permission
3378 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003379 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003380
Chris Wren3824c392017-11-27 12:54:14 -05003381 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3382 // PACKAGE: The package name of the app requesting the permission
3383 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003384 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003385
Chris Wren3824c392017-11-27 12:54:14 -05003386 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3387 // PACKAGE: The package name of the app the permission was revoked for
3388 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003389 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003390
Santos Cordon3107d292016-09-20 15:50:35 -07003391 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3392 // SUBTYPE: slider value
3393 // CATEGORY: QUICK_SETTINGS
3394 // OS: 6.0
3395 ACTION_BRIGHTNESS_FOR_VR = 498;
3396
Hugo Benichie1cbf152016-12-08 09:36:52 +09003397 // ACTION: A captive portal was detected during network validation
3398 // CATEGORY: NOTIFICATION
3399 // OS: N-MR2
3400 NOTIFICATION_NETWORK_SIGN_IN = 740;
3401
3402 // ACTION: An unvalidated network without Internet was selected by the user
3403 // CATEGORY: NOTIFICATION
3404 // OS: N-MR2
3405 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3406
3407 // ACTION: A validated network failed revalidation and lost Internet access
3408 // CATEGORY: NOTIFICATION
3409 // OS: N-MR2
3410 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3411
3412 // ACTION: The system default network switched to a different network
3413 // CATEGORY: NOTIFICATION
3414 // OS: N-MR2
3415 NOTIFICATION_NETWORK_SWITCH = 743;
3416
Fan Zhang074c4cb2016-12-21 12:10:33 -08003417 // OPEN: Settings > System
3418 SETTINGS_SYSTEM_CATEGORY = 744;
3419
3420 // OPEN: Settings > Storage
3421 SETTINGS_STORAGE_CATEGORY = 745;
3422
3423 // OPEN: Settings > Network & Internet
3424 SETTINGS_NETWORK_CATEGORY = 746;
3425
3426 // OPEN: Settings > Connected Device
3427 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3428
3429 // OPEN: Settings > App & Notification
3430 SETTINGS_APP_NOTIF_CATEGORY = 748;
3431
3432 // OPEN: Settings > System > Input & Gesture
3433 SETTINGS_INPUT_CATEGORY = 749;
3434
3435 // OPEN: Settings > System > Language & Region
3436 SETTINGS_LANGUAGE_CATEGORY = 750;
3437
3438 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3439 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3440
3441 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3442 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3443
3444 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3445 SETTINGS_GESTURE_PICKUP = 753;
3446
3447 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3448 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3449
3450 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3451 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3452
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003453 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3454 // CATEGORY: Settings
3455 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3456
Alison Cichowlas803054d2016-12-13 14:38:01 -05003457 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003458 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003459 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3460 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3461 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003462
Salvador Martinezc43ab062016-12-21 11:09:11 -08003463 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3464 // user accepted
3465 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003466
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003467 // Enclosing category for group of APP_TRANSITION_FOO events,
3468 // logged when we execute an app transition.
3469 APP_TRANSITION = 761;
3470
Fan Zhang945deea2017-01-11 16:37:49 -08003471 // ACTION: User leaves Settings search UI without entering any query.
3472 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3473
3474 // ACTION: Clicking on any search result in Settings.
3475 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003476
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003477 // ACTION: Allow Battery optimization for an app
3478 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3479
3480 // ACTION: Deny Battery optimization for an app
3481 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3482
3483 // ACTION: Enable Device Admin app
3484 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3485
3486 // ACTION: Disable Device Admin app
3487 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3488
3489 // ACTION: Allow "Do Not Disturb access" for an app
3490 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3491
3492 // ACTION: Deny "Do Not Disturb access" for an app
3493 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3494
3495 // ACTION: Allow "Draw over other apps" for an app
3496 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3497
Christine Franks47175c32017-03-14 10:21:25 -07003498 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003499 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3500
3501 // ACTION: Allow "VR helper services" for an app
3502 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3503
3504 // ACTION: Deny "VR helper services" for an app
3505 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3506
3507 // ACTION: Allow "Modify system settings" for an app
3508 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3509
3510 // ACTION: Deny "Modify system settings" for an app
3511 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3512
3513 // ACTION: Allow "Notification access" for an app
3514 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3515
3516 // ACTION: Deny "Notification access" for an app
3517 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3518
3519 // ACTION: "Premium SMS access" for an app - "ask user" option
3520 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3521
3522 // ACTION: "Premium SMS access" for an app - "never allow" option
3523 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3524
3525 // ACTION: "Premium SMS access" for an app - "always allow" option
3526 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3527
3528 // ACTION: Allow "Unrestricted data access" for an app
3529 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3530
3531 // ACTION: Deny "Unrestricted data access" for an app
3532 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3533
3534 // ACTION: Allow "Usage access" for an app
3535 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3536
3537 // ACTION: Deny "Usage access" for an app
3538 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3539
Fan Zhangad5dacc2017-01-18 14:18:54 -08003540 // OPEN: Settings > Apps > Default Apps > Default browser
3541 DEFAULT_BROWSER_PICKER = 785;
3542
3543 // OPEN: Settings > Apps > Default Apps > Default emergency app
3544 DEFAULT_EMERGENCY_APP_PICKER = 786;
3545
3546 // OPEN: Settings > Apps > Default Apps > Default home
3547 DEFAULT_HOME_PICKER = 787;
3548
3549 // OPEN: Settings > Apps > Default Apps > Default phone
3550 DEFAULT_PHONE_PICKER = 788;
3551
3552 // OPEN: Settings > Apps > Default Apps > Default sms
3553 DEFAULT_SMS_PICKER = 789;
3554
3555 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3556 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3557
3558 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3559 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3560
Jason Long1b51da62017-01-24 11:35:31 -08003561 // OPEN: Settings > Apps > Default Apps > Default autofill app
3562 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003563
Chris Wren26ca65d2016-11-29 10:43:28 -05003564 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003565 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003566 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3567 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3568 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3569 NOTIFICATION_ID = 796;
3570 NOTIFICATION_TAG = 797;
3571 NOTIFICATION_SHADE_INDEX = 798;
3572 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003573
Anas Karbilaf7648f42016-12-11 00:55:02 +01003574 // OPEN: QS NFC tile shown
3575 // ACTION: QS NFC tile tapped
3576 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003577 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003578
Chris Wren26ca65d2016-11-29 10:43:28 -05003579 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003580 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003581 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3582 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3583 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3584 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3585 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3586 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3587
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003588 // ACTION: "Force stop" action on an app
3589 ACTION_APP_FORCE_STOP = 807;
3590
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003591 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3592 // CATEGORY: SETTINGS
3593 // OS: 8.0
3594 MANAGE_EXTERNAL_SOURCES = 808;
3595
Mahaver6cd47162017-01-23 09:59:33 +00003596 // ACTION: Logged when terms activity finishes.
3597 // TIME: Indicates time taken by terms activity to finish in MS.
3598 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3599
3600 // Indicates number of terms displayed on the terms screen.
3601 PROVISIONING_TERMS_COUNT = 810;
3602
3603 // Indicates number of terms read on the terms screen.
3604 PROVISIONING_TERMS_READ = 811;
3605
Winson Chung59fda9e2017-01-20 16:14:51 -08003606 // Logs that the user has edited the picture-in-picture settings.
3607 // CATEGORY: SETTINGS
3608 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3609
Winson Chungf4ac0632017-03-17 12:34:12 -07003610 // ACTION: Allow "Enable picture-in-picture" for an app
3611 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003612
Winson Chungf4ac0632017-03-17 12:34:12 -07003613 // ACTION: Deny "Enable picture-in-picture" for an app
3614 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003615
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003616 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3617 // CATEGORY: SETTINGS
3618 // OS: 8.0
3619 TTS_SLIDERS = 815;
3620
Jason Monk524fb402017-01-25 10:33:31 -05003621 // ACTION: Settings -> Display -> Theme
3622 ACTION_THEME = 816;
3623
chchaob8e253a2017-01-25 12:12:09 -08003624 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3625 // ACTION: Select to Speak configuration is chosen
3626 // SUBTYPE: 0 is off, 1 is on
3627 // CATEGORY: SETTINGS
3628 // OS: N
3629 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3630
Anton Philippov95a553e2017-01-27 00:08:24 +00003631 // OPEN: Settings > System > Backup
3632 // CATEGORY: SETTINGS
3633 // OS: O
3634 BACKUP_SETTINGS = 818;
3635
Winson Chung14fbe142016-12-19 16:18:24 -08003636 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003637 // VALUE: true if it was entered while hiding as a result of moving to
3638 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003639 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3640
3641 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3642 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3643 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3644
3645 // ACTION: The activity currently in picture-in-picture was minimized
3646 // VALUE: True if the PiP was minimized, false otherwise
3647 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3648
3649 // ACTION: Picture-in-picture was dismissed via the dismiss button
3650 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3651 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3652
3653 // ACTION: The visibility of the picture-in-picture meny
3654 // VALUE: Whether or not the menu is visible
3655 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3656
3657 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3658 // logged when the aspect ratio changes
3659 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3660
3661 // The current aspect ratio of the PiP, logged when it changes.
3662 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3663
Chris Wren27a52fa2017-02-01 14:21:43 -05003664 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3665 // CATEGORY: GLOBAL_SYSTEM_UI
3666 // OS: O
3667 FIELD_GESTURE_LENGTH = 826;
3668
3669 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3670 // CATEGORY: GLOBAL_SYSTEM_UI
3671 // OS: O
3672 FIELD_GESTURE_VELOCITY = 827;
3673
Christine Franks27fde392017-02-07 10:21:55 -08003674 // OPEN: Carrier demo mode password dialog
3675 CARRIER_DEMO_MODE_PASSWORD = 828;
3676
Fan Zhang70967f32017-02-13 16:02:24 -08003677 // ACTION: Create a Settings shortcut item.
3678 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3679
3680 // ACTION: A tile in Settings information architecture is clicked
3681 ACTION_SETTINGS_TILE_CLICK = 830;
3682
Julia Reynolds520df6e2017-02-13 09:05:10 -05003683 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3684 // updated
3685 // CATEGORY: NOTIFICATION
3686 // OS: O
3687 NOTIFICATION_SNOOZED = 831;
3688
3689 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3690 // OS: O
3691 NOTIFICATION_SNOOZED_CRITERIA = 832;
3692
Fan Zhang65899432017-02-14 13:36:53 -08003693 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003694 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003695 FIELD_CONTEXT = 833;
3696
Fan Zhangd95dcb42017-02-14 13:48:09 -08003697 // ACTION: Settings advanced button is expanded
3698 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3699
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003700 // ACTION: Logs the number of times the saved network evaluator was used to
3701 // recommend a wifi network
3702 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3703
3704 // ACTION: Logs the number of times the recommended network evaluator was
3705 // used to recommend a wifi network
3706 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3707
3708 // ACTION: Logs the number of times a recommended network was resulted in a
3709 // successful connection
3710 // VALUE: true if the connection was successful, false if the connection failed
3711 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3712
Daniel Nishic581bfc2017-02-08 10:18:19 -08003713 // OPEN: Settings > Storage > Games
3714 // CATEGORY: SETTINGS
3715 // OS: O
3716 APPLICATIONS_STORAGE_GAMES = 838;
3717
3718 // OPEN: Settings > Storage > Audio and Music
3719 // CATEGORY: SETTINGS
3720 // OS: O
3721 APPLICATIONS_STORAGE_MUSIC = 839;
3722
3723 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3724 // CATEGORY: SETTINGS
3725 // OS: O
3726 STORAGE_FREE_UP_SPACE_NOW = 840;
3727
3728 // ACTION: Settings > Storage > Files to open the File Manager
3729 // CATEGORY: SETTINGS
3730 // OS: O
3731 STORAGE_FILES = 841;
3732
Fan Zhangb1d49222017-02-15 17:12:58 -08003733 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003734 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003735
Fan Zhang7f2cace2017-02-17 12:05:48 -08003736 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3737 DEFAULT_ASSIST_PICKER = 843;
3738
3739 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3740 DEFAULT_VOICE_INPUT_PICKER = 844;
3741
Daniel Nishi4058a842017-02-21 17:11:35 -08003742 // OPEN: Settings > Storage > [Profile]
3743 SETTINGS_STORAGE_PROFILE = 845;
3744
Doris Lingedb84c32017-02-23 10:56:01 -08003745 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3746 // CATEGORY: SETTINGS
3747 // OS: O
3748 ENCRYPTION_AND_CREDENTIAL = 846;
3749
Fan Zhangb66e5422017-02-24 14:37:45 -08003750 // ACTION: Settings > About device > Build number
3751 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3752
3753 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3754 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3755
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003756 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3757 // CATEGORY: SETTINGS
3758 // OS: O
3759 WIFI_NETWORK_DETAILS = 849;
3760
jackqdyuleia2a14342017-02-28 16:20:48 -08003761 // ACTION: Settings > Battery > Menu > Usage Alerts
3762 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3763
3764 // ACTION: Settings > Battery > Menu > Optimization
3765 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3766
3767 // ACTION: Settings > Battery > Menu > Apps Toggle
3768 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3769
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003770 // ACTION: Settings > Any preference is changed
3771 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3772
3773 // FIELD: The name of preference when it is changed in Settings
3774 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3775
3776 // FIELD: The new value of preference when it is changed in Settings
3777 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3778
Julia Reynoldsd373d782017-03-03 13:32:57 -05003779 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3780 // channel updated
3781 // PACKAGE: the package the channel belongs too
3782 // CATEGORY: NOTIFICATION
3783 // OS: O
3784 ACTION_NOTIFICATION_CHANNEL = 856;
3785
3786 // Tagged data for notification channel. String.
3787 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3788
3789 // Tagged data for notification channel. int.
3790 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3791
3792 // OPEN: Notification channel group created.
3793 // PACKAGE: the package the group belongs to
3794 // CATEGORY: NOTIFICATION
3795 // OS: O
3796 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3797
3798 // Tagged data for notification channel group. String.
3799 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3800
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003801 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3802 // CATEGORY: SETTINGS
3803 // OS: O
3804 SETTINGS_NETWORK_SCORER = 861;
3805
Fan Zhang99861312017-03-07 14:32:38 -08003806 // OPEN: Settings > About device > Model > Hardware info dialog
3807 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3808
mariagpuyol0f5512e2017-03-01 12:09:56 -08003809 // ACTION: Checks whether a contact's phone still exists
3810 // Value 0: It doesn't exist anymore
3811 // Value 1: It still exists
3812 // Value 2: A SecurityException was thrown
3813 // CATEGORY: SETTINGS
3814 // OS: N
3815 ACTION_PHONE_EXISTS = 863;
3816
3817 // ACTION: Retrieves a contact from CP2
3818 // Value 0: Contact retrieved without issues
3819 // Value 1: An IllegalArgumentException was thrown
3820 // CATEGORY: SETTINGS
3821 // OS: N
3822 ACTION_GET_CONTACT = 864;
3823
Chris Wren4d6b54d2017-04-27 16:56:54 -04003824 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003825 // internal platform metrics use.
3826 RESERVED_FOR_LOGBUILDER_PID = 865;
3827
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003828 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3829 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3830
3831 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3832 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3833
3834 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3835 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3836
3837 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3838 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3839
3840 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3841 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3842
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003843 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003844 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003845
Fan Zhang082d21c2017-03-13 15:25:54 -07003846 // ACTION: Settings > App detail > Uninstall
3847 ACTION_SETTINGS_UNINSTALL_APP = 872;
3848
3849 // ACTION: Settings > App detail > Uninstall Device admin app
3850 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3851
3852 // ACTION: Settings > App detail > Disable app
3853 ACTION_SETTINGS_DISABLE_APP = 874;
3854
3855 // ACTION: Settings > App detail > Enable app
3856 ACTION_SETTINGS_ENABLE_APP = 875;
3857
3858 // ACTION: Settings > App detail > Clear data
3859 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3860
3861 // ACTION: Settings > App detail > Clear cache
3862 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3863
3864 // ACTION: Clicking on any search result in Settings.
3865 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3866
3867 // FIELD: Settings inline search result name
3868 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3869
3870 // FIELD: Settings inline search result value
3871 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3872
Fan Zhang53797932017-03-13 17:46:24 -07003873 // ACTION: Settings > Search > Click saved queries
3874 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3875
Doris Lingbf8d9de2017-03-15 11:52:50 -07003876 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3877 // CATEGORY: SETTINGS
3878 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3879
Chris Wren3824c392017-11-27 12:54:14 -05003880 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3881 // PACKAGE: The package name of the app requesting the permission
3882 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003883 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3884
Chris Wren3824c392017-11-27 12:54:14 -05003885 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3886 // PACKAGE: The package name of the app that was granted the permission
3887 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003888 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3889
Chris Wren3824c392017-11-27 12:54:14 -05003890 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3891 // PACKAGE: The package name of the app requesting the permission
3892 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003893 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3894
Chris Wren3824c392017-11-27 12:54:14 -05003895 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3896 // PACKAGE: The package name of the app the permission was revoked for
3897 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003898 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3899
Chris Wren3824c392017-11-27 12:54:14 -05003900 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3901 // PACKAGE: The package name of the app requesting the permission
3902 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003903 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3904
Chris Wren3824c392017-11-27 12:54:14 -05003905 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3906 // PACKAGE: The package name of the app that was granted the permission
3907 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003908 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3909
Chris Wren3824c392017-11-27 12:54:14 -05003910 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3911 // PACKAGE: The package name of the app requesting the permission
3912 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003913 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3914
Chris Wren3824c392017-11-27 12:54:14 -05003915 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3916 // PACKAGE: The package name of the app the permission was revoked for
3917 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003918 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3919
Chris Wren3824c392017-11-27 12:54:14 -05003920 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3921 // PACKAGE: The package name of the app requesting the permission
3922 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003923 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3924
Chris Wren3824c392017-11-27 12:54:14 -05003925 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3926 // PACKAGE: The package name of the app that was granted the permission
3927 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003928 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3929
Chris Wren3824c392017-11-27 12:54:14 -05003930 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3931 // PACKAGE: The package name of the app requesting the permission
3932 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003933 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3934
Chris Wren3824c392017-11-27 12:54:14 -05003935 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3936 // PACKAGE: The package name of the app the permission was revoked for
3937 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003938 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3939
Chris Wren3824c392017-11-27 12:54:14 -05003940 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3941 // PACKAGE: The package name of the app requesting the permission
3942 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003943 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3944
Chris Wren3824c392017-11-27 12:54:14 -05003945 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3946 // PACKAGE: The package name of the app that was granted the permission
3947 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003948 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3949
Chris Wren3824c392017-11-27 12:54:14 -05003950 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3951 // PACKAGE: The package name of the app requesting the permission
3952 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003953 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3954
Chris Wren3824c392017-11-27 12:54:14 -05003955 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3956 // PACKAGE: The package name of the app the permission was revoked for
3957 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003958 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3959
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003960 // ACTION: Phase 1 of instant application resolution occurred
3961 // OS: O
3962 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3963
3964 // ACTION: Phase 2 of instant application resolution occurred
3965 // OS: O
3966 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3967
3968 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3969 // OS: O
3970 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3971
3972 // FIELD: The status of an ephemeral resolution phase
3973 // Value 0: success
3974 // Value 1: no full hash match
3975 // OS: O
3976 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3977
3978 // FIELD - A token to identify all events that are part of the same instant application launch
3979 // OS: O
3980 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3981
3982 // FIELD - The name of the package responsible for launching the activity
3983 // OS: O
3984 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3985
3986 // FIELD - Whether or not the launched activity is part of an instant application
3987 // OS: O
3988 APP_TRANSITION_IS_EPHEMERAL = 905;
3989
Felipe Lemef61ba5c2018-05-21 11:18:46 -07003990 // An autofill session was started.
3991 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003992 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003993 // NOTE: starting on OS MR1, it also added the following field:
3994 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3995 // NOTE: starting on OS P, it also added the following field:
Felipe Leme212b1612018-05-22 14:56:15 -07003996 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07003997 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
3998 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
3999 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004000 AUTOFILL_SESSION_STARTED = 906;
4001
4002 // An autofill request was processed by a service
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004003 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4004 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004005 // Package: Package of app that is autofilled
4006 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004007 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004008 // the service returned a null response
4009 // NOTE: starting on OS P, it also added the following fields:
4010 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Leme212b1612018-05-22 14:56:15 -07004011 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004012 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4013 // with 1.
4014 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4015 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4016 // was focused.
4017 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004018 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004019 // number of entries field ids in the request.
Felipe Lemece3ae872018-05-24 10:41:48 -07004020 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004021 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4022 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4023 // - AUTOFILL_UI_LATENCY
4024 // - AUTOFILL_AUTHENTICATED;
4025 // - AUTOFILL_DATASET_AUTHENTICATED
4026 // - AUTOFILL_INVALID_AUTHENTICATION
4027 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004028 AUTOFILL_REQUEST = 907;
4029
4030 // Tag of a field for a package of an autofill service
4031 FIELD_AUTOFILL_SERVICE = 908;
4032
4033 // Tag of a field for the number of datasets
4034 FIELD_AUTOFILL_NUM_DATASETS = 909;
4035
4036 // An autofill dataset selection UI was shown
4037 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4038 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4039 // Type TYPE_ACTION: dataset was selected
4040 // Type TYPE_DETAIL: authentication was selected
4041 // Package: Package of app that was autofilled
4042 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4043 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Leme212b1612018-05-22 14:56:15 -07004044 // NOTE: starting on OS P, it also added the following fields:
4045 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004046 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004047 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004048 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004049 AUTOFILL_FILL_UI = 910;
4050
4051 // Tag of a field for the length of the filter text
4052 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4053
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004054 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004055 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004056 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004057 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004058 AUTOFILL_AUTHENTICATED = 912;
4059
4060 // An activity was autofilled and all values could be applied
4061 // Package: Package of app that is autofilled
4062 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4063 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Leme212b1612018-05-22 14:56:15 -07004064 // NOTE: starting on OS P, it also added the following fields:
4065 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004066 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004067 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004068 AUTOFILL_DATASET_APPLIED = 913;
4069
4070 // Tag of a field for the number values to be filled in
4071 FIELD_AUTOFILL_NUM_VALUES = 914;
4072
4073 // Tag of a field for the number of views that were filled
4074 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4075
4076 // An autofill save UI was shown
4077 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4078 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4079 // Type TYPE_ACTION: data was saved
4080 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004081 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Leme212b1612018-05-22 14:56:15 -07004082 // NOTE: starting on OS P, it also added the following fields:
4083 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004084 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004085 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004086 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004087 AUTOFILL_SAVE_UI = 916;
4088
4089 // Tag of a field for the number of saveable ids
4090 FIELD_AUTOFILL_NUM_IDS = 917;
4091
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004092 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004093 // Type TYPE_SUCCESS: The request succeeded right away
4094 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004095 // Type TYPE_FAILURE: The request failed
4096 // Package: Package of app that was autofilled
4097 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme212b1612018-05-22 14:56:15 -07004098 // NOTE: starting on OS P, it also added the following fields:
4099 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004100 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004101 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004102 AUTOFILL_DATA_SAVE_REQUEST = 918;
4103
4104 // An auto-fill session was finished
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004105 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004106 // Package: Package of app that was autofilled
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004107 // NOTE: starting on OS P, it also added the following fields:
4108 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004109 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004110 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4111 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4112 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004113 AUTOFILL_SESSION_FINISHED = 919;
4114
Chris Wren148805582017-03-17 17:18:11 -04004115 // meta-event: a reader has checkpointed the log here.
4116 METRICS_CHECKPOINT = 920;
4117
Fan Zhanged1845f2017-03-23 14:46:59 -07004118 // OPEN: Settings -> Display -> When in VR Mode
4119 VR_DISPLAY_PREFERENCE = 921;
4120
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004121 // OPEN: Settings > Accessibility > Magnification
4122 // CATEGORY: SETTINGS
4123 // OS: O
4124 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004125
4126 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4127 // app.
4128 // VALUE: The package name of the app
4129 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4130
Fan Zhang1a34e752017-03-24 13:44:51 -07004131 // OPEN: Settings -> System -> Reset options
4132 RESET_DASHBOARD = 924;
4133
Jason Monk8c09ac72017-03-16 11:53:40 -04004134 // ACTION: QS -> Tile clicked
4135 ACTION_QS_CLICK = 925;
4136
4137 // ACTION: QS -> Secondary click
4138 ACTION_QS_SECONDARY_CLICK = 926;
4139
4140 // FIELD: Position info in QS clicks
4141 FIELD_QS_POSITION = 927;
4142
4143 // FIELD: The value of a QS tile when clicked (if applicable)
4144 FIELD_QS_VALUE = 928;
4145
4146 // ACTION: QS -> Detail panel -> more settings
4147 ACTION_QS_MORE_SETTINGS = 929;
4148
4149 // ACTION: QS -> Click date
4150 ACTION_QS_DATE = 930;
4151
Jason Monk1b775652017-03-31 15:42:27 -04004152 // ACTION: Event on nav button
4153 ACTION_NAV_BUTTON_EVENT = 931;
4154
4155 // FIELD: Flags for a nav button event
4156 FIELD_FLAGS = 932;
4157
4158 // FIELD: Action for a nav button event
4159 FIELD_NAV_ACTION = 933;
4160
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004161 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4162 // CATEGORY: SETTINGS
4163 // OS: O
4164 FINGERPRINT_REMOVE_SIDECAR = 934;
4165
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004166 // OPEN: Settings > Storage > Movies & TV
4167 // CATEGORY: SETTINGS
4168 // OS: O
4169 APPLICATIONS_STORAGE_MOVIES = 935;
4170
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004171 // OPEN: Text selection "assist" menu item shown.
4172 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4173 // CATEGORY: TEXT_CONTROLS
4174 // OS: O
4175 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4176
4177 // ACTION: Text selection "assist" menu item clicked.
4178 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4179 // CATEGORY: TEXT_CONTROLS
4180 // OS: O
4181 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4182
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004183 // OPEN: Settings > Security > Managed Device Info > Apps installed
4184 // CATEGORY: SETTINGS
4185 // OS: O
4186 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4187
4188 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4189 // CATEGORY: SETTINGS
4190 // OS: O
4191 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4192
4193 // OPEN: Settings > Security > Managed Device Info > Default apps
4194 // CATEGORY: SETTINGS
4195 // OS: O
4196 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4197
Julia Reynolds80b18072017-04-23 12:27:07 -04004198 // OPEN: Settings > Notifications > An app > A channel > Importance
4199 // CATEGORY: SETTINGS
4200 // OS: O
4201 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4202
4203 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4204 // CATEGORY: SETTINGS
4205 // OS: O
4206 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4207
Chris Wren4d6b54d2017-04-27 16:56:54 -04004208 // This value should never appear in log outputs - it is reserved for
4209 // internal platform metrics use.
4210 RESERVED_FOR_LOGBUILDER_UID = 943;
4211
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004212 // OPEN: Running background apps notification > List of background apps
4213 // CATEGORY: GLOBAL_SYSTEM_UI
4214 // OS: O
4215 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4216
Jorim Jaggi515dd682017-05-05 15:05:07 +02004217 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4218 // client.
4219 // OS: O
4220 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4221
Chris Wrenb3921792017-06-01 13:34:46 -04004222 // FIELD - The group ID of a notification.
4223 // Type: string
4224 // OS: O
4225 FIELD_NOTIFICATION_GROUP_ID = 946;
4226
4227 // FIELD - If the notification is a group summary: 1.
4228 // Type: int encoded boolean
4229 // OS: O
4230 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4231
Felipe Leme637e05e2017-12-06 12:09:37 -08004232 // An app attempted to forge a different component name in the AssisStructure that would be
4233 // passed to the autofill service.
4234 // OS: O (security patch)
4235 // Package: Real package of the app being autofilled
4236 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4237 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004238 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004239 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004240 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4241
4242 // FIELD - The component that an app tried tro forged.
4243 // Type: string
4244 // OS: O (security patch)
4245 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4246
Chris Wren26ca65d2016-11-29 10:43:28 -05004247 // ---- End O Constants, all O constants go above this line ----
4248
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004249 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4250 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4251
jackqdyulei92e492e2017-04-28 13:04:42 -07004252 // OPEN: Settings > Battery > High Usage > Abnormal app page
4253 // CATEGORY: SETTINGS
4254 FUELGAUGE_ANOMALY_DETAIL = 987;
4255
4256 // OPEN: Settings > Battery > High Usage
4257 DIALOG_HANDLE_ANOMALY = 988;
4258
Jonathan Solnita4138162017-05-10 21:06:04 -07004259 // ACTION: Camera lift gesture
4260 // CATEGORY: GLOBAL_SYSTEM_UI
4261 // OS: O
4262 ACTION_CAMERA_LIFT_TRIGGER = 989;
4263
Maurice Lam76ae09c2017-05-05 12:03:49 -07004264 // OPEN: Choose screen lock dialog in Settings
4265 // CATEGORY: SETTINGS
4266 // OS: O DR
4267 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4268
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004269 // OPEN: Assist Gesture training intro in Settings
4270 // CATEGORY: SETTINGS
4271 // OS: O DR
4272 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4273
4274 // OPEN: Assist Gesture training enrolling in Settings
4275 // CATEGORY: SETTINGS
4276 // OS: O DR
4277 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4278
4279 // OPEN: Assist Gesture training finished in Settings
4280 // CATEGORY: SETTINGS
4281 // OS: O DR
4282 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4283
Fan Zhangc666a202017-05-18 17:50:20 -07004284 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4285 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4286
4287 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4288 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4289
Philip Quinn0f9566d2017-05-23 10:32:08 -07004290 // OPEN: Settings > System > Languages & input > Assist gesture
4291 // CATEGORY: SETTINGS
4292 // OS: O DR
4293 SETTINGS_ASSIST_GESTURE = 996;
4294
4295 // ACTION: Assist gesture released without triggering
4296 // CATEGORY: GLOBAL_SYSTEM_UI
4297 // OS: O DR
4298 ASSIST_GESTURE_RELEASED = 997;
4299
4300 // ACTION: Assist gesture primed
4301 // CATEGORY: GLOBAL_SYSTEM_UI
4302 // OS: O DR
4303 ASSIST_GESTURE_PRIMED = 998;
4304
4305 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004306 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004307 // CATEGORY: GLOBAL_SYSTEM_UI
4308 // OS: O DR
4309 ASSIST_GESTURE_TRIGGERED = 999;
4310
Fan Zhang238162b2017-05-25 14:01:41 -07004311 // ACTION: Update default app from Settings
4312 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4313
4314 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004315 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004316
4317 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004318 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004319
Adrian Roos1c81d772017-05-25 18:00:21 -07004320 // OPEN: Settings > Display > Ambient Display
4321 // CATEGORY: SETTINGS
4322 // OS: O DR
4323 AMBIENT_DISPLAY_SETTINGS = 1003;
4324
Hugo Benichi11da42b2017-05-31 11:11:37 +09004325 // ACTION: CaptivePortalLoginActivity starts
4326 // CATEGORY: GLOBAL_SYSTEM_UI
4327 // OS: O DR
4328 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4329
4330 // ACTION: CaptivePortalLoginActivity auto-closes
4331 // CATEGORY: GLOBAL_SYSTEM_UI
4332 // OS: O DR
4333 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4334
4335 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4336 // CATEGORY: GLOBAL_SYSTEM_UI
4337 // OS: O DR
4338 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4339
4340 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4341 // CATEGORY: GLOBAL_SYSTEM_UI
4342 // OS: O DR
4343 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4344
4345 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4346 // CATEGORY: SETTINGS
4347 // OS: O DR
4348 ACTION_WIFI_SIGNIN = 1008;
4349
Antony Sargentf3cc3172017-05-04 14:58:06 -07004350 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4351 // CATEGORY: SETTINGS
4352 // OS: O DR
4353 BLUETOOTH_DEVICE_DETAILS = 1009;
4354
fanzhang172255759d2017-06-05 21:43:47 -07004355 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4356 CONFIGURE_KEYGUARD_DIALOG = 1010;
4357
Fan Zhange33c70d2017-06-06 12:37:13 -07004358 // Open: Settings > Search > No Result View
4359 SETTINGS_SEARCH_NO_RESULT = 1011;
4360
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004361 // OPEN: Assist Gesture before training
4362 // CATEGORY: SETTINGS
4363 // OS: O DR
4364 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4365
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004366 // CaptivePortalLoginActivity displays SSL error page
4367 // CATEGORY: GLOBAL_SYSTEM_UI
4368 // OS: O DR
4369 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4370
Fan Zhang1a0fc992017-06-13 13:45:21 -07004371 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4372 WIFI_TETHER_SETTINGS = 1014;
4373
Antony Sargentc3b5da62017-06-16 11:50:13 -07004374 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4375 // -> Edit name button.
4376 // CATEGORY: SETTINGS
4377 // OS: O DR
4378 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4379
Fan Zhang543587d2017-06-19 12:32:14 -07004380 // ACTION: Settings > Notification Settings > Open application notification
4381 // CATEGORY: SETTINGS
4382 // OS: O DR
4383 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4384
4385 // ACTION: Settings > App Info > Open app settings
4386 // CATEGORY: SETTINGS
4387 // OS: O DR
4388 ACTION_OPEN_APP_SETTING = 1017;
4389
jackqdyulei2f1a3592017-06-19 13:11:05 -07004390 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4391 // CATEGORY: SETTINGS
4392 // OS: O DR
4393 BLUETOOTH_PAIRING = 1018;
4394
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004395 // ACTION: Collect PSD Signals
4396 // CATEGORY: SETTINGS
4397 // OS: O DR
4398 ACTION_PSD_LOADER = 1019;
4399
jackqdyulei602bcc92017-06-21 15:17:53 -07004400 // ACTION: Background check action on an app
4401 // CATEGORY: SETTINGS
4402 // OS: O DR
4403 ACTION_APP_BACKGROUND_CHECK = 1020;
4404
4405 // ACTION: Location check action on an app
4406 // CATEGORY: SETTINGS
4407 // OS: O DR
4408 ACTION_APP_LOCATION_CHECK = 1021;
4409
Charlie Wang15a36ed2017-06-14 14:46:39 -07004410 // Device headset status
4411 // CATEGORY: OTHER
4412 // SUBTYPE: 1 is DON, 2 is DOFF
4413 // OS: O DR
4414 ACTION_HEADSET_STATUS = 1022;
4415
4416 // Device Headset Plug status
4417 // CATEGORY: OTHER
4418 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4419 // OS: O DR
4420 ACTION_HEADSET_PLUG = 1023;
4421
4422 // Device Headset battery level on Plug
4423 // CATEGORY: OTHER
4424 // FIELD - The battery percentage when the user decided to plug in
4425 // Type: integer
4426 // OS: O DR
4427 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4428
Charlie Wang566ec702017-06-26 15:30:03 -07004429 // Device Headset battery level on Plug
4430 // CATEGORY: OTHER
4431 // FIELD - The battery percentage when the user decided to plug in
4432 // Type: integer
4433 // OS: O DR
4434 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4435
Charlie Wang15a36ed2017-06-14 14:46:39 -07004436 // Device Headset Pose status
4437 // CATEGORY: OTHER
4438 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4439 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004440 ACTION_HEADSET_POSE_STATUS = 1026;
4441
4442 // Device Headset Usage session time
4443 // CATEGORY: OTHER
4444 // FIELD - The time the headset was used in a session
4445 // OS: O DR
4446 FIELD_SESSION_TIME_MS = 1027;
4447
4448 // Device Headset Idle time
4449 // CATEGORY: OTHER
4450 // FIELD - The time in between each session
4451 // OS: O DR
4452 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4453
4454 // Device Headset charge session time
4455 // CATEGORY: OTHER
4456 // FIELD - The time taken for each charge
4457 // OS: O DR
4458 FIELD_TIME_OF_CHARGE_MS = 1029;
4459
4460 // Device Headset time between charge
4461 // CATEGORY: OTHER
4462 // FIELD - The time in between each charge
4463 // OS: O DR
4464 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004465
Antony Sargentca701a22017-07-05 17:02:00 -07004466 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4467 // -> Forget button.
4468 // CATEGORY: SETTINGS
4469 // OS: O DR
4470 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4471
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004472 // An event from the camera service
4473 // CATEGORY: OTHER
4474 // SUBTYPE: CameraEvent
4475 // OS: O DR
4476 ACTION_CAMERA_EVENT = 1032;
4477
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004478 // OPEN: Settings > Trampoline Intent > Settings page
4479 // CATEGORY: SETTINGS
4480 // OS: O DR
4481 TRAMPOLINE_SETTINGS_EVENT = 1033;
4482
Chris Wren9a4f2662017-06-29 10:10:02 -04004483 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4484
Malcolm Chen21062542017-06-20 11:36:01 -07004485 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4486 // CATEGORY: SETTINGS
4487 // OS: O MR
4488 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4489
4490 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4491 // CATEGORY: SETTINGS
4492 // OS: O MR
4493 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4494
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004495 // FIELD - State of asynchronous ranking when Settings search result is clicked
4496 // CATEGORY: SETTINGS
4497 // OS: O MR
4498 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4499
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004500 // ACTION: Settings > Connected devices > SMS Mirroring
4501 // CATEGORY: SETTINGS
4502 // OS: O MR
4503 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4504
Kang Li2c571892017-07-05 14:47:32 -07004505 // ACTION: Chooser picked a ranked target.
4506 // CATEGORY: GLOBAL_SYSTEM_UI
4507 // OS: O MR
4508 ACTION_TARGET_SELECTED = 1085;
4509
4510 // FIELD - is category used in Chooser: 1.
4511 // Type: int encoded boolean
4512 // CATEGORY: GLOBAL_SYSTEM_UI
4513 // OS: O MR
4514 FIELD_IS_CATEGORY_USED = 1086;
4515
4516 // FIELD - ranked position of selected target for Chooser.
4517 // CATEGORY: GLOBAL_SYSTEM_UI
4518 // OS: O MR
4519 FIELD_RANKED_POSITION = 1087;
4520
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004521 // OPEN: Settings > Data plan usage
4522 // CATEGORY: SETTINGS
4523 // OS: O MR
4524 DATA_PLAN_USAGE_SUMMARY = 1088;
4525
Doris Lingce007eb2017-08-09 13:59:46 -07004526 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4527 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4528
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004529 // ACTION: Logged when the app has notified that it has fully drawn. See
4530 // Activity.reportFullyDrawn().
4531 APP_TRANSITION_REPORTED_DRAWN = 1090;
4532
4533 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4534 // the app transition.
4535 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4536
Daniel Nishia86115f2017-08-23 10:27:08 -07004537 // OPEN: Settings > Storage > Photos & Videos
4538 // CATEGORY: SETTINGS
4539 // OS: O MR
4540 APPLICATIONS_STORAGE_PHOTOS = 1092;
4541
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004542 // ACTION: Logged when the status bar icons change.
4543 // OS: O MR
4544 STATUS_BAR_ICONS_CHANGED = 1093;
4545
4546 // FIELD: Bitfield indicating which icons are shown.
4547 // OS: O MR
4548 FIELD_STATUS_ICONS = 1094;
4549
4550 // FIELD: Number of status icons currently shown.
4551 // OS: O MR
4552 FIELD_NUM_STATUS_ICONS = 1095;
4553
Jack He4b605792017-09-01 11:48:30 -07004554 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4555 // CATEGORY: SETTINGS
4556 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004557 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004558
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004559 // FIELD - Whether smart suggestion ranking was enabled or not
4560 // Type: int encoded boolean
4561 // CATEGORY: SETTINGS
4562 // OS: O MR
4563 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4564
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004565 // ACTION: The device boots
4566 ACTION_BOOT = 1098;
4567
4568 // FIELD: A string value representing some state of the platform, e.g., boot reason
4569 FIELD_PLATFORM_REASON = 1099;
4570
Jan Althaus786a39d2017-09-15 10:41:16 +02004571 // CATEGORY: The category for all actions relating to selection session logging.
4572 // OS: O MR
4573 TEXT_SELECTION_SESSION = 1100;
4574
4575 // ACTION: A selection session started (i.e. the selection handles appeared)
4576 // CATEGORY: TEXT_SELECTION_SESSION
4577 // OS: O MR
4578 ACTION_TEXT_SELECTION_START = 1101;
4579
4580 // ACTION: The user modified the selection (e.g. by dragging the handles)
4581 // CATEGORY: TEXT_SELECTION_SESSION
4582 // OS: O MR
4583 ACTION_TEXT_SELECTION_MODIFY = 1102;
4584
4585 // ACTION: The user modified the selection by pressing the "select all" button.
4586 // CATEGORY: TEXT_SELECTION_SESSION
4587 // OS: O MR
4588 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4589
4590 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4591 // CATEGORY: TEXT_SELECTION_SESSION
4592 // OS: O MR
4593 ACTION_TEXT_SELECTION_RESET = 1104;
4594
4595 // ACTION: Smart selection made a single word prediction
4596 // CATEGORY: TEXT_SELECTION_SESSION
4597 // OS: O MR
4598 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4599
4600 // ACTION: Smart selection made a multi word prediction
4601 // CATEGORY: TEXT_SELECTION_SESSION
4602 // OS: O MR
4603 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4604
4605 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4606 // CATEGORY: TEXT_SELECTION_SESSION
4607 // OS: O MR
4608 ACTION_TEXT_SELECTION_AUTO = 1107;
4609
4610 // ACTION: A selection session ended with the user typing over the text
4611 // CATEGORY: TEXT_SELECTION_SESSION
4612 // OS: O MR
4613 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4614
4615 // ACTION: A selection session ended with the user copying the text
4616 // CATEGORY: TEXT_SELECTION_SESSION
4617 // OS: O MR
4618 ACTION_TEXT_SELECTION_COPY = 1109;
4619
4620 // ACTION: A selection session ended with the user pasting over the text
4621 // CATEGORY: TEXT_SELECTION_SESSION
4622 // OS: O MR
4623 ACTION_TEXT_SELECTION_PASTE = 1110;
4624
4625 // ACTION: A selection session ended with the user cutting the text
4626 // CATEGORY: TEXT_SELECTION_SESSION
4627 // OS: O MR
4628 ACTION_TEXT_SELECTION_CUT = 1111;
4629
4630 // ACTION: A selection session ended with the user pressing the share button
4631 // CATEGORY: TEXT_SELECTION_SESSION
4632 // OS: O MR
4633 ACTION_TEXT_SELECTION_SHARE = 1112;
4634
4635 // ACTION: A selection session ended with the user pressing the smart share button
4636 // CATEGORY: TEXT_SELECTION_SESSION
4637 // OS: O MR
4638 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4639
4640 // ACTION: A selection session ended with the user dragging the text
4641 // CATEGORY: TEXT_SELECTION_SESSION
4642 // OS: O MR
4643 ACTION_TEXT_SELECTION_DRAG = 1114;
4644
4645 // ACTION: A selection session ended with the user abandoning the selection
4646 // CATEGORY: TEXT_SELECTION_SESSION
4647 // OS: O MR
4648 ACTION_TEXT_SELECTION_ABANDON = 1115;
4649
4650 // ACTION: A selection session ended with the user picking an unhandled action bar item
4651 // CATEGORY: TEXT_SELECTION_SESSION
4652 // OS: O MR
4653 ACTION_TEXT_SELECTION_OTHER = 1116;
4654
4655 // FIELD: Time in milliseconds from the start of the session to this event
4656 // CATEGORY: TEXT_SELECTION_SESSION
4657 // OS: O MR
4658 FIELD_SELECTION_SINCE_START = 1117;
4659
4660 // FIELD: time in milliseconds between the last event in the session and this one
4661 // CATEGORY: TEXT_SELECTION_SESSION
4662 // OS: O MR
4663 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4664
4665 // FIELD: a random uid for a selection session (lasting from select start to end)
4666 // CATEGORY: TEXT_SELECTION_SESSION
4667 // OS: O MR
4668 FIELD_SELECTION_SESSION_ID = 1119;
4669
4670 // FIELD: the sequence number of the event in the session
4671 // CATEGORY: TEXT_SELECTION_SESSION
4672 // OS: O MR
4673 FIELD_SELECTION_SESSION_INDEX = 1120;
4674
4675 // FIELD: a concatenation of the widget type and ML model version.
4676 // CATEGORY: TEXT_SELECTION_SESSION
4677 // OS: O MR
4678 FIELD_SELECTION_VERSION_TAG = 1121;
4679
4680 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4681 // packed 16bit integers. (start in MSBs, end in LSBs)
4682 // CATEGORY: TEXT_SELECTION_SESSION
4683 // OS: O MR
4684 FIELD_SELECTION_RANGE = 1122;
4685
4686 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4687 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4688 // CATEGORY: TEXT_SELECTION_SESSION
4689 // OS: O MR
4690 FIELD_SELECTION_SMART_RANGE = 1123;
4691
Felipe Lemeb22d6352017-09-08 20:03:53 -07004692 // The value of an autofillable and savable view was reset
4693 // Package: Package of app that was autofilled
4694 // OS: O MR
4695 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4696 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Leme212b1612018-05-22 14:56:15 -07004697 // NOTE: starting on OS P, it also added the following fields:
4698 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004699 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004700 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004701 AUTOFILL_VALUE_RESET = 1124;
4702
4703 // Tag of AUTOFILL_VALUE_RESET
4704 // OS: O MR
4705 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4706
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004707 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004708 // Package: Package of app that was autofilled
4709 // OS: O MR
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004710 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004711 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4712
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004713 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004714 // Package: Package of app that was autofilled
4715 // OS: O MR
4716 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004717 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004718 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4719
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004720 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004721 // Package: Package of app that was autofilled
4722 // OS: O MR
4723 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004724 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004725 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4726
Felipe Leme2c888422017-10-26 12:46:35 -07004727 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004728 // Package: Package of app that is autofilled
4729 // OS: O MR
4730 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4731 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004732 // NOTE: starting on OS P, it also added the following fields:
4733 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004734 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004735 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004736 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4737
4738 // FIELD - Type of save object passed by the service when the Save UI is shown
4739 // OS: O MR
4740 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4741
Felipe Leme2c888422017-10-26 12:46:35 -07004742 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004743 // Package: Package of app that is autofilled
4744 // OS: O MR
4745 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4746 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004747 // NOTE: starting on OS P, it also added the following fields:
4748 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004749 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004750 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004751 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4752
Felipe Leme2c888422017-10-26 12:46:35 -07004753 // 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 -07004754 // Package: Package of app that is autofilled
4755 // OS: O MR
4756 // Type TYPE_UNKNOWN: The link was not properly set by the service
4757 // Type TYPE_OPEN: The link launched an activity
4758 // Type TYPE_FAILURE: The link could not launc an activity
4759 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4760 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004761 // NOTE: starting on OS P, it also added the following fields:
4762 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004763 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004764 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004765 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4766
4767 // Result of the validation on save when an autofill service provided a validator
4768 // Package: Package of app that is autofilled
4769 // OS: O MR
4770 // Type TYPE_FAILURE: The validation could not be performed due to an error
4771 // Type TYPE_SUCCESS: The validation passed
4772 // Type TYPE_DISMISS: The validation failed
4773 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4774 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme212b1612018-05-22 14:56:15 -07004775 // NOTE: starting on OS P, it also added the following fields:
4776 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004777 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004778 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004779 AUTOFILL_SAVE_VALIDATION = 1133;
4780
Felipe Leme2c888422017-10-26 12:46:35 -07004781 // 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 -07004782 // provided by the autofill service
4783 // Package: Package of app that is autofilled
4784 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004785 // Type TYPE_OPEN: The autofill save UI was restored
4786 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004787 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Leme212b1612018-05-22 14:56:15 -07004788 // NOTE: starting on OS P, it also added the following fields:
4789 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004790 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004791 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004792 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4793
Felipe Leme9d414492017-09-20 13:55:28 -07004794 // Autofill service called API that disables itself
4795 // Package: Package of the autofill service
4796 // OS: O MR
4797 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4798
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004799 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004800 // Reports how long it took to show the autofill UI after a field was focused
4801 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004802 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4803 // Package: Package of the autofill service
4804 // OS: O MR
4805 AUTOFILL_UI_LATENCY = 1136;
4806
Chris Wren21a2e722017-10-02 17:44:53 -04004807 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4808 // OS: O MR
4809 NOTIFICATION_SNOOZE_CLICKED = 1137;
4810
4811 // Action: user selected a notification snooze duration from the drop down
4812 // OS: O MR
4813 NOTIFICATION_SELECT_SNOOZE = 1138;
4814
4815 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4816 // OS: O MR
4817 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4818
4819 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4820 // OS: O MR
4821 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4822
4823 // Action: user tapped undo on the notification snooze leave-behind
4824 // OS: O MR
4825 NOTIFICATION_UNDO_SNOOZE = 1141;
4826
4827 // Action: user togged the visibility of the notification snooze options drop down
4828 // OS: O MR
4829 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4830
Romain Guy62e8c172017-10-24 21:37:34 +01004831 // OPEN: Settings > Display > Colors
4832 // CATEGORY: SETTINGS
4833 // OS: O MR
4834 COLOR_MODE_SETTINGS = 1143;
4835
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004836 // Enclosing category for group of APP_TRANSITION_FOO events,
4837 // logged when we cancel an app transition.
4838 APP_TRANSITION_CANCELLED = 1144;
4839
Felipe Lemeb659adb2018-01-18 15:21:36 -08004840 // Tag of a field representing a duration on autofill-related metrics.
4841 FIELD_AUTOFILL_DURATION = 1145;
4842
Doris Lingce007eb2017-08-09 13:59:46 -07004843 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4844
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004845 // OPEN: Settings > Network & Internet > Mobile network
4846 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004847 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004848
4849 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4850 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004851 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004852
4853 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4854 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004855 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004856
4857 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4858 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004859 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004860
4861 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4862 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004863 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004864
4865 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4866 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004867 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004868
4869 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4870 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004871 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004872
4873 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4874 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004875 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004876
4877 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4878 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004879 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004880
4881 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4882 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004883 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004884
4885 // ACTION: Settings > Network & Internet > Mobile network > Network
4886 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004887 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004888
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004889 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004890 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004891
4892 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4893 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004894 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004895
4896 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4897 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004898 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004899
4900 // OPEN: Settings > Network & Internet > Mobile network > System select
4901 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004902 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004903
4904 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4905 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004906 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004907
4908 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4909 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004910 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004911
Fan Zhanga2f2c912017-08-15 17:20:37 -07004912 // OPEN: Settings > Developer Options > Experiment dashboard
4913 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004914 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004915
Julia Reynolds005c8b92017-08-24 10:35:53 -04004916 // OPEN: Settings > Notifications > [App] > Topic Notifications
4917 // CATEGORY: SETTINGS
4918 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004919 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004920
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004921 // OPEN: Settings > Developer options > Enable > Info dialog
4922 // CATEGORY: SETTINGS
4923 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004924 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004925
jeffreyhuang57359c02017-09-18 11:34:00 -07004926 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4927 // CATEGORY: SETTINGS
4928 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004929 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004930
Kevin Chyn60eea712017-09-26 16:03:05 -07004931 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4932 // CATEGORY: SETTINGS
4933 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004934 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004935
jeffreyhuang37c4b132017-09-21 14:09:20 -07004936 // OPEN: Settings > Developer options > USB debugging > Info dialog
4937 // CATEGORY: SETTINGS
4938 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004939 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004940
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004941 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4942 // CATEGORY: SETTINGS
4943 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004944 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004945
Fan Zhange5b34302017-10-09 15:58:38 -07004946 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004947 // CATEGORY: SETTINGS
4948 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004949 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4950
jeffreyhuang49de1252017-10-05 15:25:14 -07004951 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4952 // CATEGORY: SETTINGS
4953 // OS: P
4954 DIALOG_LOG_PERSIST = 1225;
4955
Beverly04216872017-09-28 10:55:32 -04004956 // ACTION: DND Settings > Priority only allows > Alarms toggle
4957 // SUBTYPE: 0 is off, 1 is on
4958 // CATEGORY: SETTINGS
4959 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004960 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004961
4962 // ACTION: DND Settings > Priority only allows > Media toggle
4963 // SUBTYPE: 0 is off, 1 is on
4964 // CATEGORY: SETTINGS
4965 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004966 ACTION_ZEN_ALLOW_MEDIA = 1227;
4967
4968 // An autofill service explicitly defined which view should commit the autofill context
4969 // Package: Package of app that is autofilled
4970 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07004971 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004972 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemece3ae872018-05-24 10:41:48 -07004973 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004974 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004975 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4976
4977 // The autofill context was commited when the user clicked a view explicitly marked by the
4978 // service as committing it
4979 // Package: Package of app that is autofilled
4980 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07004981 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Lemece3ae872018-05-24 10:41:48 -07004982 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004983 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004984 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004985
Malcolm Chen4f17b172017-10-19 13:54:07 -07004986 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4987 // CATEGORY: SETTINGS
4988 // OS: P
4989 WIFI_CALLING_FOR_SUB = 1230;
4990
Felipe Leme17292d12017-10-24 14:03:10 -07004991 // An autofill service asked to disable autofill for a given application.
4992 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004993 // OS: P
4994 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004995 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemece3ae872018-05-24 10:41:48 -07004996 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004997 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004998 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4999
5000 // An autofill service asked to disable autofill for a given activity.
5001 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005002 // OS: P
5003 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5004 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005005 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemece3ae872018-05-24 10:41:48 -07005006 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005007 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005008 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5009
jackqdyuleide3b7af2017-10-24 16:32:58 -07005010 // ACTION: Stop an app and turn on background check
5011 // CATEGORY: SETTINGS
5012 // OS: P
5013 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5014
5015 // FIELD: The action type for each anomaly
5016 // CATEGORY: SETTINGS
5017 // OS: P
5018 FIELD_ANOMALY_ACTION_TYPE = 1234;
5019
5020 // OPEN: Settings -> Battery -> Wakelock anomaly
5021 // CATEGORY: SETTINGS
5022 // OS: P
5023 ANOMALY_TYPE_WAKELOCK = 1235;
5024
5025 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5026 // CATEGORY: SETTINGS
5027 // OS: P
5028 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5029
5030 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5031 // CATEGORY: SETTINGS
5032 // OS: P
5033 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5034
Fan Zhanga4a01722017-10-30 17:54:24 -07005035 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5036 // OS: P
5037 DIALOG_OEM_LOCK_INFO = 1238;
5038
jackqdyulei331fafb2017-11-01 14:01:24 -07005039 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5040 // CATEGORY: SETTINGS
5041 // OS: P
5042 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5043
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005044 // Open: Settings > System > About phone > IMEI
5045 // CATEGORY: SETTINGS
5046 // OS: P
5047 DIALOG_IMEI_INFO = 1240;
5048
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005049 // In permission action fields tagged like this reference the permission affected
5050 FIELD_PERMISSION = 1241;
5051
5052 // ACTION: An app requested a permission and we asked to user to approve the request
5053 // PACKAGE: The package name of the app requesting the permission
5054 // Tag FIELD_PERMISSION: Name of the permission requested
5055 ACTION_PERMISSION_REQUESTED = 1242;
5056
5057 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5058 // or automatically. In the second case there will not be an
5059 // ACTION_PERMISSION_REQUESTED.
5060 // PACKAGE: The package name of the app that was granted the permission
5061 // Tag FIELD_PERMISSION: Name of the permission granted
5062 ACTION_PERMISSION_GRANTED = 1243;
5063
5064 // ACTION: An app requested the a permission and the request was denied by the user or a device
5065 // policy
5066 // PACKAGE: The package name of the app requesting the permission
5067 // Tag FIELD_PERMISSION: Name of the permission denied
5068 ACTION_PERMISSION_DENIED = 1244;
5069
5070 // ACTION: A permission was revoked
5071 // PACKAGE: The package name of the app the permission was revoked for
5072 // Tag FIELD_PERMISSION: Name of the permission revoked
5073 ACTION_PERMISSION_REVOKED = 1245;
5074
jeffreyhuang594314c2017-11-01 10:26:15 -07005075 // OPEN: Settings > System > About Phone > Sim status
5076 // CATEGORY: SETTINGS
5077 // OS: P
5078 DIALOG_SIM_STATUS = 1246;
5079
jeffreyhuang3bd59782017-11-02 11:08:28 -07005080 // OPEN: Settings > System > About Phone > Android Version
5081 // CATEGORY: SETTINGS
5082 // OS: P
5083 DIALOG_FIRMWARE_VERSION = 1247;
5084
jackqdyulei8fe97542017-11-08 16:23:43 -08005085 // OPEN: Settings > Network & internet > Menu > Private DNS
5086 // CATEGORY: SETTINGS
5087 // OS: P
5088 DIALOG_PRIVATE_DNS = 1248;
5089
5090 // ACTION: A private dns mode been selected by user
5091 // CATEGORY: SETTINGS
5092 // OS: P
5093 ACTION_PRIVATE_DNS_MODE = 1249;
5094
Jan Althausae5eb832017-11-06 12:31:59 +01005095 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5096 // CATEGORY: TEXT_SELECTION_SESSION
5097 // OS: P
5098 FIELD_SELECTION_RANGE_START = 1250;
5099
5100 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5101 // CATEGORY: TEXT_SELECTION_SESSION
5102 // OS: P
5103 FIELD_SELECTION_RANGE_END = 1251;
5104
5105 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5106 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5107 // CATEGORY: TEXT_SELECTION_SESSION
5108 // OS: P
5109 FIELD_SELECTION_SMART_RANGE_START = 1252;
5110
5111 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5112 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5113 // CATEGORY: TEXT_SELECTION_SESSION
5114 // OS: P
5115 FIELD_SELECTION_SMART_RANGE_END = 1253;
5116
5117 // FIELD: the entity type of the text currently selected.
5118 // CATEGORY: TEXT_SELECTION_SESSION
5119 // OS: P
5120 FIELD_SELECTION_ENTITY_TYPE = 1254;
5121
5122 // FIELD: the type of widget the selection was made in.
5123 // CATEGORY: TEXT_SELECTION_SESSION
5124 // OS: P
5125 FIELD_SELECTION_WIDGET_TYPE = 1255;
5126
5127 // FIELD: the name of the text classifier model used.
5128 // CATEGORY: TEXT_SELECTION_SESSION
5129 // OS: P
5130 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5131
Beverly625442d2017-11-03 17:27:02 -04005132 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5133 // CATEGORY: SETTINGS
5134 // OS: P
5135 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5136
5137 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5138 // CATEGORY: SETTINGS
5139 // OS: P
5140 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5141
5142 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5143 // CATEGORY: SETTINGS
5144 // OS: P
5145 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5146
5147 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5148 // CATEGORY: SETTINGS
5149 // OS: P
5150 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5151
5152 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5153 // CATEGORY: SETTINGS
5154 // OS: P
5155 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5156
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005157 // FIELD: the version of the widget the selection was made in.
5158 // CATEGORY: TEXT_SELECTION_SESSION
5159 // OS: P
5160 FIELD_SELECTION_WIDGET_VERSION = 1262;
5161
jackqdyulei63193602017-11-27 13:46:48 -08005162 // OPEN: Settings > Battery(version 2)
5163 // CATEGORY: SETTINGS
5164 // OS: P
5165 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5166
jackqdyulei6139eab2017-11-29 14:38:32 -08005167 // OPEN: Settings > Connected devices > Connection preferences
5168 // CATEGORY: SETTINGS
5169 // OS: P
5170 CONNECTION_DEVICE_ADVANCED = 1264;
5171
Fan Zhang5235c052017-12-05 13:49:35 -08005172 // OPEN: Settings > Security > Screen lock gear icon
5173 // CATEGORY: SETTINGS
5174 // OS: P
5175 SCREEN_LOCK_SETTINGS = 1265;
5176
Beverlybf16c142017-11-27 16:21:34 -05005177 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5178 // CATEGORY: SETTINGS
5179 // OS: P
5180 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005181
Beverlybf16c142017-11-27 16:21:34 -05005182 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5183 // CATEGORY: SETTINGS
5184 // OS: P
5185 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5186
5187 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5188 // CATEGORY: SETTINGS
5189 // OS: P
5190 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5191
5192 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5193 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5194 // CATEGORY: SETTINGS
5195 // OS: P
5196 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5197
5198 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5199 // CATEGORY: SETTINGS
5200 // OS: P
5201 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5202
Felipe Leme5e047202017-12-05 16:30:06 -08005203 // Tag of a field for the number of ids in an autofill field classification request.
5204 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5205
5206 // An autofill service updated its user data
5207 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005208 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5209 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005210 // OS: P
5211 AUTOFILL_USERDATA_UPDATED = 1272;
5212
5213 // Some data entered by the user matched the field classification requested by the service.
5214 // Package: Package of app that is autofilled
5215 // Counter: number of matches found
5216 // OS: P
Felipe Leme212b1612018-05-22 14:56:15 -07005217 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005218 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5219 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Lemece3ae872018-05-24 10:41:48 -07005220 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005221 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005222 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5223
5224 // Tag used to report autofill field classification scores
5225 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5226
Jerry Zhang18be8db2017-12-15 15:24:41 -08005227 // ACTION: Usb config has been changed to charging
5228 // CATEGORY: SETTINGS
5229 // OS: P
5230 ACTION_USB_CONFIG_CHARGING = 1275;
5231
5232 // ACTION: Usb config has been changed to mtp (file transfer)
5233 // CATEGORY: SETTINGS
5234 // OS: P
5235 ACTION_USB_CONFIG_MTP = 1276;
5236
5237 // ACTION: Usb config has been changed to ptp (photo transfer)
5238 // CATEGORY: SETTINGS
5239 // OS: P
5240 ACTION_USB_CONFIG_PTP = 1277;
5241
5242 // ACTION: Usb config has been changed to rndis (usb tethering)
5243 // CATEGORY: SETTINGS
5244 // OS: P
5245 ACTION_USB_CONFIG_RNDIS = 1278;
5246
5247 // ACTION: Usb config has been changed to midi
5248 // CATEGORY: SETTINGS
5249 // OS: P
5250 ACTION_USB_CONFIG_MIDI = 1279;
5251
5252 // ACTION: Usb config has been changed to accessory
5253 // CATEGORY: SETTINGS
5254 // OS: P
5255 ACTION_USB_CONFIG_ACCESSORY = 1280;
5256
jackqdyuleie04138d2018-01-08 17:51:57 -08005257 // OPEN: Settings > Battery > Smart Battery
5258 // CATEGORY: SETTINGS
5259 // OS: P
5260 FUELGAUGE_SMART_BATTERY = 1281;
5261
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005262 // ACTION: User tapped Screenshot in the power menu.
5263 // CATEGORY: GLOBAL_SYSTEM_UI
5264 // OS: P
5265 ACTION_SCREENSHOT_POWER_MENU = 1282;
5266
Felipe Leme3e099112018-01-18 12:57:45 -08005267 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005268 // CATEGORY: SETTINGS
5269 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005270 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005271
Felipe Leme3e099112018-01-18 12:57:45 -08005272 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005273 // CATEGORY: SETTINGS
5274 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005275 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005276
jackqdyuleid9821242018-01-09 17:42:52 -08005277 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5278 // CATEGORY: SETTINGS
5279 // OS: P
5280 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5281
Beverly92c25682018-01-22 09:27:19 -05005282 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5283 // CATEGORY: SETTINGS
5284 // OS: P
5285 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5286
Mike Digmanc94759d2018-01-23 11:01:21 -08005287 // ACTION: Rotate suggestion accepted in rotation locked mode
5288 // CATEGORY: GLOBAL_SYSTEM_UI
5289 // OS: P
5290 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5291
5292 // OPEN: Rotation suggestion shown in rotation locked mode
5293 // CATEGORY: GLOBAL_SYSTEM_UI
5294 // OS: P
5295 ROTATION_SUGGESTION_SHOWN = 1288;
5296
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005297 // An autofill service was bound using an unofficial(but still supported) permission.
5298 // Package: Package of the autofill service
5299 // OS: P
5300 AUTOFILL_INVALID_PERMISSION = 1289;
5301
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005302 // OPEN: QS Alarm tile shown
5303 // ACTION: QS Alarm tile tapped
5304 // SUBTYPE: 0 is off, 1 is on
5305 // CATEGORY: QUICK_SETTINGS
5306 // OS: P
5307 QS_ALARM = 1290;
5308
Jerry Zhang79147972018-01-31 16:04:06 -08005309 // OPEN: Settings->Connected Devices->USB->(click on details link)
5310 // CATEGORY: SETTINGS
5311 // OS: P
5312 USB_DEVICE_DETAILS = 1291;
5313
Michael Wright98bdc512018-01-26 19:15:57 +00005314 // OPEN: Settings > Accessibility > Vibration
5315 // CATEGORY: SETTINGS
5316 // OS: P
5317 ACCESSIBILITY_VIBRATION = 1292;
5318
5319 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5320 // CATEGORY: SETTINGS
5321 // OS: P
5322 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5323
5324 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5325 // CATEGORY: SETTINGS
5326 // OS: P
5327 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5328
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005329 // OPEN: Volume panel > output chooser dialog
5330 // OS: P
5331 OUTPUT_CHOOSER = 1295;
5332
5333 // Action: Volume panel > output chooser dialog > tap on device
5334 // OS: P
5335 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5336
5337 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5338 // OS: P
5339 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5340
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005341 // OPEN: TV Settings > Home theater control
5342 // OS: P
5343 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5344
5345 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5346 // OS: P
5347 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5348
5349 // OPEN: TV Settings > Device
5350 // OS: P
5351 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5352
5353 // OPEN: TV Settings > Network > Proxy settings
5354 // OS: P
5355 DIALOG_TV_NETWORK_PROXY = 1301;
5356
Makoto Onuki698f7a02018-02-13 15:02:23 -08005357 // Events for battery saver turning on/off and/or the interactive state changes.
5358 // OS: P
5359 BATTERY_SAVER = 1302;
5360
5361 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5362 // OS: P
5363 FIELD_INTERACTIVE = 1303;
5364
5365 // Time spent in milliseconds in the current mode.
5366 // OS: P
5367 FIELD_DURATION_MILLIS = 1304;
5368
Chris Wren8f7a1442018-05-14 17:16:31 -04005369 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005370 // OS: P
5371 FIELD_START_BATTERY_UA = 1305;
5372
Chris Wren8f7a1442018-05-14 17:16:31 -04005373 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005374 // OS: P
5375 FIELD_END_BATTERY_UA = 1306;
5376
5377 // Battery level in % (0-100) when the current "mode" started.
5378 // OS: P
5379 FIELD_START_BATTERY_PERCENT = 1307;
5380
5381 // Battery level in % (0-100) when this event was created.
5382 // OS: P
5383 FIELD_END_BATTERY_PERCENT = 1308;
5384
Christine Frankse257e452018-01-18 11:06:54 -08005385 // ACTION: Settings > Display > Night Light
5386 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5387 // CATEGORY: SETTINGS
5388 // OS: P
5389 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5390
5391 // ACTION: Settings > Display > Night Light
5392 // CATEGORY: SETTINGS
5393 // SUBTYPE: 0 is starting time, 1 is ending time
5394 // OS: P
5395 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5396
5397 // FIELD: Current mode corresponding to a QS tile
5398 // CATEGORY: QUICK SETTINGS
5399 // OS: P
5400 FIELD_QS_MODE = 1311;
5401
Jerry Zhang92306d82018-02-12 18:12:41 -08005402 // OPEN: Settings->Developer Options->Default USB
5403 // CATEGORY: SETTINGS
5404 // OS: P
5405 USB_DEFAULT = 1312;
5406
Jan Althaus31efdc32018-02-19 22:23:13 +01005407 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5408 // OS: P
5409 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5410
5411 // FIELD: milliseconds spent generating links.
5412 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5413 // OS: P
5414 FIELD_LINKIFY_LATENCY = 1314;
5415
5416 // FIELD: length of the input text in characters.
5417 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5418 // OS: P
5419 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5420
5421 // FIELD: number of links detected.
5422 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5423 // OS: P
5424 FIELD_LINKIFY_NUM_LINKS = 1316;
5425
5426 // FIELD: length of all links in characters.
5427 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5428 // OS: P
5429 FIELD_LINKIFY_LINK_LENGTH = 1317;
5430
5431 // FIELD: the type of entity the stats are for.
5432 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5433 // OS: P
5434 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5435
5436 // FIELD: a random uid for a single call to generateLinks
5437 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5438 // OS: P
5439 FIELD_LINKIFY_CALL_ID = 1319;
5440
Calin Juravle759fbda2018-02-20 19:52:30 +00005441 // FIELD: The compiler filter used when when optimizing the package.
5442 // Logged together with app transition events.
5443 // OS: P
5444 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5445
5446 // FIELD: The reason for optimizing the package.
5447 // Logged together with app transition events.
5448 // OS: P
5449 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5450
Emilian Peev6bf0a552018-02-10 02:15:49 +00005451 // FIELD: The camera API level used.
5452 // CATEGORY: CAMERA
5453 // OS: P
5454 FIELD_CAMERA_API_LEVEL = 1322;
5455
jackqdyulei73e6b342018-02-26 14:44:50 -08005456 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5457 // CATEGORY: SETTINGS
5458 // OS: P
5459 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5460
jackqdyuleibb60ea22018-02-26 17:18:12 -08005461 // OPEN: Settings > Battery > Battery tip
5462 // CATEGORY: SETTINGS
5463 // OS: P
5464 ACTION_BATTERY_TIP_SHOWN = 1324;
5465
Maggieb9d76322018-02-16 18:00:30 -08005466 // OPEN: Settings > Security & Location > Location > See all
5467 // CATEGORY: SETTINGS
5468 // OS: P
5469 RECENT_LOCATION_REQUESTS_ALL = 1325;
5470
Evan Laird404a85c2018-02-28 15:31:29 -05005471 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5472 // CATEGORY: GLOBAL_SYSTEM_UI
5473 // OS: P
5474 FIELD_GESTURE_X_PERCENT = 1326;
5475
5476 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5477 // CATEGORY: GLOBAL_SYSTEM_UI
5478 // OS: P
5479 FIELD_GESTURE_Y_PERCENT = 1327;
5480
5481 // ACTION: Expand the notification panel while unlocked
5482 // CATEGORY: GLOBAL_SYSTEM_UI
5483 // OS: P
5484 ACTION_PANEL_VIEW_EXPAND = 1328;
5485
Evan Laird404a85c2018-02-28 15:31:29 -05005486 // FIELD: Rotation of the device
5487 // CATEGORY: GLOBAL_SYSTEM_UI
5488 // OS: P
5489 FIELD_DEVICE_ROTATION = 1329;
5490
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005491 // OPEN: TV Settings > Inputs > Input Options
5492 // CATEGORY: SETTINGS
5493 // OS: P
5494 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5495
5496 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5497 // CATEGORY: SETTINGS
5498 // OS: P
5499 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5500
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005501 // ACTION: DND Settings > What to block > full screen intents
5502 // SUBTYPE: false is allowed, true is blocked
5503 // CATEGORY: SETTINGS
5504 // OS: 6.0
5505 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5506
5507 // ACTION: DND Settings > What to block
5508 // SUBTYPE: false is allowed, true is blocked
5509 // OS: P
5510 ACTION_ZEN_BLOCK_LIGHT = 1333;
5511
5512 // ACTION: DND Settings > What to block
5513 // SUBTYPE: false is allowed, true is blocked
5514 // OS: P
5515 ACTION_ZEN_BLOCK_PEEK = 1334;
5516
5517 // ACTION: DND Settings > What to block
5518 // SUBTYPE: false is allowed, true is blocked
5519 // OS: P
5520 ACTION_ZEN_BLOCK_STATUS = 1335;
5521
5522 // ACTION: DND Settings > What to block
5523 // SUBTYPE: false is allowed, true is blocked
5524 // OS: P
5525 ACTION_ZEN_BLOCK_BADGE = 1336;
5526
5527 // ACTION: DND Settings > What to block
5528 // SUBTYPE: false is allowed, true is blocked
5529 // OS: P
5530 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5531
5532 // ACTION: DND Settings > What to block
5533 // SUBTYPE: false is allowed, true is blocked
5534 // OS: P
5535 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5536
5537 // OPEN: DND Settings > What to block
5538 // OS: P
5539 ZEN_WHAT_TO_BLOCK = 1339;
5540
Beverly8fe33ba2018-03-05 14:32:35 -05005541 // ACTION: DND Settings > Priority only allows > System toggle
5542 // SUBTYPE: 0 is off, 1 is on
5543 // CATEGORY: SETTINGS
5544 // OS: P
5545 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5546
5547 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5548 // CATEGORY: SETTINGS
5549 // OS: P
5550 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5551
5552 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5553 // CATEGORY: SETTINGS
5554 // OS: P
5555 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5556
5557 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5558 // CATEGORY: SETTINGS
5559 // OS: P
5560 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5561
5562 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5563 // CATEGORY: SETTINGS
5564 // OS: P
5565 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5566
Julia Reynolds8dff1862018-03-06 14:20:40 -05005567 // Notification Guts, active app ops variant
5568 // OS: P
5569 APP_OPS_GUTS = 1345;
5570
5571 // ACTION: Notification Guts, active app ops variant > Settings button
5572 // OS: P
5573 ACTION_OPS_GUTS_SETTINGS = 1346;
5574
Lei Yu5674d2d2018-03-08 10:19:43 -08005575 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5576 // OS: P
5577 ACTION_APP_RESTRICTION_TIP = 1347;
5578
5579 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5580 // OS: P
5581 ACTION_HIGH_USAGE_TIP = 1348;
5582
Lei Yue93e5602018-03-08 12:15:38 -08005583 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5584 // OS: P
5585 ACTION_SUMMARY_TIP = 1349;
5586
5587 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5588 // OS: P
5589 ACTION_SMART_BATTERY_TIP = 1350;
5590
5591 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5592 // OS: P
5593 ACTION_EARLY_WARNING_TIP = 1351;
5594
5595 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5596 // OS: P
5597 ACTION_LOW_BATTERY_TIP = 1352;
5598
5599 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5600 // OS: P
5601 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5602
5603 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5604 // OS: P
5605 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5606
Victor Chang76817b82018-03-09 17:22:52 +00005607 // OPEN: Settings > Date & time > Select time zone -> Region
5608 // CATEGORY: SETTINGS
5609 // OS: P
5610 SETTINGS_ZONE_PICKER_REGION = 1355;
5611
5612 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5613 // CATEGORY: SETTINGS
5614 // OS: P
5615 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5616
5617 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5618 // CATEGORY: SETTINGS
5619 // OS: P
5620 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5621
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005622 // Action: notification shade > manage notifications
5623 // OS: P
5624 ACTION_MANAGE_NOTIFICATIONS = 1358;
5625
Chris Wrenaa571c62018-03-14 12:16:04 -04005626 // This value should never appear in log outputs - it is reserved for
5627 // internal platform metrics use.
5628 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5629
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005630 // OPEN: Settings > Gestures > Prevent Ringing
5631 // OS: P
5632 SETTINGS_PREVENT_RINGING = 1360;
5633
Lei Yue92285a2018-03-12 11:28:40 -07005634 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5635 // CATEGORY: SETTINGS
5636 // OS: P
5637 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5638
5639 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5640 // CATEGORY: SETTINGS
5641 // OS: P
5642 ACTION_TIP_RESTRICT_APP = 1362;
5643
5644 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5645 // CATEGORY: SETTINGS
5646 // OS: P
5647 ACTION_TIP_UNRESTRICT_APP = 1363;
5648
5649 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5650 // CATEGORY: SETTINGS
5651 // OS: P
5652 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5653
5654 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5655 // CATEGORY: SETTINGS
5656 // OS: P
5657 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5658
5659 // FIELD: type of anomaly in settings app
5660 // CATEGORY: SETTINGS
5661 // OS: P
5662 FIELD_ANOMALY_TYPE = 1366;
5663
Lei Yu4f704772018-03-20 10:51:58 -07005664 // ACTION: Settings > Anomaly receiver > Anomaly received
5665 // CATEGORY: SETTINGS
5666 // OS: P
5667 ACTION_ANOMALY_TRIGGERED = 1367;
5668
Fan Zhanga85b4872018-03-26 16:52:53 -07005669 // ACTION: Settings > Condition > Device muted
5670 // CATEGORY: SETTINGS
5671 // OS: P
5672 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5673
5674 // ACTION: Settings > Condition > Device vibrate
5675 // CATEGORY: SETTINGS
5676 // OS: P
5677 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5678
hughchen226196b2018-03-27 12:04:59 +08005679 // OPEN: Settings > Connected devices > previously connected devices
5680 // CATEGORY: SETTINGS
5681 // OS: P
5682 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005683
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005684 // ACTION: A Settings Slice is requested
5685 // CATEGORY: SETTINGS
5686 // OS: P
5687 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5688
5689 // ACTION: A Settings Slice is updated with new value
5690 // CATEGORY: SETTINGS
5691 // OS: P
5692 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5693
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005694 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5695 // note: Wifi Scanning must be off for this dialog to show
5696 // CATEGORY: SETTINGS
5697 // OS: P
5698 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5699
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005700 // OPEN: Settings > System > Gestures > Swipe up gesture
5701 // CATEGORY: SETTINGS
5702 // OS: P
5703 SETTINGS_GESTURE_SWIPE_UP = 1374;
5704
Jeff Sharkey46270712018-04-02 09:53:21 -06005705 // OPEN: Settings > Storage > Dialog to format a storage volume
5706 // CATEGORY: SETTINGS
5707 // OS: P
5708 DIALOG_VOLUME_FORMAT = 1375;
5709
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005710 // OPEN: DND onboarding activity > screen on checkbox
5711 // CATEGORY: SETTINGS
5712 // OS: P
5713 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5714
5715 // OPEN: DND onboarding activity > screen off checkbox
5716 // CATEGORY: SETTINGS
5717 // OS: P
5718 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5719
5720 // OPEN: DND onboarding activity > Ok button
5721 // CATEGORY: SETTINGS
5722 // OS: P
5723 ACTION_ZEN_ONBOARDING_OK = 1378;
5724
5725 // OPEN: DND onboarding activity > Settings link
5726 // CATEGORY: SETTINGS
5727 // OS: P
5728 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5729
5730 // OPEN: DND onboarding activity
5731 // CATEGORY: SETTINGS
5732 // OS: P
5733 SETTINGS_ZEN_ONBOARDING = 1380;
5734
Fan Zhangd2ed8212018-04-10 12:57:56 -07005735 // OPEN: Settings > Display > Auto brightness
5736 // CATEGORY: SETTINGS
5737 // OS: P
5738 SETTINGS_AUTO_BRIGHTNESS = 1381;
5739
Kenny Guy23991102018-04-05 21:18:38 +01005740 // OPEN: Smart replies in a notification seen at least once
5741 // CATEGORY: NOTIFICATION
5742 // PACKAGE: App that posted the notification
5743 // SUBTYPE: Number of smart replies.
5744 // OS: P
5745 SMART_REPLY_VISIBLE = 1382;
5746
5747 // ACTION: Smart reply in a notification clicked.
5748 // CATEGORY: NOTIFICATION
5749 // PACKAGE: App that posted the notification
5750 // SUBTYPE: Index of smart reply clicked.
5751 // OS: P
5752 SMART_REPLY_ACTION = 1383;
5753
5754 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5755 // OS: P
5756 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5757
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005758 // Volume dialog > ringer toggle
5759 // OS: P
5760 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5761
5762 // Volume dialog > settings button
5763 // OS: P
5764 ACTION_VOLUME_SETTINGS = 1386;
5765
Lei Yufc59a572018-04-10 10:52:08 -07005766 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5767 // CATEGORY: SETTINGS
5768 // OS: P
5769 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005770
Lei Yu97a13212018-04-11 15:45:31 -07005771 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5772 // CATEGORY: SETTINGS
5773 // OS: P
5774 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5775
5776 // FIELD: the version code of an app
5777 // CATEGORY: SETTINGS
5778 // OS: P
5779 FIELD_APP_VERSION_CODE = 1389;
5780
Salvador Martinez7a9564f2018-04-04 14:42:59 -07005781 // OPEN: Settings > Connected Devices > Bluetooth
5782 // CATEGORY: SETTINGS
5783 // OS: P
5784 BLUETOOTH_FRAGMENT = 1390;
5785
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005786 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5787 // an app uses a hidden API.
5788 ACTION_HIDDEN_API_ACCESSED = 1391;
5789
5790 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5791 // access; see enum HiddenApiAccessMethod
5792 // OS: P
5793 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5794
5795 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5796 // denied to the API.
5797 // OS: P
5798 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5799
5800 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5801 // API that was accessed.
5802 // OS: P
5803 FIELD_HIDDEN_API_SIGNATURE = 1394;
5804
Chris Wren8f7a1442018-05-14 17:16:31 -04005805 // The number of items in the shade when this notification event was logged.
5806 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005807 NOTIFICATION_SHADE_COUNT = 1395;
5808
Julia Reynolds5da746a2018-04-23 09:41:21 -04005809 // ACTION: DND Settings > What to block
5810 // OS: P
5811 ACTION_ZEN_SOUND_ONLY = 1396;
5812
5813 // ACTION: DND Settings > Notifications
5814 // OS: P
5815 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5816
5817 // ACTION: DND Settings > Notifications
5818 // OS: P
5819 ACTION_ZEN_SHOW_CUSTOM = 1398;
5820
5821 // ACTION: DND Settings > Notifications
5822 // OS: P
5823 ACTION_ZEN_CUSTOM = 1399;
5824
5825 // Screen: DND Settings > Notifications
5826 // OS: P
5827 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5828
Chris Wrend63dffd2018-04-19 11:12:46 -04005829 // An event category for slices.
5830 // OPEN: Slice became visible.
5831 // CLOSE: Slice became invisible.
5832 // ACTION: Slice was tapped.
5833 SLICE = 1401;
5834
5835 // The authority part of the slice URI
5836 FIELD_SLICE_AUTHORITY = 1402;
5837
5838 // The path part of the slice URI
5839 FIELD_SLICE_PATH = 1403;
5840
5841 // The authority part of the subslice URI
5842 FIELD_SUBSLICE_AUTHORITY = 1404;
5843
5844 // The path part of the subslice URI
5845 FIELD_SUBSLICE_PATH = 1405;
5846
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005847 // OPEN: DND onboarding activity > don't update button
5848 // CATEGORY: SETTINGS
5849 // OS: P
5850 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5851
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005852 // ACTION: Storage initialization wizard initialization choice of external/portable
5853 // CATEGORY: SETTINGS
5854 // OS: P
5855 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5856
5857 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5858 // CATEGORY: SETTINGS
5859 // OS: P
5860 ACTION_STORAGE_INIT_INTERNAL = 1408;
5861
5862 // ACTION: Storage initialization wizard benchmark fast choice of continue
5863 // CATEGORY: SETTINGS
5864 // OS: P
5865 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5866
5867 // ACTION: Storage initialization wizard benchmark slow choice of continue
5868 // CATEGORY: SETTINGS
5869 // OS: P
5870 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5871
5872 // ACTION: Storage initialization wizard benchmark slow choice of abort
5873 // CATEGORY: SETTINGS
5874 // OS: P
5875 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5876
5877 // ACTION: Storage initialization wizard migration choice of now
5878 // CATEGORY: SETTINGS
5879 // OS: P
5880 ACTION_STORAGE_MIGRATE_NOW = 1412;
5881
5882 // ACTION: Storage initialization wizard migration choice of later
5883 // CATEGORY: SETTINGS
5884 // OS: P
5885 ACTION_STORAGE_MIGRATE_LATER = 1413;
5886
Felipe Leme11166522018-05-07 10:18:47 -07005887 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005888 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005889 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5890
hughchen2bde4092018-05-10 18:04:25 +08005891 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005892 // CATEGORY: SETTINGS
5893 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005894 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5895
5896 // OPEN: Settings > Sound > Switch hfp devices dialog
5897 // CATEGORY: SETTINGS
5898 // OS: P
5899 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005900
Beverlyc4eb9342018-05-10 15:46:03 -04005901 // ACTION: User has started or ended charging
5902 // Type TYPE_DISMISS: Charging has ended
5903 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5904 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5905 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5906 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5907 // Tag FIELD_PLUG_TYPE: Charging plug type
5908 ACTION_CHARGE = 1417;
5909
5910 // Tag used to determine battery level when device started charging
5911 FIELD_BATTERY_LEVEL_START = 1418;
5912
5913 // Tag used to determine battery level when device ended charging
5914 FIELD_BATTERY_LEVEL_END = 1419;
5915
5916 // Tag used to determine length of charging
5917 FIELD_CHARGING_DURATION_MILLIS = 1420;
5918
5919 // Tag used to determine what type of charging was started/ended
5920 // 1 = Plugged AC
5921 // 2 = Plugged USB
5922 // 3 = Wireless
5923 FIELD_PLUG_TYPE = 1421;
5924
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005925 // ACTION: USB-C Connector connected.
5926 // CATEGORY: OTHER
5927 // OS: P
5928 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5929
5930 // ACTION: USB-C Connector disconnected.
5931 // CATEGORY: OTHER
5932 // OS: P
5933 // uses FIELD_DURATION_MILLIS for connected duration
5934 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5935
5936 // ACTION: USB-C Audio device connected
5937 // CATEGORY: OTHER
5938 // OS: P
5939 ACTION_USB_AUDIO_CONNECTED = 1424;
5940
5941 // FIELD: VIDPID of connected USB Audio device
5942 // CATEGORY: OTHER
5943 // OS: P
5944 FIELD_USB_AUDIO_VIDPID = 1425;
5945
5946 // ACTION: USB-C Audio device disconnected
5947 // CATEGORY: OTHER
5948 // OS: P
5949 // use FIELD_DURATION_MILLIS for time
5950 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5951
5952 // ACTION: Hardware failure event
5953 // CATEGORY: OTHER
5954 // OS: P
5955 ACTION_HARDWARE_FAILED = 1427;
5956
5957 // FIELD: Hardware failure category
5958 // CATEGORY: OTHER
5959 // OS: P
5960 // Uses enum HardwareType
5961 FIELD_HARDWARE_TYPE = 1428;
5962
5963 // FIELD: Hardware failure category
5964 // CATEGORY: OTHER
5965 // OS: P
5966 // Uses enum HardwareFailureCode
5967 FIELD_HARDWARE_FAILURE_CODE = 1429;
5968
5969 // ACTION: Physical drop event
5970 // CATEGORY: OTHER
5971 // OS: P
5972 // use FIELD_DURATION_MILLIS for time
5973 ACTION_PHYSICAL_DROP = 1430;
5974
5975 // FIELD: Confidence in detection of drop, in integer percentage.
5976 // CATEGORY: OTHER
5977 // OS: P
5978 FIELD_CONFIDENCE_PERCENT = 1431;
5979
5980 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5981 // CATEGORY: OTHER
5982 // OS: P
5983 FIELD_ACCEL_MILLI_G = 1432;
5984
5985 // ACTION: Battery health snapshot
5986 // CATEGORY: OTHER
5987 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005988 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005989 ACTION_BATTERY_HEALTH = 1433;
5990
5991 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5992 // CATEGORY: OTHER
5993 // OS: P
5994 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5995
Andrew Chantc03bc632018-05-18 10:52:00 -07005996 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005997 // CATEGORY: OTHER
5998 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005999 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006000
Andrew Chantc03bc632018-05-18 10:52:00 -07006001 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006002 // CATEGORY: OTHER
6003 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006004 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006005
Andrew Chantc03bc632018-05-18 10:52:00 -07006006 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006007 // CATEGORY: OTHER
6008 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006009 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006010
Andrew Chantc03bc632018-05-18 10:52:00 -07006011 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006012 // fractional threshold of full capacity.
6013 // CATEGORY: OTHER
6014 // OS: P
6015 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6016
Andrew Chantc03bc632018-05-18 10:52:00 -07006017 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6018 // beyond a fractional threshold of full
6019 // capacity. A comma-separated string of
6020 // buckets. If there are eight buckets,
6021 // each bucket represents charging to n/8
6022 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006023 // CATEGORY: OTHER
6024 // OS: P
6025 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6026
Beverly019d6f62018-05-15 16:16:54 -04006027 // ACTION: Hush gesture - volume up + power button
6028 // CATEGORY: GLOBAL_SYSTEM_UI
6029 // OS: P
6030 ACTION_HUSH_GESTURE = 1440;
6031
Petri Gynther915e9442018-05-18 22:59:50 -07006032 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6033 // offload
6034 // CATEGORY: SETTINGS
6035 // OS: P
6036 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6037
Andrew Chantc03bc632018-05-18 10:52:00 -07006038 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6039 // reported aggregated per day when > 0.
6040 // CATEGORY: OTHER
6041 // OS: P
6042 ACTION_SLOW_IO = 1442;
6043
6044 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6045 // The value is an integer from the enum IoOperation.
6046 // CATEGORY: OTHER
6047 // OS: P
6048 FIELD_IO_OPERATION_TYPE = 1443;
6049
6050 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6051 // over the past 24hr (reported only if > 0).
6052 // CATEGORY: OTHER
6053 // OS: P
6054 FIELD_IO_OPERATION_COUNT = 1444;
6055
6056 // ACTION: Speaker Imedance - last recorded speaker impedance.
6057 // reported max once per 24hr.
6058 // CATEGORY: OTHER
6059 // OS: P
6060 ACTION_SPEAKER_IMPEDANCE = 1445;
6061
6062 // FIELD: Speaker Impedance in milliohms.
6063 // CATEGORY: OTHER
6064 // OS: P
6065 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6066
6067 // FIELD: Speaker Location - identifies one of several speakers on a device.
6068 // CATEGORY: OTHER
6069 // OS: P
6070 FIELD_SPEAKER_LOCATION = 1447;
6071
6072 // FIELD: Instantaneous battery resistance in microohms.
6073 // CATEGORY: OTHER
6074 // OS: P
6075 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6076
6077 // FIELD: Instantaneous battery current - in microamps.
6078 // CATEGORY: OTHER
6079 // OS: P
6080 FIELD_BATTERY_CURRENT_UA = 1449;
6081
6082 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6083 // board.
6084 // CATEGORY: OTHER
6085 // OS: P
6086 FIELD_HARDWARE_LOCATION = 1450;
6087
6088 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6089 // action is logged after the subsequent boot.
6090 // CATEGORY: OTHER
6091 // OS: P
6092 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6093
Felipe Lemef61ba5c2018-05-21 11:18:46 -07006094 // FIELD: Flags used on autofill-related metrics
6095 // OS: P
6096 FIELD_AUTOFILL_FLAGS = 1452;
6097
6098 // Tag used when the service returned an authenticated dataset or response.
6099 // Used to replace the following individual metrics, which now are logged as the value of this
6100 // field in the AUTOFILL_REQUEST metric:
6101 // - AUTOFILL_AUTHENTICATED;
6102 // - AUTOFILL_DATASET_AUTHENTICATED
6103 // - AUTOFILL_INVALID_AUTHENTICATION
6104 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6105 // OS: P
6106 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6107
6108 // FIELD: Index of the autofill request inside of a session.
6109 // OS: P
6110 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6111
6112 // FIELD: Number of requests made to an autofill service during a session.
6113 // OS: P
6114 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6115
Felipe Lemece3ae872018-05-24 10:41:48 -07006116 // FIELD: Id of the autofill session associated with this metric.
6117 // OS: P
6118 FIELD_AUTOFILL_SESSION_ID = 1456;
6119
Bill Lin32ed3d62018-10-02 18:10:09 +08006120 // FIELD: Device USB overheat alarm trigger.
6121 // CATEGORY: GLOBAL_SYSTEM_UI
6122 // OS: P
6123 POWER_OVERHEAT_ALARM = 1457;
6124
Julia Reynoldsfdaa6492018-06-18 09:29:19 -04006125 // NOTIFICATION_SINCE_INTERRUPTION_MILLIS added to P
6126 // NOTIFICATION_INTERRUPTION added to P
6127
Beverlybf16c142017-11-27 16:21:34 -05006128 // ---- End P Constants, all P constants go above this line ----
Julia Reynoldsfdaa6492018-06-18 09:29:19 -04006129
6130 // Time since this notification last interrupted (visibly or audible) the user
6131 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6132
6133 // OPEN: Notification interrupted the user, either audibly or visually.
6134 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6135 // CATEGORY: NOTIFICATION
6136 NOTIFICATION_INTERRUPTION = 1501;
6137
Michal Karpinski3eab9512018-07-20 15:32:00 +01006138 // OPEN: Settings
6139 // CATEGORY: SETTINGS
6140 // OS: Q
6141 SETTINGS_HOMEPAGE = 1502;
6142
6143 // OPEN: Settings > Create shortcut(widget)
6144 // CATEGORY: SETTINGS
6145 // OS: Q
6146 SETTINGS_CREATE_SHORTCUT = 1503;
6147
6148 // ACTION: Authenticate using fingerprint
6149 // CATEGORY: SETTINGS
6150 // OS: Q
6151 ACTION_FACE_AUTH = 1504;
6152
6153 // ACTION: Add fingerprint > Enroll fingerprint
6154 // CATEGORY: SETTINGS
6155 // OS: Q
6156 ACTION_FACE_ENROLL = 1505;
6157
6158 // OPEN: Face Enroll introduction
6159 // CATEGORY: SETTINGS
6160 // OS: Q
6161 FACE_ENROLL_INTRO = 1506;
6162
6163 // OPEN: Face Enroll introduction
6164 // CATEGORY: SETTINGS
6165 // OS: Q
6166 FACE_ENROLL_ENROLLING = 1507;
6167
6168 // OPEN: Face Enroll introduction
6169 // CATEGORY: SETTINGS
6170 // OS: Q
6171 FACE_ENROLL_FINISHED = 1508;
6172
6173 // OPEN: Face Enroll sidecar
6174 // CATEGORY: SETTINGS
6175 // OS: Q
6176 FACE_ENROLL_SIDECAR = 1509;
6177
6178 // OPEN: Settings > Add face > Error dialog
6179 // OS: Q
6180 DIALOG_FACE_ERROR = 1510;
6181
6182 // OPEN: Settings > Security > Face
6183 // CATEGORY: SETTINGS
6184 // OS: Q
6185 FACE = 1511;
6186
6187 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6188 // CATEGORY: SETTINGS
6189 // OS: Q
6190 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6191
6192 // ACTION: Activity start
6193 // CATEGORY: OTHER
6194 // OS: Q (will also ship in PQ1A)
6195 ACTION_ACTIVITY_START = 1513;
6196
6197 // Tagged data for ACTION_ACTIVITY_START.
6198 // FIELD: Calling UID
6199 // CATEGORY: OTHER
6200 // OS: Q (will also ship in PQ1A)
6201 FIELD_CALLING_UID = 1514;
6202
6203 // Tagged data for ACTION_ACTIVITY_START.
6204 // FIELD: Calling package name
6205 // CATEGORY: OTHER
6206 // OS: Q (will also ship in PQ1A)
6207 FIELD_CALLING_PACKAGE_NAME = 1515;
6208
6209 // Tagged data for ACTION_ACTIVITY_START.
6210 // FIELD: Calling UID proc state
6211 // CATEGORY: OTHER
6212 // OS: Q (will also ship in PQ1A)
6213 FIELD_CALLING_UID_PROC_STATE = 1516;
6214
6215 // Tagged data for ACTION_ACTIVITY_START.
6216 // FIELD: Calling UID has any visible window
6217 // CATEGORY: OTHER
6218 // OS: Q (will also ship in PQ1A)
6219 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6220
6221 // Tagged data for ACTION_ACTIVITY_START.
6222 // FIELD: Real calling UID
6223 // CATEGORY: OTHER
6224 // OS: Q (will also ship in PQ1A)
6225 FIELD_REAL_CALLING_UID = 1518;
6226
6227 // Tagged data for ACTION_ACTIVITY_START.
6228 // FIELD: Real calling UID proc state
6229 // CATEGORY: OTHER
6230 // OS: Q (will also ship in PQ1A)
6231 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6232
6233 // Tagged data for ACTION_ACTIVITY_START.
6234 // FIELD: Real calling UID has any visible window
6235 // CATEGORY: OTHER
6236 // OS: Q (will also ship in PQ1A)
6237 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6238
6239 // Tagged data for ACTION_ACTIVITY_START.
6240 // FIELD: Target UID
6241 // CATEGORY: OTHER
6242 // OS: Q (will also ship in PQ1A)
6243 FIELD_TARGET_UID = 1521;
6244
6245 // Tagged data for ACTION_ACTIVITY_START.
6246 // FIELD: Target UID package name
6247 // CATEGORY: OTHER
6248 // OS: Q (will also ship in PQ1A)
6249 FIELD_TARGET_PACKAGE_NAME = 1522;
6250
6251 // Tagged data for ACTION_ACTIVITY_START.
6252 // FIELD: Target UID proc state
6253 // CATEGORY: OTHER
6254 // OS: Q (will also ship in PQ1A)
6255 FIELD_TARGET_UID_PROC_STATE = 1523;
6256
6257 // Tagged data for ACTION_ACTIVITY_START.
6258 // FIELD: Target UID has any visible window
6259 // CATEGORY: OTHER
6260 // OS: Q (will also ship in PQ1A)
6261 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6262
6263 // Tagged data for ACTION_ACTIVITY_START.
6264 // FIELD: Target doze whitelist tag
6265 // CATEGORY: OTHER
6266 // OS: Q (will also ship in PQ1A)
6267 FIELD_TARGET_WHITELIST_TAG = 1525;
6268
6269 // Tagged data for ACTION_ACTIVITY_START.
6270 // FIELD: Target short component name
6271 // CATEGORY: OTHER
6272 // OS: Q (will also ship in PQ1A)
6273 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6274
6275 // Tagged data for ACTION_ACTIVITY_START.
6276 // FIELD: Coming from pending intent
6277 // CATEGORY: OTHER
6278 // OS: Q (will also ship in PQ1A)
6279 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6280
6281 // Tagged data for ACTION_ACTIVITY_START.
6282 // FIELD: Intent action
6283 // CATEGORY: OTHER
6284 // OS: Q (will also ship in PQ1A)
6285 FIELD_INTENT_ACTION = 1528;
6286
6287 // Tagged data for ACTION_ACTIVITY_START.
6288 // FIELD: Caller app process record process name
6289 // CATEGORY: OTHER
6290 // OS: Q (will also ship in PQ1A)
6291 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6292
6293 // Tagged data for ACTION_ACTIVITY_START.
6294 // FIELD: Caller app process record current proc state
6295 // CATEGORY: OTHER
6296 // OS: Q (will also ship in PQ1A)
6297 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6298
6299 // Tagged data for ACTION_ACTIVITY_START.
6300 // FIELD: Caller app process record has client activities
6301 // CATEGORY: OTHER
6302 // OS: Q (will also ship in PQ1A)
6303 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6304
6305 // Tagged data for ACTION_ACTIVITY_START.
6306 // FIELD: Caller app process record has foreground services
6307 // CATEGORY: OTHER
6308 // OS: Q (will also ship in PQ1A)
6309 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6310
6311 // Tagged data for ACTION_ACTIVITY_START.
6312 // FIELD: Caller app process record has foreground activities
6313 // CATEGORY: OTHER
6314 // OS: Q (will also ship in PQ1A)
6315 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6316
6317 // Tagged data for ACTION_ACTIVITY_START.
6318 // FIELD: Caller app process record has top UI
6319 // CATEGORY: OTHER
6320 // OS: Q (will also ship in PQ1A)
6321 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6322
6323 // Tagged data for ACTION_ACTIVITY_START.
6324 // FIELD: Caller app process record has overlay UI
6325 // CATEGORY: OTHER
6326 // OS: Q (will also ship in PQ1A)
6327 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6328
6329 // Tagged data for ACTION_ACTIVITY_START.
6330 // FIELD: Caller app process record pending UI clean
6331 // CATEGORY: OTHER
6332 // OS: Q (will also ship in PQ1A)
6333 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6334
6335 // Tagged data for ACTION_ACTIVITY_START.
6336 // FIELD: Millis since caller app's process record last interaction event
6337 // CATEGORY: OTHER
6338 // OS: Q (will also ship in PQ1A)
6339 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6340
6341 // Tagged data for ACTION_ACTIVITY_START.
6342 // FIELD: Millis since caller app's process record fg interaction
6343 // CATEGORY: OTHER
6344 // OS: Q (will also ship in PQ1A)
6345 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6346
6347 // Tagged data for ACTION_ACTIVITY_START.
6348 // FIELD: Millis since caller app's process record last became unimportant
6349 // CATEGORY: OTHER
6350 // OS: Q (will also ship in PQ1A)
6351 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6352
6353 // Tagged data for ACTION_ACTIVITY_START.
6354 // FIELD: Activity record launch mode
6355 // CATEGORY: OTHER
6356 // OS: Q (will also ship in PQ1A)
6357 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6358
6359 // Tagged data for ACTION_ACTIVITY_START.
6360 // FIELD: Activity record target activity
6361 // CATEGORY: OTHER
6362 // OS: Q (will also ship in PQ1A)
6363 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6364
6365 // Tagged data for ACTION_ACTIVITY_START.
6366 // FIELD: Activity record flags
6367 // CATEGORY: OTHER
6368 // OS: Q (will also ship in PQ1A)
6369 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6370
6371 // Tagged data for ACTION_ACTIVITY_START.
6372 // FIELD: Activity record real activity
6373 // CATEGORY: OTHER
6374 // OS: Q (will also ship in PQ1A)
6375 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6376
6377 // Tagged data for ACTION_ACTIVITY_START.
6378 // FIELD: Activity record short component name
6379 // CATEGORY: OTHER
6380 // OS: Q (will also ship in PQ1A)
6381 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6382
6383 // Tagged data for ACTION_ACTIVITY_START.
6384 // FIELD: Activity record process name
6385 // CATEGORY: OTHER
6386 // OS: Q (will also ship in PQ1A)
6387 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6388
6389 // Tagged data for ACTION_ACTIVITY_START.
6390 // FIELD: Activity record is fullscreen
6391 // CATEGORY: OTHER
6392 // OS: Q (will also ship in PQ1A)
6393 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6394
6395 // Tagged data for ACTION_ACTIVITY_START.
6396 // FIELD: Activity record is no display
6397 // CATEGORY: OTHER
6398 // OS: Q (will also ship in PQ1A)
6399 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6400
6401 // Tagged data for ACTION_ACTIVITY_START.
6402 // FIELD: Millis since activity was last visible
6403 // CATEGORY: OTHER
6404 // OS: Q (will also ship in PQ1A)
6405 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6406
6407 // Tagged data for ACTION_ACTIVITY_START.
6408 // FIELD: Activity record's resultTo packageName
6409 // CATEGORY: OTHER
6410 // OS: Q (will also ship in PQ1A)
6411 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6412
6413 // Tagged data for ACTION_ACTIVITY_START.
6414 // FIELD: Activity record's resultTo shortComponentName
6415 // CATEGORY: OTHER
6416 // OS: Q (will also ship in PQ1A)
6417 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6418
6419 // Tagged data for ACTION_ACTIVITY_START.
6420 // FIELD: Activity record is visible
6421 // CATEGORY: OTHER
6422 // OS: Q (will also ship in PQ1A)
6423 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6424
6425 // Tagged data for ACTION_ACTIVITY_START.
6426 // FIELD: Activity record is visible ignoring keyguard
6427 // CATEGORY: OTHER
6428 // OS: Q (will also ship in PQ1A)
6429 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6430
6431 // Tagged data for ACTION_ACTIVITY_START.
6432 // FIELD: Millis since activity's last launch
6433 // CATEGORY: OTHER
6434 // OS: Q (will also ship in PQ1A)
6435 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
6436
Shaotang Liebffdbd2018-07-04 14:03:25 +08006437 // OPEN: Emergency dialer opened
6438 // CLOSE: Emergency dialer closed
6439 // SUBTYPE: The entry type that user opened emergency dialer
6440 // CATEGORY: EMERGENCY_DIALER
6441 // OS: Q
6442 EMERGENCY_DIALER = 1558;
6443
6444 // FIELD: The screen is currently locked
6445 // CATEGORY: EMERGENCY_DIALER
6446 // OS: Q
6447 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559;
6448
6449 // FIELD: Bit flag indicating the actions performed by user
6450 // CATEGORY: EMERGENCY_DIALER
6451 // OS: Q
6452 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560;
6453
6454 // FIELD: The duration user stayed at emergency dialer
6455 // CATEGORY: EMERGENCY_DIALER
6456 // OS: Q
6457 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561;
6458
6459 // ACTION: Making call via emergency dialer
6460 // SUBTYPE: The UI that user made phone call
6461 // CATEGORY: EMERGENCY_DIALER
6462 // OS: Q
6463 EMERGENCY_DIALER_MAKE_CALL = 1562;
6464
6465 // FIELD: The phone number type of a call user made
6466 // CATEGORY: EMERGENCY_DIALER
6467 // OS: Q
6468 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6469
6470 // FIELD: There is a shortcut for the phone number
6471 // CATEGORY: EMERGENCY_DIALER
6472 // OS: Q
6473 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564;
6474
6475 // FIELD: The phone is in pocket while using emergency dialer
6476 // CATEGORY: EMERGENCY_DIALER
6477 // OS: Q
6478 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565;
6479
6480 // ACTION: The second tap on emergency shortcut to make a phone call
6481 // CATEGORY: EMERGENCY_DIALER
6482 // OS: Q
6483 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566;
6484
6485 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6486 // CATEGORY: EMERGENCY_DIALER
6487 // OS: Q
6488 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567;
6489
Shaotang Li8af3a242018-08-02 11:18:00 +08006490 // OPEN: Power menu is opened
6491 // CATEGORY: GLOBAL_SYSTEM_UI
6492 // OS: Q
6493 POWER_MENU = 1568;
6494
6495 // ACTION: User tapped emergency dialer icon in the power menu.
6496 // CATEGORY: GLOBAL_SYSTEM_UI
6497 // OS: Q
6498 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569;
6499
Julia Reynoldsfdaa6492018-06-18 09:29:19 -04006500 // ---- End Q Constants, all Q constants go above this line ----
6501
Adrian Roos159ef7b2016-02-25 11:58:32 -08006502 // Add new aosp constants above this line.
6503 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05006504 }
6505}