blob: 1c701d7c73912be34b79d612c08d69792372c3c5 [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
944 // ACTION: App notification settings > Block Notifications
945 // CATEGORY: SETTINGS
946 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500947 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // ACTION: Notification shade > Dismiss all button
950 // CATEGORY: NOTIFICATION
951 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500952 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500953
954 // OPEN: QS Do Not Disturb detail panel
955 // CATEGORY: QUICK_SETTINGS
956 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500957 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500958
959 // OPEN: QS Bluetooth detail panel
960 // CATEGORY: QUICK_SETTINGS
961 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500962 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500963
964 // OPEN: QS Cast detail panel
965 // CATEGORY: QUICK_SETTINGS
966 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500967 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500968
969 // OPEN: QS Wi-Fi detail panel
970 // CATEGORY: QUICK_SETTINGS
971 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500972 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500973
974 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
975 // SUBTYPE: 0 is off, 1 is on
976 // CATEGORY: QUICK_SETTINGS
977 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500978 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500979
980 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
981 // SUBTYPE: 0 is off, 1 is on
982 // CATEGORY: QUICK_SETTINGS
983 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500984 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500985
986 // ACTION: QS Cellular detail panel > Cellular toggle
987 // SUBTYPE: 0 is off, 1 is on
988 // CATEGORY: QUICK_SETTINGS
989 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500990 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // ACTION: QS User list panel > Select different user
993 // CATEGORY: QUICK_SETTINGS
994 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500995 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500996
997 // ACTION: QS Cast detail panel > Select cast device
998 // CATEGORY: QUICK_SETTINGS
999 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001000 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001001
1002 // ACTION: QS Cast detail panel > Disconnect cast device
1003 // CATEGORY: QUICK_SETTINGS
1004 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001005 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001006
1007 // ACTION: Settings > Bluetooth > Toggle
1008 // SUBTYPE: 0 is off, 1 is on
1009 // CATEGORY: SETTINGS
1010 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001011 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001012
1013 // ACTION: Settings > Bluetooth > Overflow > Refresh
1014 // CATEGORY: SETTINGS
1015 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1019 // CATEGORY: SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: Settings > Bluetooth > Overflow > Show received files
1024 // CATEGORY: SETTINGS
1025 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: QS DND details panel > Increase / Decrease exit time
1029 // SUBTYPE: true is increase, false is decrease
1030 // CATEGORY: QUICK_SETTINGS
1031 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001032 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001033
1034 // ACTION: QS DND details panel > [Exit condition]
1035 // CATEGORY: QUICK_SETTINGS
1036 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001037 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // ACTION: QS DND details panel > [DND mode]
1040 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1041 // CATEGORY: QUICK_SETTINGS
1042 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001043 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001044
1045 // ACTION: QS DND detail panel > DND toggle
1046 // SUBTYPE: 0 is off, 1 is on
1047 // CATEGORY: QUICK_SETTINGS
1048 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001049 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001050
1051 // ACTION: DND Settings > Priority only allows > Reminder toggle
1052 // SUBTYPE: 0 is off, 1 is on
1053 // CATEGORY: SETTINGS
1054 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001055 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001056
1057 // ACTION: DND Settings > Priority only allows > Event toggle
1058 // SUBTYPE: 0 is off, 1 is on
1059 // CATEGORY: SETTINGS
1060 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001061 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001062
1063 // ACTION: DND Settings > Priority only allows > Messages
1064 // SUBTYPE: 0 is off, 1 is on
1065 // CATEGORY: SETTINGS
1066 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001067 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001068
1069 // ACTION: DND Settings > Priority only allows > Calls
1070 // SUBTYPE: 0 is off, 1 is on
1071 // CATEGORY: SETTINGS
1072 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001073 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001074
1075 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1076 // SUBTYPE: 0 is off, 1 is on
1077 // CATEGORY: SETTINGS
1078 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // ACTION: DND Settings > Automatic rules > Add rule
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // ACTION: DND Settings > Automatic rules > Add rule > OK
1087 // CATEGORY: SETTINGS
1088 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001089 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001090
1091 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1092 // CATEGORY: SETTINGS
1093 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001094 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001095
1096 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1097 // CATEGORY: SETTINGS
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1102 // SUBTYPE: 0 is off, 1 is on
1103 // CATEGORY: SETTINGS
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Settings > More > Airplane mode toggle
1108 // SUBTYPE: 0 is off, 1 is on
1109 // CATEGORY: SETTINGS
1110 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001111 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001112
1113 // ACTION: Settings > Data usage > Cellular data toggle
1114 // SUBTYPE: 0 is off, 1 is on
1115 // CATEGORY: SETTINGS
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // OPEN: Settings > Sound & notification > Notification access
1120 // CATEGORY: SETTINGS
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // OPEN: Settings > Sound & notification > Do Not Disturb access
1125 // CATEGORY: SETTINGS
1126 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001127 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001128
1129 // OPEN: Settings > Apps > Configure apps > Default Apps
1130 // CATEGORY: SETTINGS
1131 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001132 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001133
1134 // OPEN: Settings > Internal storage > Apps storage
1135 // CATEGORY: SETTINGS
1136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001137 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001138
1139 // OPEN: Settings > Security > Usage access
1140 // CATEGORY: SETTINGS
1141 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001142 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // OPEN: Settings > Battery > Battery optimization
1145 // CATEGORY: SETTINGS
1146 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001147 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001148
1149 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001150 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // ACTION: Lockscreen > Unlock gesture
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001155 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // ACTION: Lockscreen > Pull shade open
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Lockscreen > Tap on lock, shows hint
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001165 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // ACTION: Lockscreen > Camera
1168 // CATEGORY: GLOBAL_SYSTEM_UI
1169 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001170 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // ACTION: Lockscreen > Dialer
1173 // CATEGORY: GLOBAL_SYSTEM_UI
1174 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001175 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // ACTION: Lockscreen > Tap on lock, locks phone
1178 // CATEGORY: GLOBAL_SYSTEM_UI
1179 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001180 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001181
1182 // ACTION: Lockscreen > Tap on notification, false touch rejection
1183 // CATEGORY: GLOBAL_SYSTEM_UI
1184 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001185 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // ACTION: Lockscreen > Swipe down to open quick settings
1188 // CATEGORY: GLOBAL_SYSTEM_UI
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // ACTION: Swipe down to open quick settings when unlocked
1193 // CATEGORY: GLOBAL_SYSTEM_UI
1194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001195 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001196
1197 // ACTION: Notification shade > Tap to open quick settings
1198 // CATEGORY: GLOBAL_SYSTEM_UI
1199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001200 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // OPEN: Lockscreen
1203 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1204 // CATEGORY: GLOBAL_SYSTEM_UI
1205 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001206 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1209 // CATEGORY: GLOBAL_SYSTEM_UI
1210 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001211 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // OPEN: Screen turned on
1214 // SUBTYPE: 2 is user action
1215 // CATEGORY: GLOBAL_SYSTEM_UI
1216 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001217 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // OPEN: Notification caused sound, vibration, and/or LED blink
1220 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1221 // CATEGORY: NOTIFICATION
1222 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001223 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Lockscreen > Emergency Call button
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1231 // CATEGORY: SETTINGS
1232 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001233 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001234
1235 // OPEN: Settings > Memory
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Settings > Display > When device is rotated
1241 // CATEGORY: SETTINGS
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Long press on notification to view controls
1246 // CATEGORY: NOTIFICATION
1247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001248 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // ACTION: Notificatoin controls > Info button
1251 // CATEGORY: NOTIFICATION
1252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001253 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // ACTION: Notification controls > Settings button
1256 // CATEGORY: NOTIFICATION
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // OPEN: Volume Dialog (with hardware buttons)
1261 // CATEGORY: GLOBAL_SYSTEM_UI
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1266 // CATEGORY: GLOBAL_SYSTEM_UI
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // ACTION: Volume dialog > Adjust volume slider
1271 // SUBTYPE: volume level (0-7)
1272 // CATEGORY: GLOBAL_SYSTEM_UI
1273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001274 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001275
1276 // ACTION: Volume dialog > Select non-active stream
1277 // SUBTYPE: stream (defined in AudioSystem.java)
1278 // CATEGORY: GLOBAL_SYSTEM_UI
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // ACTION: Adjust volume with hardware key
1283 // SUBTYPE: volume level (0-7)
1284 // CATEGORY: GLOBAL_SYSTEM_UI
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001287
1288 // ACTION: Volume dialog > Mute a stream by tapping icon
1289 // SUBTYPE: mute is 1, audible is 2
1290 // CATEGORY: GLOBAL_SYSTEM_UI
1291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001292 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001293
1294 // ACTION: Volume dialog > Change ringer mode by tapping icon
1295 // SUBTYPE: 2 is audible, 3 is vibrate
1296 // CATEGORY: GLOBAL_SYSTEM_UI
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // ACTION: Chooser shown (share target, file open, etc.)
1301 // CATEGORY: GLOBAL_SYSTEM_UI
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // ACTION: Chooser > User taps an app target
1306 // SUBTYPE: Index of target
1307 // CATEGORY: GLOBAL_SYSTEM_UI
1308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001309 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001310
1311 // ACTION: Chooser > User taps a service target
1312 // SUBTYPE: Index of target
1313 // CATEGORY: GLOBAL_SYSTEM_UI
1314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001315 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001316
1317 // ACTION: Chooser > User taps a standard target
1318 // SUBTYPE: Index of target
1319 // CATEGORY: GLOBAL_SYSTEM_UI
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // ACTION: QS Brightness Slider (with auto brightness disabled)
1324 // SUBTYPE: slider value
1325 // CATEGORY: QUICK_SETTINGS
1326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001327 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001328
1329 // ACTION: QS Brightness Slider (with auto brightness enabled)
1330 // SUBTYPE: slider value
1331 // CATEGORY: QUICK_SETTINGS
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: Settings > Display > Brightness Slider
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001339
Christine Franks47175c32017-03-14 10:21:25 -07001340 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001341 // CATEGORY: SETTINGS
1342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001343 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // OPEN: Display has entered dream mode
1346 // CATEGORY: GLOBAL_SYSTEM_UI
1347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001348 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001349
1350 // OPEN: Display has entered ambient notification mode
1351 // CATEGORY: GLOBAL_SYSTEM_UI
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // OPEN: Overview
1356 // CATEGORY: GLOBAL_SYSTEM_UI
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // OPEN: Settings > About phone > Legal information
1361 // CATEGORY: SETTINGS
1362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001363 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001364
1365 // OPEN: Settings > Search > Perform search
1366 // CATEGORY: SETTINGS
1367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001368 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001369
1370 // OPEN: Settings > System UI Tuner
1371 // CATEGORY: SETTINGS
1372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001373 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001374
1375 // OPEN: Settings > System UI Tuner > Quick Settings
1376 // CATEGORY: SETTINGS
1377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001378 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001379
1380 // OPEN: Settings > System UI Tuner > Demo mode
1381 // CATEGORY: SETTINGS
1382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001383 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1386 // PACKAGE: Tile
1387 // CATEGORY: SETTINGS
1388 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001389 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1392 // PACKAGE: Tile
1393 // CATEGORY: SETTINGS
1394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001395 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001396
1397 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1398 // PACKAGE: Tile
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1404 // PACKAGE: Icon
1405 // CATEGORY: SETTINGS
1406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001407 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001408
1409 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1410 // PACKAGE: Icon
1411 // CATEGORY: SETTINGS
1412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001413 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001414
1415 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1416 // SUBTYPE: false is disabled, true is enabled
1417 // CATEGORY: SETTINGS
1418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001419 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001420
1421 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1422 // SUBTYPE: false is disabled, true is enabled
1423 // CATEGORY: SETTINGS
1424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001425 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001426
1427 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1428 // SUBTYPE: 0 is disabled, 1 is enabled
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Settings > Developer options > Inactive apps
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // ACTION: Long press home to bring up assistant
1439 // CATEGORY: GLOBAL_SYSTEM_UI
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // OPEN: Fingerprint Enroll > Find Sensor
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // OPEN: Fingerprint Enroll introduction
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // OPEN: Fingerprint Enroll onboarding
1464 // CATEGORY: SETTINGS
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // OPEN: Fingerprint Enroll > Let's Start!
1469 // CATEGORY: SETTINGS
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // OPEN: Fingerprint Enroll SUW > Let's Start!
1474 // CATEGORY: SETTINGS
1475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001476 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001477
1478 // OPEN: Fingerprint Enroll SUW > Find Sensor
1479 // CATEGORY: SETTINGS
1480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001481 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001486 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // OPEN: Fingerprint Enroll SUW introduction
1489 // CATEGORY: SETTINGS
1490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001491 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // OPEN: Fingerprint Enroll SUW onboarding
1494 // CATEGORY: SETTINGS
1495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001496 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001497
1498 // ACTION: Add fingerprint > Enroll fingerprint
1499 // CATEGORY: SETTINGS
1500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001501 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001502
1503 // ACTION: Authenticate using fingerprint
1504 // CATEGORY: SETTINGS
1505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001506 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001507
1508 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1509 // CATEGORY: SETTINGS
1510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001511 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001512
1513 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1514 // CATEGORY: SETTINGS
1515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001516 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001517
1518 // ACTION: Double tap camera shortcut
1519 // CATEGORY: GLOBAL_SYSTEM_UI
1520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001521 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001522
1523 // ACTION: Double twist camera shortcut
1524 // CATEGORY: GLOBAL_SYSTEM_UI
1525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001526 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001527
1528 // OPEN: QS Work Mode tile shown
1529 // ACTION: QS Work Mode tile tapped
1530 // SUBTYPE: 0 is off, 1 is on
1531 // CATEGORY: QUICK_SETTINGS
1532 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001533 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001534
1535 // OPEN: Settings > Developer Options > Background Check
1536 // CATEGORY: SETTINGS
1537 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001538 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001539
1540 // OPEN: QS Lock tile shown
1541 // ACTION: QS Lock tile tapped
1542 // SUBTYPE: 0 is off, 1 is on
1543 // CATEGORY: QUICK_SETTINGS
1544 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001545 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001546
1547 // OPEN: QS User Tile shown
1548 // CATEGORY: QUICK_SETTINGS
1549 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001550 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001551
1552 // OPEN: QS Battery tile shown
1553 // CATEGORY: QUICK_SETTINGS
1554 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001555 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001556
1557 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1558 // CATEGORY: SETTINGS
1559 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001560 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001561
1562 // ACTION: Visual interruptions > No screen interuptions toggle
1563 // SUBTYPE: 0 is off, 1 is on
1564 // CATEGORY: SETTINGS
1565 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001566 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001567
1568 // ACTION: Visual interruptions > No notification light toggle
1569 // SUBTYPE: 0 is off, 1 is on
1570 // CATEGORY: SETTINGS
1571 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001572 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001573
Julia Reynolds005c8b92017-08-24 10:35:53 -04001574 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001575 // CATEGORY: SETTINGS
1576 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001577 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001578
1579 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1580 // PACKAGE: Selected SMS app
1581 // CATEGORY: SETTINGS
1582 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001583 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001584
1585 // OPEN: QS Color modification tile shown
1586 // ACTION: QS Color modification tile tapped
1587 // SUBTYPE: 0 is off, 1 is on
1588 // CATEGORY: QUICK_SETTINGS
1589 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001590 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001591
1592 // OPEN: QS Custom tile shown
1593 // ACTION: QS Work Mode tile tapped
1594 // CATEGORY: QUICK_SETTINGS
1595 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001596 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001597
1598 // ACTION: Visual interruptions > Never turn off the screen toggle
1599 // SUBTYPE: 0 is off, 1 is on
1600 // CATEGORY: SETTINGS
1601 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001602 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // ACTION: Overview > Long-press task, drag to enter split-screen
1605 // CATEGORY: GLOBAL_SYSTEM_UI
1606 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001607 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: In App > Long-press Overview button to enter split-screen
1610 // CATEGORY: GLOBAL_SYSTEM_UI
1611 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001612 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: In App > Swipe Overview button to enter split-screen
1615 // CATEGORY: GLOBAL_SYSTEM_UI
1616 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001617 ACTION_WINDOW_DOCK_SWIPE = 272;
1618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // ACTION: Launch profile-specific app > Confirm credentials
1620 // CATEGORY: GLOBAL_SYSTEM_UI
1621 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001622 PROFILE_CHALLENGE = 273;
1623
Chris Wren7c516842016-03-01 16:44:32 -05001624 // OPEN: QS Battery detail panel
1625 // CATEGORY: GLOBAL_SYSTEM_UI
1626 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001627 QS_BATTERY_DETAIL = 274;
1628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // OPEN: Overview > History
1630 // CATEGORY: GLOBAL_SYSTEM_UI
1631 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001632 OVERVIEW_HISTORY = 275;
1633
Chris Wren7c516842016-03-01 16:44:32 -05001634 // ACTION: Overview > Page by tapping Overview button
1635 // CATEGORY: GLOBAL_SYSTEM_UI
1636 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001637 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001638
Chris Wren7c516842016-03-01 16:44:32 -05001639 // ACTION: Overview > Select app
1640 // CATEGORY: GLOBAL_SYSTEM_UI
1641 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001642 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001643
Chris Wren7c516842016-03-01 16:44:32 -05001644 // ACTION: View emergency info
1645 // CATEGORY: GLOBAL_SYSTEM_UI
1646 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001647 ACTION_VIEW_EMERGENCY_INFO = 278;
1648
Chris Wren7c516842016-03-01 16:44:32 -05001649 // ACTION: Edit emergency info activity
1650 // CATEGORY: SETTINGS
1651 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001652 ACTION_EDIT_EMERGENCY_INFO = 279;
1653
Chris Wren7c516842016-03-01 16:44:32 -05001654 // ACTION: Edit emergency info field
1655 // CATEGORY: SETTINGS
1656 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001657 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1658
Chris Wren7c516842016-03-01 16:44:32 -05001659 // ACTION: Add emergency contact
1660 // CATEGORY: SETTINGS
1661 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001662 ACTION_ADD_EMERGENCY_CONTACT = 281;
1663
Chris Wren7c516842016-03-01 16:44:32 -05001664 // ACTION: Delete emergency contact
1665 // CATEGORY: SETTINGS
1666 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001667 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1668
Chris Wren7c516842016-03-01 16:44:32 -05001669 // ACTION: Call emergency contact
1670 // CATEGORY: SETTINGS
1671 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001672 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001673
Chris Wren7c516842016-03-01 16:44:32 -05001674 // OPEN: QS Data Saver tile shown
1675 // ACTION: QS Data Saver tile tapped
1676 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001677 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001678
Robin Lee8c1306e2016-02-01 11:37:02 +00001679 // OPEN: Settings > Security > User credentials
1680 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001681 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001682 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001683
Chris Wren7c516842016-03-01 16:44:32 -05001684 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1685 // CATEGORY: GLOBAL_SYSTEM_UI
1686 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001687 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001688
1689 // Logged when the user scrolls through overview manually
1690 OVERVIEW_SCROLL = 287;
1691
1692 // Logged when the overview times out automatically selecting an app
1693 OVERVIEW_SELECT_TIMEOUT = 288;
1694
1695 // Logged when a user dismisses a task in overview
1696 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001697
1698 // Logged when the user modifying the notification importance slider.
1699 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1700
1701 // Logged when the user saves a modification to notification importance. Negative numbers
1702 // indicate the user lowered the importance; positive means they increased it.
1703 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001704
Chris Wren7c516842016-03-01 16:44:32 -05001705 // ACTION: Long-press power button, then tap "Take bug report" option.
1706 // CATEGORY: GLOBAL_SYSTEM_UI
1707 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001708 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1709
Chris Wren7c516842016-03-01 16:44:32 -05001710 // ACTION: Long-press power button, then long-press "Take bug report" option.
1711 // CATEGORY: GLOBAL_SYSTEM_UI
1712 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001713 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1714
Chris Wren7c516842016-03-01 16:44:32 -05001715 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1716 // CATEGORY: SETTINGS
1717 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001718 // Interactive bug report initiated from Settings.
1719 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1720
Chris Wren7c516842016-03-01 16:44:32 -05001721 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1722 // CATEGORY: SETTINGS
1723 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001724 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001725 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1726
Chris Wren7c516842016-03-01 16:44:32 -05001727 // ACTION: User tapped notification action to cancel a bug report
1728 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001729 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001730 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1731
Chris Wren7c516842016-03-01 16:44:32 -05001732 // ACTION: User tapped notification action to launch bug report details screen
1733 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001734 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001735 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1736
Chris Wren7c516842016-03-01 16:44:32 -05001737 // ACTION: User tapped notification action to take adition screenshot on bug report
1738 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001739 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001740 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1741
Chris Wren7c516842016-03-01 16:44:32 -05001742 // ACTION: User tapped notification to share bug report
1743 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001744 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001745 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1746
Chris Wren7c516842016-03-01 16:44:32 -05001747 // ACTION: User changed bug report name using the details screen
1748 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001749 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001750 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1751
Chris Wren7c516842016-03-01 16:44:32 -05001752 // ACTION: User changed bug report title using the details screen
1753 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001754 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001755 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1756
Chris Wren7c516842016-03-01 16:44:32 -05001757 // ACTION: User changed bug report description using the details screen
1758 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001759 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001760 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1761
Chris Wren7c516842016-03-01 16:44:32 -05001762 // ACTION: User tapped Save in the bug report details screen.
1763 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001764 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001765 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1766
Chris Wren7c516842016-03-01 16:44:32 -05001767 // ACTION: User tapped Cancel in the bug report details screen.
1768 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001769 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001770 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001771
1772 // Tuner: Open/close calibrate dialog.
1773 TUNER_CALIBRATE_DISPLAY = 305;
1774
1775 // Tuner: Open/close color and appearance.
1776 TUNER_COLOR_AND_APPEARANCE = 306;
1777
1778 // Tuner: Apply calibrate dialog.
1779 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1780
1781 // Tuner: Open/close night mode.
1782 TUNER_NIGHT_MODE = 308;
1783
1784 // Tuner: Change night mode.
1785 ACTION_TUNER_NIGHT_MODE = 309;
1786
1787 // Tuner: Change night mode auto.
1788 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1789
1790 // Tuner: Change night mode adjust dark theme.
1791 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1792
1793 // Tuner: Change night mode adjust tint.
1794 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1795
1796 // Tuner: Change night mode adjust brightness.
1797 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1798
1799 // Tuner: Change do not disturb in volume panel.
1800 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1801
1802 // Tuner: Change do not disturb volume buttons shortcut.
1803 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001804
1805 // Logs the action the user takes when an app crashed.
1806 ACTION_APP_CRASH = 316;
1807
1808 // Logs the action the user takes when an app ANR'd.
1809 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001810
1811 // Logged when a user double taps the overview button to launch the previous task
1812 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001813
1814 // Logged when we execute an app transition. This indicates the total delay from startActivity
1815 // until the app transition is starting to animate, in milliseconds.
1816 APP_TRANSITION_DELAY_MS = 319;
1817
1818 // Logged when we execute an app transition. This indicates the reason why the transition
1819 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1820 APP_TRANSITION_REASON = 320;
1821
1822 // Logged when we execute an app transition and we drew a starting window. This indicates the
1823 // delay from startActivity until the starting window was drawn.
1824 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1825
1826 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1827 // the delay from startActivity until all windows have been drawn.
1828 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1829
1830 // Logged when we execute an app transition. This indicates the component name of the current
1831 // transition.
1832 APP_TRANSITION_COMPONENT_NAME = 323;
1833
1834 // Logged when we execute an app transition. This indicates whether the process was already
1835 // running.
1836 APP_TRANSITION_PROCESS_RUNNING = 324;
1837
1838 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1839 // the transition was executed.
1840 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001841
Chris Wren38f98812016-07-13 14:28:40 -04001842 // ACTION: app requested access to a scoped directory, user granted it.
1843 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1844 // CATEGORY: GLOBAL_SYSTEM_UI
1845 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001846 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1847
Chris Wren38f98812016-07-13 14:28:40 -04001848 // ACTION: app requested access to a scoped directory, user denied it.
1849 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1850 // CATEGORY: GLOBAL_SYSTEM_UI
1851 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001852 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1853
Chris Wren38f98812016-07-13 14:28:40 -04001854 // ACTION: app requested access to a scoped directory, user granted it.
1855 // PACKAGE: app that requested access
1856 // CATEGORY: GLOBAL_SYSTEM_UI
1857 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001858 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1859
Chris Wren38f98812016-07-13 14:28:40 -04001860 // ACTION: app requested access to a scoped directory, user denied it.
1861 // PACKAGE: app that requested access.
1862 // CATEGORY: GLOBAL_SYSTEM_UI
1863 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001864 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1865
Chris Wren38f98812016-07-13 14:28:40 -04001866 // ACTION: app requested access to a directory user has already been granted
1867 // access before.
1868 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1869 // CATEGORY: GLOBAL_SYSTEM_UI
1870 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001871 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1872
Chris Wren38f98812016-07-13 14:28:40 -04001873 // ACTION: app requested access to a directory user has already been granted
1874 // access before.
1875 // PACKAGE: app that requested access.
1876 // CATEGORY: GLOBAL_SYSTEM_UI
1877 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001878 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001879
Chris Wren38f98812016-07-13 14:28:40 -04001880 // ACTION: Logged when the user slides a notification and reveals the gear
1881 // beneath it.
1882 // CATEGORY: NOTIFICATION
1883 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001884 ACTION_REVEAL_GEAR = 332;
1885
Chris Wren38f98812016-07-13 14:28:40 -04001886 // ACTION: Logged when the user taps on the gear beneath a notification.
1887 // CATEGORY: NOTIFICATION
1888 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001889 ACTION_TOUCH_GEAR = 333;
1890
Ruben Brunke24b9a62016-02-16 21:38:24 -08001891 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001892 // CATEGORY: SETTINGS
1893 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001894 VR_MANAGE_LISTENERS = 334;
1895
Jason Monk6f5354d2016-03-08 14:18:08 -05001896 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001897 // CATEGORY: SETTINGS
1898 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001899 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001900
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001902 // CATEGORY: SETTINGS
1903 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001904 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001905
Jason Monk6f5354d2016-03-08 14:18:08 -05001906 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001907 // CATEGORY: SETTINGS
1908 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001909 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001910
Jason Monk6f5354d2016-03-08 14:18:08 -05001911 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001912 // CATEGORY: SETTINGS
1913 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001914 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001915
Jason Monk6f5354d2016-03-08 14:18:08 -05001916 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001917 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001919
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001921 // CATEGORY: SETTINGS
1922 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001924
Jason Monk6f5354d2016-03-08 14:18:08 -05001925 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001926 // CATEGORY: SETTINGS
1927 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001928 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001929
Jason Monk6f5354d2016-03-08 14:18:08 -05001930 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001931 // CATEGORY: SETTINGS
1932 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001933 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001934
Jason Monk6f5354d2016-03-08 14:18:08 -05001935 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001936 // CATEGORY: SETTINGS
1937 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001938 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001939
Jason Monk6f5354d2016-03-08 14:18:08 -05001940 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001941 // CATEGORY: SETTINGS
1942 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001943 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001944
Jason Monk6f5354d2016-03-08 14:18:08 -05001945 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001946 // CATEGORY: SETTINGS
1947 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001948 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001949
Jason Monk6f5354d2016-03-08 14:18:08 -05001950 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001951 // CATEGORY: SETTINGS
1952 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001953 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001954
Jason Monk6f5354d2016-03-08 14:18:08 -05001955 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001956 // CATEGORY: SETTINGS
1957 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001958 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001959
Jason Monk6f5354d2016-03-08 14:18:08 -05001960 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001961 // CATEGORY: SETTINGS
1962 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001963 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001964
Jason Monk6f5354d2016-03-08 14:18:08 -05001965 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001966 // CATEGORY: SETTINGS
1967 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001968 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1969
1970 // Used for generic logging of Settings Preference Persistence, should not be used
1971 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001972 // CATEGORY: SETTINGS
1973 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001974 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001975
Jason Monk6f5354d2016-03-08 14:18:08 -05001976 // Settings -> Apps -> Gear -> Special access
1977 SPECIAL_ACCESS = 351;
1978
Muyuan Lia2129992016-03-03 18:30:39 -08001979 // Logs that the user docks window via shortcut key.
1980 WINDOW_DOCK_SHORTCUTS = 352;
1981
Felipe Lemeadccb992016-03-09 17:40:49 -08001982 // User already denied access to the request folder; action takes an integer
1983 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001984 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001985 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1986
1987 // User already denied access to the request folder; action pass package name
1988 // of calling package.
1989 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1990
1991 // User denied access to the request folder and checked 'Do not ask again';
1992 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001993 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001994 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1995
1996 // User denied access to the request folder and checked 'Do not ask again';
1997 // action pass package name of calling package.
1998 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1999
Winson3b6ba1a2016-03-22 15:37:54 -07002000 // Logged when a user dismisses all task in overview
2001 OVERVIEW_DISMISS_ALL = 357;
2002
Jason Monk96defbe2016-03-29 16:51:03 -04002003 // Quick Settings -> Edit
2004 QS_EDIT = 358;
2005
2006 // Quick Settings -> Edit -> Overflow -> Reset
2007 ACTION_QS_EDIT_RESET = 359;
2008
2009 // QS -> Edit - Drag a tile out of the active tiles.
2010 // The _SPEC contains either the spec of the tile or
2011 // the package of the 3rd party app in the PKG field.
2012 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2013 ACTION_QS_EDIT_REMOVE = 361;
2014
2015 // QS -> Edit - Drag a tile into the active tiles.
2016 // The _SPEC contains either the spec of the tile or
2017 // the package of the 3rd party app in the PKG field.
2018 ACTION_QS_EDIT_ADD_SPEC = 362;
2019 ACTION_QS_EDIT_ADD = 363;
2020
2021 // QS -> Edit - Drag a tile within the active tiles.
2022 // The _SPEC contains either the spec of the tile or
2023 // the package of the 3rd party app in the PKG field.
2024 ACTION_QS_EDIT_MOVE_SPEC = 364;
2025 ACTION_QS_EDIT_MOVE = 365;
2026
2027 // Long-press on a QS tile. Tile spec in package field.
2028 ACTION_QS_LONG_PRESS = 366;
2029
Anna Galuszadad131f2016-03-22 13:49:02 -07002030 // OPEN: SUW Welcome Screen -> Vision Settings
2031 // CATEGORY: SETTINGS
2032 // OS: N
2033 SUW_ACCESSIBILITY = 367;
2034
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002035 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2036 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2037 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002038 // ACTION: New magnification gesture configuration is chosen
2039 // SUBTYPE: 0 is off, 1 is on
2040 // CATEGORY: SETTINGS
2041 // OS: N
2042 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2043
2044 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2045 // ACTION: New font size is chosen
2046 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2047 // CATEGORY: SETTINGS
2048 // OS: N
2049 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2050
2051 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2052 // ACTION: New display size is chosen
2053 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2054 // CATEGORY: SETTINGS
2055 // OS: N
2056 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2057
2058 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2059 // ACTION: New screen reader configuration is chosen
2060 // SUBTYPE: 0 is off, 1 is on
2061 // CATEGORY: SETTINGS
2062 // OS: N
2063 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2064
Jason Monkc3620392016-03-30 15:46:03 -04002065 // ------- Begin N Settings conditionals -----
2066 // Conditionals are the green bars at the top of the settings dashboard
2067 // All conditionals will have visible/hide events onResume/onPause
2068 // but they will also be used as extra ints in the
2069 // dismiss/expand/collapse/click/button events
2070
2071 // swipe away conditional
2072 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2073
2074 // click on collapsed conditional or clicks expand button
2075 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2076
2077 // click collapse button on expanded conditional
2078 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2079
2080 // click main area of expanded conditional
2081 ACTION_SETTINGS_CONDITION_CLICK = 375;
2082
2083 // click a direct button on expanded conditional
2084 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2085
2086 // Airplane mode on
2087 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2088 // AKA Data saver on
2089 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2090 // Battery saver on
2091 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2092 // Cellular data off
2093 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2094 // Do not disturb on
2095 SETTINGS_CONDITION_DND = 381;
2096 // Hotspot on
2097 SETTINGS_CONDITION_HOTSPOT = 382;
2098 // Work profile off
2099 SETTINGS_CONDITION_WORK_MODE = 383;
2100
Jason Monk1b5d87b2016-03-30 16:03:15 -04002101 // ------- Begin N Settings suggestions -----
2102 // Since suggestions come from system apps, suggestions will
2103 // have generic constants and the package providing the suggestion
2104 // will be put in the package field. For suggestions in the Settings
2105 // package, the class name will be filled in instead (since settings
2106 // provides several suggetions).
2107
2108 // Settings shown/hidden on main settings dashboard.
2109 // These are actually visibility events, but visible/hidden doesn't
2110 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002111 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2112 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002113
2114 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002115 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002116
2117 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002118 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002119
Jason Monk397df682016-03-28 15:48:34 -04002120 // Settings > Apps > Gear > Special Access > Premium SMS access
2121 PREMIUM_SMS_ACCESS = 388;
2122
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002123 // Logged when the user resizes the docked stack. Arguments:
2124 // 0: Split 50:50
2125 // 1: Docked smaller
2126 // 2: Docked larger
2127 ACTION_WINDOW_DOCK_RESIZE = 389;
2128
2129 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2130 // 0: Docked gets maximized
2131 // 1: Fullscreen gets maximized
2132 ACTION_WINDOW_UNDOCK_MAX = 390;
2133
2134 // User tried to dock an unresizable app.
2135 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2136
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002137 // System UI Tuner > Other > Power notification controls
2138 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2139
2140 // System UI Tuner > Other > Power notification controls > Toggle on/off
2141 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2142
Chris Wren38f98812016-07-13 14:28:40 -04002143 // Action: user enable / disabled data saver using Settings
2144 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2145 // VALUE: 1 for enabled, 0 for disabled
2146 // CATEGORY: SETTINGS
2147 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002148 ACTION_DATA_SAVER_MODE = 394;
2149
Chris Wren38f98812016-07-13 14:28:40 -04002150 // User whitelisted an app for Data Saver mode; action pass package name of app
2151 // Action: user enable / disabled data saver using Settings
2152 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2153 // or
2154 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2155 // VALUE: package name of APP
2156 // CATEGORY: SETTINGS
2157 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002158 ACTION_DATA_SAVER_WHITELIST = 395;
2159
Chris Wren38f98812016-07-13 14:28:40 -04002160 // User blacklisted an app for Data Saver mode; action pass package name of app
2161 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2162 // VALUE: package name of APP
2163 // CATEGORY: SETTINGS
2164 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002165 ACTION_DATA_SAVER_BLACKLIST = 396;
2166
Adrian Roosceeb04c2016-04-25 14:00:54 -07002167 // User opened a remote input view associated with a notification. Passes package name of app
2168 // that posted the notification. Note that this can also happen transiently during notification
2169 // reinflation.
2170 ACTION_REMOTE_INPUT_OPEN = 397;
2171
2172 // User attempt to send data through a remote input view associated with a notification.
2173 // Passes package name of app that posted the notification. May succeed or fail.
2174 ACTION_REMOTE_INPUT_SEND = 398;
2175
2176 // Failed attempt to send data through a remote input view associated with a
2177 // notification. Passes package name of app that posted the notification.
2178 ACTION_REMOTE_INPUT_FAIL = 399;
2179
2180 // User closed a remote input view associated with a notification. Passes package name of app
2181 // that posted the notification. Note that this can also happen transiently during notification
2182 // reinflation.
2183 ACTION_REMOTE_INPUT_CLOSE = 400;
2184
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002185 // OPEN: Settings > Accounts > Work profile settings
2186 // CATEGORY: SETTINGS
2187 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2188
Jason Monk25118d12016-05-10 13:25:50 -04002189 // Settings -> Dev options -> Convert to file encryption
2190 CONVERT_FBE = 402;
2191
2192 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2193 CONVERT_FBE_CONFIRM = 403;
2194
2195 // Settings -> Dev options -> Running services
2196 RUNNING_SERVICES = 404;
2197
Jason Monka1f697f2016-05-06 15:09:44 -04002198 // The dialog shown by 3P intent to change current webview implementation.
2199 WEBVIEW_IMPLEMENTATION = 405;
2200
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002201 // Settings launched from expanded quick settings.
2202 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2203
Chris Wren698b1702016-05-23 11:16:32 -04002204 // Notification expansion state toggled by the expand affordance.
2205 ACTION_NOTIFICATION_EXPANDER = 407;
2206
2207 // Notification group expansion state toggled by the expand affordance.
2208 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2209
Chris Wren7ee84182016-05-27 13:34:02 -04002210
Chris Wren6abeeb92016-05-26 14:44:38 -04002211 // Notification expansion state toggled by the expand gesture.
2212 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2213
2214 // Notification group expansion state toggled by the expand gesture.
2215 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2216
Bhavik Singh3451da42016-06-01 18:25:59 -07002217 // User performs gesture that activates the ambient display
2218 // 1: Gesture performed is Nudge
2219 // 2: Gesture performed is Pickup
2220 // 4: Gesture performed is Double Tap
2221 ACTION_AMBIENT_GESTURE = 411;
2222
Jason Monk9fa5f822016-05-11 10:26:31 -04002223 // ---- End N Constants, all N constants go above this line ----
2224
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002225 // ------- Begin N App Disambig Shade -----
2226 // Application disambig shade opened or closed with a featured app.
2227 // These are actually visibility events, but visible/hidden doesn't
2228 // take a package, so these are being logged as actions.
2229 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002230 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2231 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002232
2233 // Application disambig shade opened or closed without a featured app.
2234 // These are actually visibility events, but visible/hidden doesn't
2235 // take a package, so these are being logged as actions.
2236 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002237 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2238 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002239
2240 // User opens in an app by pressing “Always” in the application disambig shade.
2241 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002242 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002243
2244 // User opens in an app by pressing “Just Once” in the application disambig shade.
2245 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002246 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002247
2248 // User opens in an app by tapping on its name in the application disambig shade.
2249 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002250 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002251
Daniel Nishi010aa492016-05-11 09:42:24 -07002252 // OPEN: Settings > Internal storage > Storage manager
2253 // CATEGORY: SETTINGS
2254 STORAGE_MANAGER_SETTINGS = 458;
2255
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002256 // OPEN: Settings -> Gestures
2257 // CATEGORY: SETTINGS
2258 SETTINGS_GESTURES = 459;
2259
Daniel Nishi597e67f2016-05-18 13:56:13 -07002260 // ------ Begin Deletion Helper ------
2261 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2262 // SUBTYPE: false is off, true is on
2263 // CATEGORY: SETTINGS
2264 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002265
Daniel Nishi597e67f2016-05-18 13:56:13 -07002266 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2267 // SUBTYPE: false is off, true is on
2268 // CATEGORY: SETTINGS
2269 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2270
2271 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2272 // CATEGORY: SETTINGS
2273 // PACKAGE: Unchecked app
2274 ACTION_DELETION_SELECTION_APP_ON = 462;
2275
2276 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2277 // CATEGORY: SETTINGS
2278 // PACKAGE: Checked app
2279 ACTION_DELETION_SELECTION_APP_OFF = 463;
2280
2281 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2282 // SUBTYPE: false is expanded, true is collapsed
2283 // CATEGORY: SETTINGS
2284 ACTION_DELETION_APPS_COLLAPSED = 464;
2285
2286 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2287 // SUBTYPE: false is off, true is on
2288 // CATEGORY: SETTINGS
2289 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2290
2291 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2292 // SUBTYPE: false is expanded, true is collapsed
2293 // CATEGORY: SETTINGS
2294 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2295
2296 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2297 // CATEGORY: SETTINGS
2298 ACTION_DELETION_HELPER_CLEAR = 467;
2299
2300 // ACTION: Settings > Storage > Free Up Space > Cancel
2301 // CATEGORY: SETTINGS
2302 ACTION_DELETION_HELPER_CANCEL = 468;
2303
2304 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2305 // CATEGORY: SETTINGS
2306 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2307
2308 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2309 // CATEGORY: SETTINGS
2310 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2311
2312 // Deletion helper encountered an error during package deletion.
2313 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2314
2315 // Deletion helper encountered an error during downloads folder deletion.
2316 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2317
2318 // Deletion helper encountered an error during photo and video deletion.
2319 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2320
Fan Zhang5e956e82016-05-06 10:51:47 -07002321 // OPEN: Settings (root page if there are multiple tabs)
2322 // CATEGORY: SETTINGS
2323 DASHBOARD_CONTAINER = 474;
2324
2325 // OPEN: Settings -> SUPPORT TAB
2326 // CATEGORY: SETTINGS
2327 SUPPORT_FRAGMENT = 475;
2328
2329 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002330 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002331 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002332
2333 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002334 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002335 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2336
Fan Zhanga1985502016-06-16 16:48:38 -07002337 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002338 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002339 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2340
2341 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002342 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002343 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2344
2345 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002346 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002347 ACTION_SUPPORT_SIGN_IN = 480;
2348
2349 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002350 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002351 ACTION_SUPPORT_PHONE = 481;
2352
2353 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002354 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002355 ACTION_SUPPORT_CHAT = 482;
2356
2357 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002358 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002359 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2360
2361 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002362 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002363 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2364
Fan Zhang80807212016-06-30 12:26:55 -07002365 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002366 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002367 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2368
2369 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002370 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002371 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2372
2373 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002374 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002375 ACTION_SUPPORT_DIAL_TOLLED = 487;
2376
Justin Klaassen19494272016-07-18 21:38:24 -07002377 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002378 // CATEGORY: SETTINGS
2379 NIGHT_DISPLAY_SETTINGS = 488;
2380
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002381 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002382 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002383 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2384
Jason Monk484fd362016-07-13 15:24:32 -04002385 // Settings launched from collapsed quick settings.
2386 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2387
Justin Klaassen19494272016-07-18 21:38:24 -07002388 // OPEN: QS Night Light tile shown
2389 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002390 // SUBTYPE: 0 is off, 1 is on
2391 // CATEGORY: QUICK_SETTINGS
2392 QS_NIGHT_DISPLAY = 491;
2393
Justin Klaassen19494272016-07-18 21:38:24 -07002394 // Night Light on
2395 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2396
Doris Ling3c00afb2016-07-19 17:04:21 -07002397 // System navigation key up.
2398 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2399
2400 // System navigation key down.
2401 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2402
Doris Ling6dd3e462016-08-04 13:17:27 -07002403 // OPEN: Settings > Display -> Ambient Display
2404 // CATEGORY: SETTINGS
2405 ACTION_AMBIENT_DISPLAY = 495;
2406
Adrian Roos159ef7b2016-02-25 11:58:32 -08002407 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2408
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002409 // ACTION: The lockscreen gets shown because the SIM card was removed
2410 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2411 // CATEGORY: GLOBAL_SYSTEM_UI
2412 // OS: N-MR2
2413 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2414
2415 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2416
Clara Bayarric17a5982016-04-15 12:26:47 +01002417 // ------- Begin N Keyboard Shortcuts Helper -----
2418 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002419 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002420
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002421 // OPEN: Print Preview screen
2422 // Package: Package of app where print job is from
2423 PRINT_PREVIEW = 501;
2424
2425 // OPEN: User expands full print job options shade in print preview.
2426 PRINT_JOB_OPTIONS = 502;
2427
2428 // OPEN: “All Printers” screen for selecting printer
2429 // Subtype: # of printers listed
2430 PRINT_ALL_PRINTERS = 503;
2431
2432 // OPEN: “Add Printers” screen for adding printers
2433 // Subtype: # of enabled print service listed
2434 PRINT_ADD_PRINTERS = 504;
2435
2436 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2437 // Package: Package of print service.
2438 ACTION_PRINT = 505;
2439
2440 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2441 // Count all ACTION_PRINTER_SELECT_ALL actions.
2442 // Package: Package of print service tied to printer
2443 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2444
2445 // ACTION: User selects a printer from the “All printers” screen.
2446 // Package: Package of print service tied to printer
2447 ACTION_PRINTER_SELECT_ALL = 507;
2448
2449 // ACTION: User changes an option for the print job from print preview.
2450 // Subtype: 1: Copies
2451 // 2: Color mode
2452 // 3: Duplex mode
2453 // 4: Media (==Paper) size
2454 // 5: Orientation
2455 // 6: Page range
2456 // Package: Package of print service tied to printer
2457 ACTION_PRINT_JOB_OPTIONS = 508;
2458
2459 // ACTION: User searches for printer from All Printers
2460 ACTION_PRINTER_SEARCH = 509;
2461
2462 // ACTION: User selects “Add print service” button from All Printers
2463 ACTION_PRINT_SERVICE_ADD = 510;
2464
2465 // ACTION: User Enables/Disables Print Service via any means.
2466 // Subtype: 0: Enabled
2467 // 1: Disabled
2468 ACTION_PRINT_SERVICE_TOGGLE = 511;
2469
2470 // ACTION: User installs print recommended print service
2471 // Package: Package of print service
2472 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2473
Doris Ling88a6b162016-08-08 16:17:43 -07002474 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2475 // SUBTYPE: sub settings classname
2476 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2477
Fan Zhang92c60382016-08-08 14:03:53 -07002478 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2479 USER_DICTIONARY_SETTINGS = 514;
2480
2481 // OPEN: Settings > Date & time > Select time zone
2482 ZONE_PICKER = 515;
2483
2484 // OPEN: Settings > Security > Device administrators
2485 DEVICE_ADMIN_SETTINGS = 516;
2486
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002487 // ACTION: Managed provisioning was launched to set this package as DPC app.
2488 // PACKAGE: DPC's package name.
2489 PROVISIONING_DPC_PACKAGE_NAME = 517;
2490
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002491 // ACTION: Managed provisioning triggered DPC installation.
2492 // PACKAGE: Package name of package which installed DPC.
2493 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2494
2495 // ACTION: Logged when provisioning activity finishes.
2496 // TIME: Indicates time taken by provisioning activity to finish in MS.
2497 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2498
2499 // ACTION: Logged when preprovisioning activity finishes.
2500 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2501 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2502
2503 // ACTION: Logged when encrypt device activity finishes.
2504 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2505 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2506
2507 // ACTION: Logged when web activity finishes.
2508 // TIME: Indicates total time taken by web activity to finish in MS.
2509 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2510
2511 // ACTION: Logged when trampoline activity finishes.
2512 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2513 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2514
2515 // ACTION: Logged when encryption activity finishes.
2516 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2517 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2518
2519 // ACTION: Logged when finalization activity finishes.
2520 // TIME: Indicates time taken by finalization activity to finish in MS.
2521 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002522
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002523 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002524 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002525
Fan Zhang95094182016-08-24 18:14:16 -07002526 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002527 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002528
2529 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002530 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002531
2532 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002533 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002534
2535 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002536 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002537
2538 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002539 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002540
Fan Zhangc1352ae2016-09-16 12:46:11 -07002541 // OPEN: Settings > Security > Use one lock dialog
2542 DIALOG_UNIFICATION_CONFIRMATION = 532;
2543
2544 // OPEN: Settings > Security > User Credential
2545 DIALOG_USER_CREDENTIAL = 533;
2546
2547 // OPEN: Settings > Accounts > Remove account
2548 DIALOG_REMOVE_USER = 534;
2549
2550 // OPEN: Settings > Accounts > Confirm auto sync dialog
2551 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2552
2553 // OPEN: Settings > Apps > Dialog for running service details
2554 DIALOG_RUNNIGN_SERVICE = 536;
2555
2556 // OPEN: Settings > Dialog for hiding home settings
2557 DIALOG_NO_HOME = 537;
2558
2559 // OPEN: Settings > Bluetooth > Rename this device
2560 DIALOG_BLUETOOTH_RENAME = 538;
2561
2562 // OPEN: Settings > Bluetooth > Paired device profile
2563 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2564
2565 // OPEN: Settings > Battery optimization > details for app
2566 DIALOG_HIGH_POWER_DETAILS = 540;
2567
2568 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2569 DIALOG_KEYBOARD_LAYOUT = 541;
2570
2571 // OPEN: Settings > Wifi > WPS Setup dialog
2572 DIALOG_WPS_SETUP = 542;
2573
2574 // OPEN: Settings > WIFI Scan permission dialog
2575 DIALOG_WIFI_SCAN_MODE = 543;
2576
2577 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2578 DIALOG_WIFI_SKIP = 544;
2579
2580 // OPEN: Settings > Wireless > VPN > Config dialog
2581 DIALOG_LEGACY_VPN_CONFIG = 545;
2582
2583 // OPEN: Settings > Wireless > VPN > Config dialog for app
2584 DIALOG_VPN_APP_CONFIG = 546;
2585
2586 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2587 DIALOG_VPN_CANNOT_CONNECT = 547;
2588
2589 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2590 DIALOG_VPN_REPLACE_EXISTING = 548;
2591
2592 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2593 DIALOG_BILLING_CYCLE = 549;
2594
2595 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2596 DIALOG_BILLING_BYTE_LIMIT = 550;
2597
2598 // OPEN: Settings > Billing cycle > turn on data limit dialog
2599 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2600
2601 // OPEN: Settings > Service > Turn off notification access dialog
2602 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2603
2604 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2605 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2606
2607 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2608 DIALOG_ZEN_ACCESS_GRANT = 554;
2609
2610 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2611 DIALOG_ZEN_ACCESS_REVOKE = 555;
2612
2613 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2614 DIALOG_ZEN_TIMEPICKER = 556;
2615
2616 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2617 DIALOG_SERVICE_ACCESS_WARNING = 557;
2618
2619 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2620 DIALOG_APP_INFO_ACTION = 558;
2621
2622 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2623 DIALOG_VOLUME_FORGET = 559;
2624
2625 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2626 DIALOG_VOLUME_SLOW_WARNING = 560;
2627
2628 // OPEN: Settings > Storage > Dialog for initializing a volume
2629 DIALOG_VOLUME_INIT = 561;
2630
2631 // OPEN: Settings > Storage > Dialog for unmounting a volume
2632 DIALOG_VOLUME_UNMOUNT = 562;
2633
2634 // OPEN: Settings > Storage > Dialog for renaming a volume
2635 DIALOG_VOLUME_RENAME = 563;
2636
2637 // OPEN: Settings > Storage > Dialog for clear cache
2638 DIALOG_STORAGE_CLEAR_CACHE = 564;
2639
2640 // OPEN: Settings > Storage > Dialog for system info
2641 DIALOG_STORAGE_SYSTEM_INFO = 565;
2642
2643 // OPEN: Settings > Storage > Dialog for other info
2644 DIALOG_STORAGE_OTHER_INFO = 566;
2645
2646 // OPEN: Settings > Storage > Dialog for user info
2647 DIALOG_STORAGE_USER_INFO = 567;
2648
2649 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2650 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2651
2652 // OPEN: Settings > Add fingerprint > Error dialog
2653 DIALOG_FINGERPINT_ERROR = 569;
2654
2655 // OPEN: Settings > Fingerprint > Rename or delete dialog
2656 DIALOG_FINGERPINT_EDIT = 570;
2657
2658 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2659 DIALOG_FINGERPINT_DELETE_LAST = 571;
2660
2661 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2662 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2663
2664 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2665 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2666
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002667 // OPEN: Settings > Proxy Selector error dialog
2668 DIALOG_PROXY_SELECTOR_ERROR = 574;
2669
2670 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2671 DIALOG_WIFI_P2P_DISCONNECT = 575;
2672
2673 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2674 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2675
2676 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2677 DIALOG_WIFI_P2P_RENAME = 577;
2678
2679 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2680 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2681
2682 // OPEN: Settings > APN > Restore default dialog
2683 DIALOG_APN_RESTORE_DEFAULT = 579;
2684
2685 // OPEN: Settings > Dream > When to dream dialog
2686 DIALOG_DREAM_START_DELAY = 580;
2687
2688 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2689 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2690
2691 // OPEN: Settings > Tether > AP setting dialog
2692 DIALOG_AP_SETTINGS = 582;
2693
2694 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2695 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2696
2697 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2698 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2699
2700 // OPEN: Settings > Account > Remove account dialog
2701 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2702
2703 // OPEN: Settings > Account > Remove account failed dialog
2704 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2705
2706 // OPEN: Settings > Account > Cannot do onetime sync dialog
2707 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2708
2709 // OPEN: Settings > Display > Night light > Set start time dialog
2710 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2711
2712 // OPEN: Settings > Display > Night light > Set end time dialog
2713 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2714
2715 // OPEN: Settings > User > Edit info dialog
2716 DIALOG_USER_EDIT = 590;
2717
2718 // OPEN: Settings > User > Confirm remove dialog
2719 DIALOG_USER_REMOVE = 591;
2720
2721 // OPEN: Settings > User > Enable calling dialog
2722 DIALOG_USER_ENABLE_CALLING = 592;
2723
2724 // OPEN: Settings > User > Enable calling and sms dialog
2725 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2726
2727 // OPEN: Settings > User > Cannot manage device message dialog
2728 DIALOG_USER_CANNOT_MANAGE = 594;
2729
2730 // OPEN: Settings > User > Add user dialog
2731 DIALOG_USER_ADD = 595;
2732
2733 // OPEN: Settings > User > Setup user dialog
2734 DIALOG_USER_SETUP = 596;
2735
2736 // OPEN: Settings > User > Setup profile dialog
2737 DIALOG_USER_SETUP_PROFILE = 597;
2738
2739 // OPEN: Settings > User > Choose user type dialog
2740 DIALOG_USER_CHOOSE_TYPE = 598;
2741
2742 // OPEN: Settings > User > Need lockscreen dialog
2743 DIALOG_USER_NEED_LOCKSCREEN = 599;
2744
2745 // OPEN: Settings > User > Confirm exit guest mode dialog
2746 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2747
2748 // OPEN: Settings > User > Edit user profile dialog
2749 DIALOG_USER_EDIT_PROFILE = 601;
2750
2751 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2752 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2753
2754 // OPEN: Settings > Wifi > Edit AP dialog
2755 DIALOG_WIFI_AP_EDIT = 603;
2756
2757 // OPEN: Settings > Wifi > PBC Config dialog
2758 DIALOG_WIFI_PBC = 604;
2759
2760 // OPEN: Settings > Wifi > Display pin dialog
2761 DIALOG_WIFI_PIN = 605;
2762
2763 // OPEN: Settings > Wifi > Write config to NFC dialog
2764 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002765 // OPEN: Settings > Date > Date picker dialog
2766 DIALOG_DATE_PICKER = 607;
2767
2768 // OPEN: Settings > Date > Time picker dialog
2769 DIALOG_TIME_PICKER = 608;
2770
2771 // OPEN: Settings > Wireless > Manage wireless plan dialog
2772 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002773
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002774 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002775 PROVISIONING_NETWORK_TYPE = 610;
2776
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002777 // ACTION: Logs action which triggered provisioning.
2778 PROVISIONING_ACTION = 611;
2779
Mahaver Chopraab282072016-10-06 19:19:23 +01002780 // ACTION: Logs extra passed by the dpc while provisioning.
2781 PROVISIONING_EXTRA = 612;
2782
Salvador Martinez64867c12016-10-14 15:25:09 -07002783 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2784 BLUETOOTH_DIALOG_FRAGMENT = 613;
2785
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002786 // ACTION: Logs provisioning started by zero touch.
2787 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2788
2789 // ACTION: Logs provisioning started by NFC bump.
2790 PROVISIONING_ENTRY_POINT_NFC = 615;
2791
2792 // ACTION: Logs provisioning started using QR code.
2793 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2794
2795 // ACTION: Logs provisioning started using adb.
2796 PROVISIONING_ENTRY_POINT_ADB = 617;
2797
2798 // ACTION: Logs provisioning started by trusted source.
2799 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2800
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002801 // ACTION: Logged when copy account task finishes.
2802 // TIME: Indicates time taken by copy account task to finish in MS.
2803 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2804
2805 // ACTION: Logged when create profile task finishes.
2806 // TIME: Indicates time taken by create profile task to finish in MS.
2807 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2808
2809 // ACTION: Logged when start profile task finishes.
2810 // TIME: Indicates time taken by start profile task to finish in MS.
2811 PROVISIONING_START_PROFILE_TASK_MS = 621;
2812
2813 // ACTION: Logged when download package task finishes.
2814 // TIME: Indicates time taken by download package task to finish in MS.
2815 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2816
2817 // ACTION: Logged when install package task finishes.
2818 // TIME: Indicates time taken by install package task to finish in MS.
2819 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2820
2821 // ACTION: User cancelled provisioning.
2822 PROVISIONING_CANCELLED = 624;
2823
2824 // ACTION: Logged when provisioning throws an error.
2825 PROVISIONING_ERROR = 625;
2826
2827 // ACTION: Logs the status of copying user account during provisioning.
2828 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2829
2830 // ACTION: Logs the end to end time taken by all provisioning tasks.
2831 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2832
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002833 // OPEN: Settings > Privacy
2834 // CATEGORY: SETTINGS
2835 // OS: O
2836 ENTERPRISE_PRIVACY_SETTINGS = 628;
2837
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002838 // ACTION: Longpress on a TextView.
2839 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2840 // CATEGORY: TEXT_CONTROLS
2841 // OS: O
2842 TEXT_LONGPRESS = 629;
2843
Chris Wren3824c392017-11-27 12:54:14 -05002844 // ACTION: An app requested an unknown permission
2845 // PACKAGE: The package name of the app requesting the permission
2846 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002847 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2848
Chris Wren3824c392017-11-27 12:54:14 -05002849 // ACTION: An app was granted an unknown permission
2850 // PACKAGE: The package name of the app that was granted the permission
2851 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002852 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2853
Chris Wren3824c392017-11-27 12:54:14 -05002854 // ACTION: An app requested an unknown permission and the request was denied
2855 // PACKAGE: The package name of the app requesting the permission
2856 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002857 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2858
Chris Wren3824c392017-11-27 12:54:14 -05002859 // ACTION: An unknown permission was revoked for an app
2860 // PACKAGE: The package name of the app the permission was revoked for
2861 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002862 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2863
Chris Wren3824c392017-11-27 12:54:14 -05002864 // ACTION: An app requested the permission READ_CALENDAR
2865 // PACKAGE: The package name of the app requesting the permission
2866 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002867 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2868
Chris Wren3824c392017-11-27 12:54:14 -05002869 // ACTION: An app was granted the permission READ_CALENDAR
2870 // PACKAGE: The package name of the app that was granted the permission
2871 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002872 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2873
Chris Wren3824c392017-11-27 12:54:14 -05002874 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2875 // PACKAGE: The package name of the app requesting the permission
2876 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002877 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2878
Chris Wren3824c392017-11-27 12:54:14 -05002879 // ACTION: The permission READ_CALENDAR was revoked for an app
2880 // PACKAGE: The package name of the app the permission was revoked for
2881 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002882 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2883
Chris Wren3824c392017-11-27 12:54:14 -05002884 // ACTION: An app requested the permission WRITE_CALENDAR
2885 // PACKAGE: The package name of the app requesting the permission
2886 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002887 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2888
Chris Wren3824c392017-11-27 12:54:14 -05002889 // ACTION: An app was granted the permission WRITE_CALENDAR
2890 // PACKAGE: The package name of the app that was granted the permission
2891 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002892 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2893
Chris Wren3824c392017-11-27 12:54:14 -05002894 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2895 // PACKAGE: The package name of the app requesting the permission
2896 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002897 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2898
Chris Wren3824c392017-11-27 12:54:14 -05002899 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2900 // PACKAGE: The package name of the app the permission was revoked for
2901 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002902 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2903
Chris Wren3824c392017-11-27 12:54:14 -05002904 // ACTION: An app requested the permission CAMERA
2905 // PACKAGE: The package name of the app requesting the permission
2906 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002907 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2908
Chris Wren3824c392017-11-27 12:54:14 -05002909 // ACTION: An app was granted the permission CAMERA
2910 // PACKAGE: The package name of the app that was granted the permission
2911 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002912 ACTION_PERMISSION_GRANT_CAMERA = 643;
2913
Chris Wren3824c392017-11-27 12:54:14 -05002914 // ACTION: An app requested the permission CAMERA and the request was denied
2915 // PACKAGE: The package name of the app requesting the permission
2916 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002917 ACTION_PERMISSION_DENIED_CAMERA = 644;
2918
Chris Wren3824c392017-11-27 12:54:14 -05002919 // ACTION: The permission CAMERA was revoked for an app
2920 // PACKAGE: The package name of the app the permission was revoked for
2921 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002922 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2923
Chris Wren3824c392017-11-27 12:54:14 -05002924 // ACTION: An app requested the permission READ_CONTACTS
2925 // PACKAGE: The package name of the app requesting the permission
2926 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002927 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2928
Chris Wren3824c392017-11-27 12:54:14 -05002929 // ACTION: An app was granted the permission READ_CONTACTS
2930 // PACKAGE: The package name of the app that was granted the permission
2931 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002932 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2933
Chris Wren3824c392017-11-27 12:54:14 -05002934 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2935 // PACKAGE: The package name of the app requesting the permission
2936 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002937 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2938
Chris Wren3824c392017-11-27 12:54:14 -05002939 // ACTION: The permission READ_CONTACTS was revoked for an app
2940 // PACKAGE: The package name of the app the permission was revoked for
2941 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002942 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2943
Chris Wren3824c392017-11-27 12:54:14 -05002944 // ACTION: An app requested the permission WRITE_CONTACTS
2945 // PACKAGE: The package name of the app requesting the permission
2946 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002947 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2948
Chris Wren3824c392017-11-27 12:54:14 -05002949 // ACTION: An app was granted the permission WRITE_CONTACTS
2950 // PACKAGE: The package name of the app that was granted the permission
2951 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002952 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2953
Chris Wren3824c392017-11-27 12:54:14 -05002954 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2955 // PACKAGE: The package name of the app requesting the permission
2956 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002957 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2958
Chris Wren3824c392017-11-27 12:54:14 -05002959 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2960 // PACKAGE: The package name of the app the permission was revoked for
2961 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002962 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2963
Chris Wren3824c392017-11-27 12:54:14 -05002964 // ACTION: An app requested the permission GET_ACCOUNTS
2965 // PACKAGE: The package name of the app requesting the permission
2966 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002967 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2968
Chris Wren3824c392017-11-27 12:54:14 -05002969 // ACTION: An app was granted the permission GET_ACCOUNTS
2970 // PACKAGE: The package name of the app that was granted the permission
2971 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002972 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2973
Chris Wren3824c392017-11-27 12:54:14 -05002974 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2975 // PACKAGE: The package name of the app requesting the permission
2976 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002977 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2978
Chris Wren3824c392017-11-27 12:54:14 -05002979 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2980 // PACKAGE: The package name of the app the permission was revoked for
2981 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002982 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2983
Chris Wren3824c392017-11-27 12:54:14 -05002984 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2985 // PACKAGE: The package name of the app requesting the permission
2986 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002987 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2988
Chris Wren3824c392017-11-27 12:54:14 -05002989 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2990 // PACKAGE: The package name of the app that was granted the permission
2991 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002992 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2993
Chris Wren3824c392017-11-27 12:54:14 -05002994 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2995 // PACKAGE: The package name of the app requesting the permission
2996 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002997 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2998
Chris Wren3824c392017-11-27 12:54:14 -05002999 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3000 // PACKAGE: The package name of the app the permission was revoked for
3001 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003002 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3003
Chris Wren3824c392017-11-27 12:54:14 -05003004 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3005 // PACKAGE: The package name of the app requesting the permission
3006 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003007 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3008
Chris Wren3824c392017-11-27 12:54:14 -05003009 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3010 // PACKAGE: The package name of the app that was granted the permission
3011 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003012 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3013
Chris Wren3824c392017-11-27 12:54:14 -05003014 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3015 // PACKAGE: The package name of the app requesting the permission
3016 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003017 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3018
Chris Wren3824c392017-11-27 12:54:14 -05003019 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3020 // PACKAGE: The package name of the app the permission was revoked for
3021 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003022 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3023
Chris Wren3824c392017-11-27 12:54:14 -05003024 // ACTION: An app requested the permission RECORD_AUDIO
3025 // PACKAGE: The package name of the app requesting the permission
3026 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003027 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3028
Chris Wren3824c392017-11-27 12:54:14 -05003029 // ACTION: An app was granted the permission RECORD_AUDIO
3030 // PACKAGE: The package name of the app that was granted the permission
3031 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003032 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3033
Chris Wren3824c392017-11-27 12:54:14 -05003034 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3035 // PACKAGE: The package name of the app requesting the permission
3036 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003037 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3038
Chris Wren3824c392017-11-27 12:54:14 -05003039 // ACTION: The permission RECORD_AUDIO was revoked for an app
3040 // PACKAGE: The package name of the app the permission was revoked for
3041 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003042 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3043
Chris Wren3824c392017-11-27 12:54:14 -05003044 // ACTION: An app requested the permission READ_PHONE_STATE
3045 // PACKAGE: The package name of the app requesting the permission
3046 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003047 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3048
Chris Wren3824c392017-11-27 12:54:14 -05003049 // ACTION: An app was granted the permission READ_PHONE_STATE
3050 // PACKAGE: The package name of the app that was granted the permission
3051 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003052 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3053
Chris Wren3824c392017-11-27 12:54:14 -05003054 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3055 // PACKAGE: The package name of the app requesting the permission
3056 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003057 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3058
Chris Wren3824c392017-11-27 12:54:14 -05003059 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3060 // PACKAGE: The package name of the app the permission was revoked for
3061 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003062 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3063
Chris Wren3824c392017-11-27 12:54:14 -05003064 // ACTION: An app requested the permission CALL_PHONE
3065 // PACKAGE: The package name of the app requesting the permission
3066 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003067 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3068
Chris Wren3824c392017-11-27 12:54:14 -05003069 // ACTION: An app was granted the permission CALL_PHONE
3070 // PACKAGE: The package name of the app that was granted the permission
3071 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003072 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3073
Chris Wren3824c392017-11-27 12:54:14 -05003074 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3075 // PACKAGE: The package name of the app requesting the permission
3076 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003077 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3078
Chris Wren3824c392017-11-27 12:54:14 -05003079 // ACTION: The permission CALL_PHONE was revoked for an app
3080 // PACKAGE: The package name of the app the permission was revoked for
3081 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003082 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3083
Chris Wren3824c392017-11-27 12:54:14 -05003084 // ACTION: An app requested the permission READ_CALL_LOG
3085 // PACKAGE: The package name of the app requesting the permission
3086 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003087 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3088
Chris Wren3824c392017-11-27 12:54:14 -05003089 // ACTION: An app was granted the permission READ_CALL_LOG
3090 // PACKAGE: The package name of the app that was granted the permission
3091 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003092 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3093
Chris Wren3824c392017-11-27 12:54:14 -05003094 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3095 // PACKAGE: The package name of the app requesting the permission
3096 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003097 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3098
Chris Wren3824c392017-11-27 12:54:14 -05003099 // ACTION: The permission READ_CALL_LOG was revoked for an app
3100 // PACKAGE: The package name of the app the permission was revoked for
3101 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003102 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3103
Chris Wren3824c392017-11-27 12:54:14 -05003104 // ACTION: An app requested the permission WRITE_CALL_LOG
3105 // PACKAGE: The package name of the app requesting the permission
3106 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003107 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3108
Chris Wren3824c392017-11-27 12:54:14 -05003109 // ACTION: An app was granted the permission WRITE_CALL_LOG
3110 // PACKAGE: The package name of the app that was granted the permission
3111 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003112 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3113
Chris Wren3824c392017-11-27 12:54:14 -05003114 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3115 // PACKAGE: The package name of the app requesting the permission
3116 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003117 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3118
Chris Wren3824c392017-11-27 12:54:14 -05003119 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3120 // PACKAGE: The package name of the app the permission was revoked for
3121 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003122 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3123
Chris Wren3824c392017-11-27 12:54:14 -05003124 // ACTION: An app requested the permission ADD_VOICEMAIL
3125 // PACKAGE: The package name of the app requesting the permission
3126 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003127 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3128
Chris Wren3824c392017-11-27 12:54:14 -05003129 // ACTION: An app was granted the permission ADD_VOICEMAIL
3130 // PACKAGE: The package name of the app that was granted the permission
3131 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003132 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3133
Chris Wren3824c392017-11-27 12:54:14 -05003134 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3135 // PACKAGE: The package name of the app requesting the permission
3136 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003137 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3138
Chris Wren3824c392017-11-27 12:54:14 -05003139 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3140 // PACKAGE: The package name of the app the permission was revoked for
3141 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003142 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3143
Chris Wren3824c392017-11-27 12:54:14 -05003144 // ACTION: An app requested the permission USE_SIP
3145 // PACKAGE: The package name of the app requesting the permission
3146 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003147 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3148
Chris Wren3824c392017-11-27 12:54:14 -05003149 // ACTION: An app was granted the permission USE_SIP
3150 // PACKAGE: The package name of the app that was granted the permission
3151 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003152 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3153
Chris Wren3824c392017-11-27 12:54:14 -05003154 // ACTION: An app requested the permission USE_SIP and the request was denied
3155 // PACKAGE: The package name of the app requesting the permission
3156 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003157 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3158
Chris Wren3824c392017-11-27 12:54:14 -05003159 // ACTION: The permission USE_SIP was revoked for an app
3160 // PACKAGE: The package name of the app the permission was revoked for
3161 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003162 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3163
Chris Wren3824c392017-11-27 12:54:14 -05003164 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3165 // PACKAGE: The package name of the app requesting the permission
3166 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003167 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3168
Chris Wren3824c392017-11-27 12:54:14 -05003169 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3170 // PACKAGE: The package name of the app that was granted the permission
3171 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003172 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3173
Chris Wren3824c392017-11-27 12:54:14 -05003174 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3175 // PACKAGE: The package name of the app requesting the permission
3176 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003177 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3178
Chris Wren3824c392017-11-27 12:54:14 -05003179 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3180 // PACKAGE: The package name of the app the permission was revoked for
3181 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003182 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3183
Chris Wren3824c392017-11-27 12:54:14 -05003184 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3185 // PACKAGE: The package name of the app requesting the permission
3186 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003187 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3188
Chris Wren3824c392017-11-27 12:54:14 -05003189 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3190 // PACKAGE: The package name of the app that was granted the permission
3191 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003192 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3193
Chris Wren3824c392017-11-27 12:54:14 -05003194 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3195 // PACKAGE: The package name of the app requesting the permission
3196 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003197 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3198
Chris Wren3824c392017-11-27 12:54:14 -05003199 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3200 // PACKAGE: The package name of the app the permission was revoked for
3201 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003202 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3203
Chris Wren3824c392017-11-27 12:54:14 -05003204 // ACTION: An app requested the permission BODY_SENSORS
3205 // PACKAGE: The package name of the app requesting the permission
3206 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003207 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3208
Chris Wren3824c392017-11-27 12:54:14 -05003209 // ACTION: An app was granted the permission BODY_SENSORS
3210 // PACKAGE: The package name of the app that was granted the permission
3211 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003212 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3213
Chris Wren3824c392017-11-27 12:54:14 -05003214 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3215 // PACKAGE: The package name of the app requesting the permission
3216 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003217 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3218
Chris Wren3824c392017-11-27 12:54:14 -05003219 // ACTION: The permission BODY_SENSORS was revoked for an app
3220 // PACKAGE: The package name of the app the permission was revoked for
3221 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003222 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3223
Chris Wren3824c392017-11-27 12:54:14 -05003224 // ACTION: An app requested the permission SEND_SMS
3225 // PACKAGE: The package name of the app requesting the permission
3226 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003227 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3228
Chris Wren3824c392017-11-27 12:54:14 -05003229 // ACTION: An app was granted the permission SEND_SMS
3230 // PACKAGE: The package name of the app that was granted the permission
3231 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003232 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3233
Chris Wren3824c392017-11-27 12:54:14 -05003234 // ACTION: An app requested the permission SEND_SMS and the request was denied
3235 // PACKAGE: The package name of the app requesting the permission
3236 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003237 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3238
Chris Wren3824c392017-11-27 12:54:14 -05003239 // ACTION: The permission SEND_SMS was revoked for an app
3240 // PACKAGE: The package name of the app the permission was revoked for
3241 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003242 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3243
Chris Wren3824c392017-11-27 12:54:14 -05003244 // ACTION: An app requested the permission RECEIVE_SMS
3245 // PACKAGE: The package name of the app requesting the permission
3246 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003247 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3248
Chris Wren3824c392017-11-27 12:54:14 -05003249 // ACTION: An app was granted the permission RECEIVE_SMS
3250 // PACKAGE: The package name of the app that was granted the permission
3251 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003252 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3253
Chris Wren3824c392017-11-27 12:54:14 -05003254 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3255 // PACKAGE: The package name of the app requesting the permission
3256 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003257 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3258
Chris Wren3824c392017-11-27 12:54:14 -05003259 // ACTION: The permission RECEIVE_SMS was revoked for an app
3260 // PACKAGE: The package name of the app the permission was revoked for
3261 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003262 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3263
Chris Wren3824c392017-11-27 12:54:14 -05003264 // ACTION: An app requested the permission READ_SMS
3265 // PACKAGE: The package name of the app requesting the permission
3266 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003267 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3268
Chris Wren3824c392017-11-27 12:54:14 -05003269 // ACTION: An app was granted the permission READ_SMS
3270 // PACKAGE: The package name of the app that was granted the permission
3271 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003272 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3273
Chris Wren3824c392017-11-27 12:54:14 -05003274 // ACTION: An app requested the permission READ_SMS and the request was denied
3275 // PACKAGE: The package name of the app requesting the permission
3276 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003277 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3278
Chris Wren3824c392017-11-27 12:54:14 -05003279 // ACTION: The permission READ_SMS was revoked for an app
3280 // PACKAGE: The package name of the app the permission was revoked for
3281 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003282 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3283
Chris Wren3824c392017-11-27 12:54:14 -05003284 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3285 // PACKAGE: The package name of the app requesting the permission
3286 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003287 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3288
Chris Wren3824c392017-11-27 12:54:14 -05003289 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3290 // PACKAGE: The package name of the app that was granted the permission
3291 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003292 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3293
Chris Wren3824c392017-11-27 12:54:14 -05003294 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3295 // PACKAGE: The package name of the app requesting the permission
3296 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003297 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3298
Chris Wren3824c392017-11-27 12:54:14 -05003299 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3300 // PACKAGE: The package name of the app the permission was revoked for
3301 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003302 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3303
Chris Wren3824c392017-11-27 12:54:14 -05003304 // ACTION: An app requested the permission RECEIVE_MMS
3305 // PACKAGE: The package name of the app requesting the permission
3306 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003307 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3308
Chris Wren3824c392017-11-27 12:54:14 -05003309 // ACTION: An app was granted the permission RECEIVE_MMS
3310 // PACKAGE: The package name of the app that was granted the permission
3311 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003312 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3313
Chris Wren3824c392017-11-27 12:54:14 -05003314 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3315 // PACKAGE: The package name of the app requesting the permission
3316 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003317 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3318
Chris Wren3824c392017-11-27 12:54:14 -05003319 // ACTION: The permission RECEIVE_MMS was revoked for an app
3320 // PACKAGE: The package name of the app the permission was revoked for
3321 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003322 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3323
Chris Wren3824c392017-11-27 12:54:14 -05003324 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3325 // PACKAGE: The package name of the app requesting the permission
3326 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003327 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3328
Chris Wren3824c392017-11-27 12:54:14 -05003329 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3330 // PACKAGE: The package name of the app that was granted the permission
3331 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003332 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3333
Chris Wren3824c392017-11-27 12:54:14 -05003334 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3335 // PACKAGE: The package name of the app requesting the permission
3336 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003337 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3338
Chris Wren3824c392017-11-27 12:54:14 -05003339 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3340 // PACKAGE: The package name of the app the permission was revoked for
3341 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003342 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3343
Chris Wren3824c392017-11-27 12:54:14 -05003344 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3345 // PACKAGE: The package name of the app requesting the permission
3346 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003347 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3348
Chris Wren3824c392017-11-27 12:54:14 -05003349 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3350 // PACKAGE: The package name of the app that was granted the permission
3351 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003352 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3353
Chris Wren3824c392017-11-27 12:54:14 -05003354 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3355 // PACKAGE: The package name of the app requesting the permission
3356 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003357 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3358
Chris Wren3824c392017-11-27 12:54:14 -05003359 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3360 // PACKAGE: The package name of the app the permission was revoked for
3361 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003362 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3363
Mahaverfa6566e2016-11-29 21:08:14 +00003364 // ACTION: Logged when a provisioning session has started
3365 PROVISIONING_SESSION_STARTED = 734;
3366
3367 // ACTION: Logged when a provisioning session has completed
3368 PROVISIONING_SESSION_COMPLETED = 735;
3369
Chris Wren3824c392017-11-27 12:54:14 -05003370 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3371 // PACKAGE: The package name of the app requesting the permission
3372 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003373 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003374
Chris Wren3824c392017-11-27 12:54:14 -05003375 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3376 // PACKAGE: The package name of the app that was granted the permission
3377 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003378 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003379
Chris Wren3824c392017-11-27 12:54:14 -05003380 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3381 // PACKAGE: The package name of the app requesting the permission
3382 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003383 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003384
Chris Wren3824c392017-11-27 12:54:14 -05003385 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3386 // PACKAGE: The package name of the app the permission was revoked for
3387 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003388 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003389
Santos Cordon3107d292016-09-20 15:50:35 -07003390 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3391 // SUBTYPE: slider value
3392 // CATEGORY: QUICK_SETTINGS
3393 // OS: 6.0
3394 ACTION_BRIGHTNESS_FOR_VR = 498;
3395
Hugo Benichie1cbf152016-12-08 09:36:52 +09003396 // ACTION: A captive portal was detected during network validation
3397 // CATEGORY: NOTIFICATION
3398 // OS: N-MR2
3399 NOTIFICATION_NETWORK_SIGN_IN = 740;
3400
3401 // ACTION: An unvalidated network without Internet was selected by the user
3402 // CATEGORY: NOTIFICATION
3403 // OS: N-MR2
3404 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3405
3406 // ACTION: A validated network failed revalidation and lost Internet access
3407 // CATEGORY: NOTIFICATION
3408 // OS: N-MR2
3409 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3410
3411 // ACTION: The system default network switched to a different network
3412 // CATEGORY: NOTIFICATION
3413 // OS: N-MR2
3414 NOTIFICATION_NETWORK_SWITCH = 743;
3415
Fan Zhang074c4cb2016-12-21 12:10:33 -08003416 // OPEN: Settings > System
3417 SETTINGS_SYSTEM_CATEGORY = 744;
3418
3419 // OPEN: Settings > Storage
3420 SETTINGS_STORAGE_CATEGORY = 745;
3421
3422 // OPEN: Settings > Network & Internet
3423 SETTINGS_NETWORK_CATEGORY = 746;
3424
3425 // OPEN: Settings > Connected Device
3426 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3427
3428 // OPEN: Settings > App & Notification
3429 SETTINGS_APP_NOTIF_CATEGORY = 748;
3430
3431 // OPEN: Settings > System > Input & Gesture
3432 SETTINGS_INPUT_CATEGORY = 749;
3433
3434 // OPEN: Settings > System > Language & Region
3435 SETTINGS_LANGUAGE_CATEGORY = 750;
3436
3437 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3438 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3439
3440 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3441 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3442
3443 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3444 SETTINGS_GESTURE_PICKUP = 753;
3445
3446 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3447 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3448
3449 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3450 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3451
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003452 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3453 // CATEGORY: Settings
3454 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3455
Alison Cichowlas803054d2016-12-13 14:38:01 -05003456 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003457 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003458 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3459 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3460 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003461
Salvador Martinezc43ab062016-12-21 11:09:11 -08003462 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3463 // user accepted
3464 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003465
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003466 // Enclosing category for group of APP_TRANSITION_FOO events,
3467 // logged when we execute an app transition.
3468 APP_TRANSITION = 761;
3469
Fan Zhang945deea2017-01-11 16:37:49 -08003470 // ACTION: User leaves Settings search UI without entering any query.
3471 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3472
3473 // ACTION: Clicking on any search result in Settings.
3474 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003475
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003476 // ACTION: Allow Battery optimization for an app
3477 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3478
3479 // ACTION: Deny Battery optimization for an app
3480 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3481
3482 // ACTION: Enable Device Admin app
3483 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3484
3485 // ACTION: Disable Device Admin app
3486 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3487
3488 // ACTION: Allow "Do Not Disturb access" for an app
3489 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3490
3491 // ACTION: Deny "Do Not Disturb access" for an app
3492 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3493
3494 // ACTION: Allow "Draw over other apps" for an app
3495 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3496
Christine Franks47175c32017-03-14 10:21:25 -07003497 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003498 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3499
3500 // ACTION: Allow "VR helper services" for an app
3501 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3502
3503 // ACTION: Deny "VR helper services" for an app
3504 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3505
3506 // ACTION: Allow "Modify system settings" for an app
3507 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3508
3509 // ACTION: Deny "Modify system settings" for an app
3510 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3511
3512 // ACTION: Allow "Notification access" for an app
3513 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3514
3515 // ACTION: Deny "Notification access" for an app
3516 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3517
3518 // ACTION: "Premium SMS access" for an app - "ask user" option
3519 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3520
3521 // ACTION: "Premium SMS access" for an app - "never allow" option
3522 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3523
3524 // ACTION: "Premium SMS access" for an app - "always allow" option
3525 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3526
3527 // ACTION: Allow "Unrestricted data access" for an app
3528 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3529
3530 // ACTION: Deny "Unrestricted data access" for an app
3531 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3532
3533 // ACTION: Allow "Usage access" for an app
3534 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3535
3536 // ACTION: Deny "Usage access" for an app
3537 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3538
Fan Zhangad5dacc2017-01-18 14:18:54 -08003539 // OPEN: Settings > Apps > Default Apps > Default browser
3540 DEFAULT_BROWSER_PICKER = 785;
3541
3542 // OPEN: Settings > Apps > Default Apps > Default emergency app
3543 DEFAULT_EMERGENCY_APP_PICKER = 786;
3544
3545 // OPEN: Settings > Apps > Default Apps > Default home
3546 DEFAULT_HOME_PICKER = 787;
3547
3548 // OPEN: Settings > Apps > Default Apps > Default phone
3549 DEFAULT_PHONE_PICKER = 788;
3550
3551 // OPEN: Settings > Apps > Default Apps > Default sms
3552 DEFAULT_SMS_PICKER = 789;
3553
3554 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3555 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3556
3557 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3558 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3559
Jason Long1b51da62017-01-24 11:35:31 -08003560 // OPEN: Settings > Apps > Default Apps > Default autofill app
3561 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003562
Chris Wren26ca65d2016-11-29 10:43:28 -05003563 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003564 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003565 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3566 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3567 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3568 NOTIFICATION_ID = 796;
3569 NOTIFICATION_TAG = 797;
3570 NOTIFICATION_SHADE_INDEX = 798;
3571 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003572
Anas Karbilaf7648f42016-12-11 00:55:02 +01003573 // OPEN: QS NFC tile shown
3574 // ACTION: QS NFC tile tapped
3575 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003576 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003577
Chris Wren26ca65d2016-11-29 10:43:28 -05003578 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003579 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003580 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3581 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3582 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3583 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3584 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3585 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3586
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003587 // ACTION: "Force stop" action on an app
3588 ACTION_APP_FORCE_STOP = 807;
3589
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003590 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3591 // CATEGORY: SETTINGS
3592 // OS: 8.0
3593 MANAGE_EXTERNAL_SOURCES = 808;
3594
Mahaver6cd47162017-01-23 09:59:33 +00003595 // ACTION: Logged when terms activity finishes.
3596 // TIME: Indicates time taken by terms activity to finish in MS.
3597 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3598
3599 // Indicates number of terms displayed on the terms screen.
3600 PROVISIONING_TERMS_COUNT = 810;
3601
3602 // Indicates number of terms read on the terms screen.
3603 PROVISIONING_TERMS_READ = 811;
3604
Winson Chung59fda9e2017-01-20 16:14:51 -08003605 // Logs that the user has edited the picture-in-picture settings.
3606 // CATEGORY: SETTINGS
3607 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3608
Winson Chungf4ac0632017-03-17 12:34:12 -07003609 // ACTION: Allow "Enable picture-in-picture" for an app
3610 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003611
Winson Chungf4ac0632017-03-17 12:34:12 -07003612 // ACTION: Deny "Enable picture-in-picture" for an app
3613 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003614
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003615 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3616 // CATEGORY: SETTINGS
3617 // OS: 8.0
3618 TTS_SLIDERS = 815;
3619
Jason Monk524fb402017-01-25 10:33:31 -05003620 // ACTION: Settings -> Display -> Theme
3621 ACTION_THEME = 816;
3622
chchaob8e253a2017-01-25 12:12:09 -08003623 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3624 // ACTION: Select to Speak configuration is chosen
3625 // SUBTYPE: 0 is off, 1 is on
3626 // CATEGORY: SETTINGS
3627 // OS: N
3628 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3629
Anton Philippov95a553e2017-01-27 00:08:24 +00003630 // OPEN: Settings > System > Backup
3631 // CATEGORY: SETTINGS
3632 // OS: O
3633 BACKUP_SETTINGS = 818;
3634
Winson Chung14fbe142016-12-19 16:18:24 -08003635 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003636 // VALUE: true if it was entered while hiding as a result of moving to
3637 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003638 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3639
3640 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3641 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3642 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3643
3644 // ACTION: The activity currently in picture-in-picture was minimized
3645 // VALUE: True if the PiP was minimized, false otherwise
3646 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3647
3648 // ACTION: Picture-in-picture was dismissed via the dismiss button
3649 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3650 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3651
3652 // ACTION: The visibility of the picture-in-picture meny
3653 // VALUE: Whether or not the menu is visible
3654 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3655
3656 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3657 // logged when the aspect ratio changes
3658 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3659
3660 // The current aspect ratio of the PiP, logged when it changes.
3661 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3662
Chris Wren27a52fa2017-02-01 14:21:43 -05003663 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3664 // CATEGORY: GLOBAL_SYSTEM_UI
3665 // OS: O
3666 FIELD_GESTURE_LENGTH = 826;
3667
3668 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3669 // CATEGORY: GLOBAL_SYSTEM_UI
3670 // OS: O
3671 FIELD_GESTURE_VELOCITY = 827;
3672
Christine Franks27fde392017-02-07 10:21:55 -08003673 // OPEN: Carrier demo mode password dialog
3674 CARRIER_DEMO_MODE_PASSWORD = 828;
3675
Fan Zhang70967f32017-02-13 16:02:24 -08003676 // ACTION: Create a Settings shortcut item.
3677 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3678
3679 // ACTION: A tile in Settings information architecture is clicked
3680 ACTION_SETTINGS_TILE_CLICK = 830;
3681
Julia Reynolds520df6e2017-02-13 09:05:10 -05003682 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3683 // updated
3684 // CATEGORY: NOTIFICATION
3685 // OS: O
3686 NOTIFICATION_SNOOZED = 831;
3687
3688 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3689 // OS: O
3690 NOTIFICATION_SNOOZED_CRITERIA = 832;
3691
Fan Zhang65899432017-02-14 13:36:53 -08003692 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003693 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003694 FIELD_CONTEXT = 833;
3695
Fan Zhangd95dcb42017-02-14 13:48:09 -08003696 // ACTION: Settings advanced button is expanded
3697 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3698
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003699 // ACTION: Logs the number of times the saved network evaluator was used to
3700 // recommend a wifi network
3701 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3702
3703 // ACTION: Logs the number of times the recommended network evaluator was
3704 // used to recommend a wifi network
3705 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3706
3707 // ACTION: Logs the number of times a recommended network was resulted in a
3708 // successful connection
3709 // VALUE: true if the connection was successful, false if the connection failed
3710 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3711
Daniel Nishic581bfc2017-02-08 10:18:19 -08003712 // OPEN: Settings > Storage > Games
3713 // CATEGORY: SETTINGS
3714 // OS: O
3715 APPLICATIONS_STORAGE_GAMES = 838;
3716
3717 // OPEN: Settings > Storage > Audio and Music
3718 // CATEGORY: SETTINGS
3719 // OS: O
3720 APPLICATIONS_STORAGE_MUSIC = 839;
3721
3722 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3723 // CATEGORY: SETTINGS
3724 // OS: O
3725 STORAGE_FREE_UP_SPACE_NOW = 840;
3726
3727 // ACTION: Settings > Storage > Files to open the File Manager
3728 // CATEGORY: SETTINGS
3729 // OS: O
3730 STORAGE_FILES = 841;
3731
Fan Zhangb1d49222017-02-15 17:12:58 -08003732 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003733 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003734
Fan Zhang7f2cace2017-02-17 12:05:48 -08003735 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3736 DEFAULT_ASSIST_PICKER = 843;
3737
3738 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3739 DEFAULT_VOICE_INPUT_PICKER = 844;
3740
Daniel Nishi4058a842017-02-21 17:11:35 -08003741 // OPEN: Settings > Storage > [Profile]
3742 SETTINGS_STORAGE_PROFILE = 845;
3743
Doris Lingedb84c32017-02-23 10:56:01 -08003744 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3745 // CATEGORY: SETTINGS
3746 // OS: O
3747 ENCRYPTION_AND_CREDENTIAL = 846;
3748
Fan Zhangb66e5422017-02-24 14:37:45 -08003749 // ACTION: Settings > About device > Build number
3750 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3751
3752 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3753 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3754
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003755 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3756 // CATEGORY: SETTINGS
3757 // OS: O
3758 WIFI_NETWORK_DETAILS = 849;
3759
jackqdyuleia2a14342017-02-28 16:20:48 -08003760 // ACTION: Settings > Battery > Menu > Usage Alerts
3761 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3762
3763 // ACTION: Settings > Battery > Menu > Optimization
3764 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3765
3766 // ACTION: Settings > Battery > Menu > Apps Toggle
3767 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3768
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003769 // ACTION: Settings > Any preference is changed
3770 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3771
3772 // FIELD: The name of preference when it is changed in Settings
3773 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3774
3775 // FIELD: The new value of preference when it is changed in Settings
3776 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3777
Julia Reynoldsd373d782017-03-03 13:32:57 -05003778 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3779 // channel updated
3780 // PACKAGE: the package the channel belongs too
3781 // CATEGORY: NOTIFICATION
3782 // OS: O
3783 ACTION_NOTIFICATION_CHANNEL = 856;
3784
3785 // Tagged data for notification channel. String.
3786 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3787
3788 // Tagged data for notification channel. int.
3789 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3790
3791 // OPEN: Notification channel group created.
3792 // PACKAGE: the package the group belongs to
3793 // CATEGORY: NOTIFICATION
3794 // OS: O
3795 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3796
3797 // Tagged data for notification channel group. String.
3798 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3799
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003800 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3801 // CATEGORY: SETTINGS
3802 // OS: O
3803 SETTINGS_NETWORK_SCORER = 861;
3804
Fan Zhang99861312017-03-07 14:32:38 -08003805 // OPEN: Settings > About device > Model > Hardware info dialog
3806 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3807
mariagpuyol0f5512e2017-03-01 12:09:56 -08003808 // ACTION: Checks whether a contact's phone still exists
3809 // Value 0: It doesn't exist anymore
3810 // Value 1: It still exists
3811 // Value 2: A SecurityException was thrown
3812 // CATEGORY: SETTINGS
3813 // OS: N
3814 ACTION_PHONE_EXISTS = 863;
3815
3816 // ACTION: Retrieves a contact from CP2
3817 // Value 0: Contact retrieved without issues
3818 // Value 1: An IllegalArgumentException was thrown
3819 // CATEGORY: SETTINGS
3820 // OS: N
3821 ACTION_GET_CONTACT = 864;
3822
Chris Wren4d6b54d2017-04-27 16:56:54 -04003823 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003824 // internal platform metrics use.
3825 RESERVED_FOR_LOGBUILDER_PID = 865;
3826
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003827 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3828 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3829
3830 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3831 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3832
3833 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3834 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3835
3836 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3837 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3838
3839 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3840 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3841
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003842 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003843 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003844
Fan Zhang082d21c2017-03-13 15:25:54 -07003845 // ACTION: Settings > App detail > Uninstall
3846 ACTION_SETTINGS_UNINSTALL_APP = 872;
3847
3848 // ACTION: Settings > App detail > Uninstall Device admin app
3849 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3850
3851 // ACTION: Settings > App detail > Disable app
3852 ACTION_SETTINGS_DISABLE_APP = 874;
3853
3854 // ACTION: Settings > App detail > Enable app
3855 ACTION_SETTINGS_ENABLE_APP = 875;
3856
3857 // ACTION: Settings > App detail > Clear data
3858 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3859
3860 // ACTION: Settings > App detail > Clear cache
3861 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3862
3863 // ACTION: Clicking on any search result in Settings.
3864 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3865
3866 // FIELD: Settings inline search result name
3867 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3868
3869 // FIELD: Settings inline search result value
3870 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3871
Fan Zhang53797932017-03-13 17:46:24 -07003872 // ACTION: Settings > Search > Click saved queries
3873 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3874
Doris Lingbf8d9de2017-03-15 11:52:50 -07003875 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3876 // CATEGORY: SETTINGS
3877 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3878
Chris Wren3824c392017-11-27 12:54:14 -05003879 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3880 // PACKAGE: The package name of the app requesting the permission
3881 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003882 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3883
Chris Wren3824c392017-11-27 12:54:14 -05003884 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3885 // PACKAGE: The package name of the app that was granted the permission
3886 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003887 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3888
Chris Wren3824c392017-11-27 12:54:14 -05003889 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3890 // PACKAGE: The package name of the app requesting the permission
3891 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003892 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3893
Chris Wren3824c392017-11-27 12:54:14 -05003894 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3895 // PACKAGE: The package name of the app the permission was revoked for
3896 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003897 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3898
Chris Wren3824c392017-11-27 12:54:14 -05003899 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3900 // PACKAGE: The package name of the app requesting the permission
3901 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003902 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3903
Chris Wren3824c392017-11-27 12:54:14 -05003904 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3905 // PACKAGE: The package name of the app that was granted the permission
3906 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003907 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3908
Chris Wren3824c392017-11-27 12:54:14 -05003909 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3910 // PACKAGE: The package name of the app requesting the permission
3911 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003912 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3913
Chris Wren3824c392017-11-27 12:54:14 -05003914 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3915 // PACKAGE: The package name of the app the permission was revoked for
3916 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003917 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3918
Chris Wren3824c392017-11-27 12:54:14 -05003919 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3920 // PACKAGE: The package name of the app requesting the permission
3921 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003922 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3923
Chris Wren3824c392017-11-27 12:54:14 -05003924 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3925 // PACKAGE: The package name of the app that was granted the permission
3926 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003927 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3928
Chris Wren3824c392017-11-27 12:54:14 -05003929 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3930 // PACKAGE: The package name of the app requesting the permission
3931 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003932 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3933
Chris Wren3824c392017-11-27 12:54:14 -05003934 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3935 // PACKAGE: The package name of the app the permission was revoked for
3936 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003937 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3938
Chris Wren3824c392017-11-27 12:54:14 -05003939 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3940 // PACKAGE: The package name of the app requesting the permission
3941 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003942 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3943
Chris Wren3824c392017-11-27 12:54:14 -05003944 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3945 // PACKAGE: The package name of the app that was granted the permission
3946 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003947 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3948
Chris Wren3824c392017-11-27 12:54:14 -05003949 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3950 // PACKAGE: The package name of the app requesting the permission
3951 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003952 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3953
Chris Wren3824c392017-11-27 12:54:14 -05003954 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3955 // PACKAGE: The package name of the app the permission was revoked for
3956 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003957 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3958
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003959 // ACTION: Phase 1 of instant application resolution occurred
3960 // OS: O
3961 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3962
3963 // ACTION: Phase 2 of instant application resolution occurred
3964 // OS: O
3965 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3966
3967 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3968 // OS: O
3969 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3970
3971 // FIELD: The status of an ephemeral resolution phase
3972 // Value 0: success
3973 // Value 1: no full hash match
3974 // OS: O
3975 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3976
3977 // FIELD - A token to identify all events that are part of the same instant application launch
3978 // OS: O
3979 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3980
3981 // FIELD - The name of the package responsible for launching the activity
3982 // OS: O
3983 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3984
3985 // FIELD - Whether or not the launched activity is part of an instant application
3986 // OS: O
3987 APP_TRANSITION_IS_EPHEMERAL = 905;
3988
Felipe Lemef61ba5c2018-05-21 11:18:46 -07003989 // An autofill session was started.
3990 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003991 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003992 // NOTE: starting on OS MR1, it also added the following field:
3993 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3994 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07003995 // Tag FIELD_AUTOFIL_FLAGS - Flags used to start the session
Felipe Leme11166522018-05-07 10:18:47 -07003996 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003997 AUTOFILL_SESSION_STARTED = 906;
3998
3999 // An autofill request was processed by a service
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004000 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4001 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004002 // Package: Package of app that is autofilled
4003 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004004 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004005 // the service returned a null response
4006 // NOTE: starting on OS P, it also added the following fields:
4007 // TYPE_CLOSE: request timed out before service called a FillCallback method
4008 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4009 // with 1.
4010 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4011 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4012 // was focused.
4013 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004014 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004015 // number of entries field ids in the request.
4016 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4017 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4018 // - AUTOFILL_UI_LATENCY
4019 // - AUTOFILL_AUTHENTICATED;
4020 // - AUTOFILL_DATASET_AUTHENTICATED
4021 // - AUTOFILL_INVALID_AUTHENTICATION
4022 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004023 AUTOFILL_REQUEST = 907;
4024
4025 // Tag of a field for a package of an autofill service
4026 FIELD_AUTOFILL_SERVICE = 908;
4027
4028 // Tag of a field for the number of datasets
4029 FIELD_AUTOFILL_NUM_DATASETS = 909;
4030
4031 // An autofill dataset selection UI was shown
4032 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4033 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4034 // Type TYPE_ACTION: dataset was selected
4035 // Type TYPE_DETAIL: authentication was selected
4036 // Package: Package of app that was autofilled
4037 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4038 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Leme6ef61b82018-02-15 16:26:02 -08004039 // NOTE: starting on OS P, it also added the following field:
4040 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004041 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004042 AUTOFILL_FILL_UI = 910;
4043
4044 // Tag of a field for the length of the filter text
4045 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4046
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004047 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004048 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004049 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004050 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004051 AUTOFILL_AUTHENTICATED = 912;
4052
4053 // An activity was autofilled and all values could be applied
4054 // Package: Package of app that is autofilled
4055 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4056 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Leme11166522018-05-07 10:18:47 -07004057 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004058 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004059 AUTOFILL_DATASET_APPLIED = 913;
4060
4061 // Tag of a field for the number values to be filled in
4062 FIELD_AUTOFILL_NUM_VALUES = 914;
4063
4064 // Tag of a field for the number of views that were filled
4065 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4066
4067 // An autofill save UI was shown
4068 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4069 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4070 // Type TYPE_ACTION: data was saved
4071 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004072 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
4073 // NOTE: starting on OS P, it also added the following field:
4074 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004075 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004076 AUTOFILL_SAVE_UI = 916;
4077
4078 // Tag of a field for the number of saveable ids
4079 FIELD_AUTOFILL_NUM_IDS = 917;
4080
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004081 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004082 // Type TYPE_SUCCESS: The request succeeded right away
4083 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004084 // Type TYPE_FAILURE: The request failed
4085 // Package: Package of app that was autofilled
4086 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004087 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004088 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004089 AUTOFILL_DATA_SAVE_REQUEST = 918;
4090
4091 // An auto-fill session was finished
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004092 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004093 // Package: Package of app that was autofilled
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004094 // NOTE: starting on OS P, it also added the following fields:
4095 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4096 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4097 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4098 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004099 AUTOFILL_SESSION_FINISHED = 919;
4100
Chris Wren148805582017-03-17 17:18:11 -04004101 // meta-event: a reader has checkpointed the log here.
4102 METRICS_CHECKPOINT = 920;
4103
Fan Zhanged1845f2017-03-23 14:46:59 -07004104 // OPEN: Settings -> Display -> When in VR Mode
4105 VR_DISPLAY_PREFERENCE = 921;
4106
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004107 // OPEN: Settings > Accessibility > Magnification
4108 // CATEGORY: SETTINGS
4109 // OS: O
4110 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004111
4112 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4113 // app.
4114 // VALUE: The package name of the app
4115 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4116
Fan Zhang1a34e752017-03-24 13:44:51 -07004117 // OPEN: Settings -> System -> Reset options
4118 RESET_DASHBOARD = 924;
4119
Jason Monk8c09ac72017-03-16 11:53:40 -04004120 // ACTION: QS -> Tile clicked
4121 ACTION_QS_CLICK = 925;
4122
4123 // ACTION: QS -> Secondary click
4124 ACTION_QS_SECONDARY_CLICK = 926;
4125
4126 // FIELD: Position info in QS clicks
4127 FIELD_QS_POSITION = 927;
4128
4129 // FIELD: The value of a QS tile when clicked (if applicable)
4130 FIELD_QS_VALUE = 928;
4131
4132 // ACTION: QS -> Detail panel -> more settings
4133 ACTION_QS_MORE_SETTINGS = 929;
4134
4135 // ACTION: QS -> Click date
4136 ACTION_QS_DATE = 930;
4137
Jason Monk1b775652017-03-31 15:42:27 -04004138 // ACTION: Event on nav button
4139 ACTION_NAV_BUTTON_EVENT = 931;
4140
4141 // FIELD: Flags for a nav button event
4142 FIELD_FLAGS = 932;
4143
4144 // FIELD: Action for a nav button event
4145 FIELD_NAV_ACTION = 933;
4146
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004147 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4148 // CATEGORY: SETTINGS
4149 // OS: O
4150 FINGERPRINT_REMOVE_SIDECAR = 934;
4151
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004152 // OPEN: Settings > Storage > Movies & TV
4153 // CATEGORY: SETTINGS
4154 // OS: O
4155 APPLICATIONS_STORAGE_MOVIES = 935;
4156
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004157 // OPEN: Text selection "assist" menu item shown.
4158 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4159 // CATEGORY: TEXT_CONTROLS
4160 // OS: O
4161 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4162
4163 // ACTION: Text selection "assist" menu item clicked.
4164 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4165 // CATEGORY: TEXT_CONTROLS
4166 // OS: O
4167 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4168
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004169 // OPEN: Settings > Security > Managed Device Info > Apps installed
4170 // CATEGORY: SETTINGS
4171 // OS: O
4172 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4173
4174 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4175 // CATEGORY: SETTINGS
4176 // OS: O
4177 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4178
4179 // OPEN: Settings > Security > Managed Device Info > Default apps
4180 // CATEGORY: SETTINGS
4181 // OS: O
4182 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4183
Julia Reynolds80b18072017-04-23 12:27:07 -04004184 // OPEN: Settings > Notifications > An app > A channel > Importance
4185 // CATEGORY: SETTINGS
4186 // OS: O
4187 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4188
4189 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4190 // CATEGORY: SETTINGS
4191 // OS: O
4192 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4193
Chris Wren4d6b54d2017-04-27 16:56:54 -04004194 // This value should never appear in log outputs - it is reserved for
4195 // internal platform metrics use.
4196 RESERVED_FOR_LOGBUILDER_UID = 943;
4197
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004198 // OPEN: Running background apps notification > List of background apps
4199 // CATEGORY: GLOBAL_SYSTEM_UI
4200 // OS: O
4201 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4202
Jorim Jaggi515dd682017-05-05 15:05:07 +02004203 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4204 // client.
4205 // OS: O
4206 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4207
Chris Wrenb3921792017-06-01 13:34:46 -04004208 // FIELD - The group ID of a notification.
4209 // Type: string
4210 // OS: O
4211 FIELD_NOTIFICATION_GROUP_ID = 946;
4212
4213 // FIELD - If the notification is a group summary: 1.
4214 // Type: int encoded boolean
4215 // OS: O
4216 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4217
Felipe Leme637e05e2017-12-06 12:09:37 -08004218 // An app attempted to forge a different component name in the AssisStructure that would be
4219 // passed to the autofill service.
4220 // OS: O (security patch)
4221 // Package: Real package of the app being autofilled
4222 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4223 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004224 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004225 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004226 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4227
4228 // FIELD - The component that an app tried tro forged.
4229 // Type: string
4230 // OS: O (security patch)
4231 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4232
Chris Wren26ca65d2016-11-29 10:43:28 -05004233 // ---- End O Constants, all O constants go above this line ----
4234
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004235 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4236 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4237
jackqdyulei92e492e2017-04-28 13:04:42 -07004238 // OPEN: Settings > Battery > High Usage > Abnormal app page
4239 // CATEGORY: SETTINGS
4240 FUELGAUGE_ANOMALY_DETAIL = 987;
4241
4242 // OPEN: Settings > Battery > High Usage
4243 DIALOG_HANDLE_ANOMALY = 988;
4244
Jonathan Solnita4138162017-05-10 21:06:04 -07004245 // ACTION: Camera lift gesture
4246 // CATEGORY: GLOBAL_SYSTEM_UI
4247 // OS: O
4248 ACTION_CAMERA_LIFT_TRIGGER = 989;
4249
Maurice Lam76ae09c2017-05-05 12:03:49 -07004250 // OPEN: Choose screen lock dialog in Settings
4251 // CATEGORY: SETTINGS
4252 // OS: O DR
4253 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4254
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004255 // OPEN: Assist Gesture training intro in Settings
4256 // CATEGORY: SETTINGS
4257 // OS: O DR
4258 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4259
4260 // OPEN: Assist Gesture training enrolling in Settings
4261 // CATEGORY: SETTINGS
4262 // OS: O DR
4263 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4264
4265 // OPEN: Assist Gesture training finished in Settings
4266 // CATEGORY: SETTINGS
4267 // OS: O DR
4268 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4269
Fan Zhangc666a202017-05-18 17:50:20 -07004270 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4271 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4272
4273 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4274 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4275
Philip Quinn0f9566d2017-05-23 10:32:08 -07004276 // OPEN: Settings > System > Languages & input > Assist gesture
4277 // CATEGORY: SETTINGS
4278 // OS: O DR
4279 SETTINGS_ASSIST_GESTURE = 996;
4280
4281 // ACTION: Assist gesture released without triggering
4282 // CATEGORY: GLOBAL_SYSTEM_UI
4283 // OS: O DR
4284 ASSIST_GESTURE_RELEASED = 997;
4285
4286 // ACTION: Assist gesture primed
4287 // CATEGORY: GLOBAL_SYSTEM_UI
4288 // OS: O DR
4289 ASSIST_GESTURE_PRIMED = 998;
4290
4291 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004292 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004293 // CATEGORY: GLOBAL_SYSTEM_UI
4294 // OS: O DR
4295 ASSIST_GESTURE_TRIGGERED = 999;
4296
Fan Zhang238162b2017-05-25 14:01:41 -07004297 // ACTION: Update default app from Settings
4298 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4299
4300 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004301 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004302
4303 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004304 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004305
Adrian Roos1c81d772017-05-25 18:00:21 -07004306 // OPEN: Settings > Display > Ambient Display
4307 // CATEGORY: SETTINGS
4308 // OS: O DR
4309 AMBIENT_DISPLAY_SETTINGS = 1003;
4310
Hugo Benichi11da42b2017-05-31 11:11:37 +09004311 // ACTION: CaptivePortalLoginActivity starts
4312 // CATEGORY: GLOBAL_SYSTEM_UI
4313 // OS: O DR
4314 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4315
4316 // ACTION: CaptivePortalLoginActivity auto-closes
4317 // CATEGORY: GLOBAL_SYSTEM_UI
4318 // OS: O DR
4319 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4320
4321 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4322 // CATEGORY: GLOBAL_SYSTEM_UI
4323 // OS: O DR
4324 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4325
4326 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4327 // CATEGORY: GLOBAL_SYSTEM_UI
4328 // OS: O DR
4329 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4330
4331 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4332 // CATEGORY: SETTINGS
4333 // OS: O DR
4334 ACTION_WIFI_SIGNIN = 1008;
4335
Antony Sargentf3cc3172017-05-04 14:58:06 -07004336 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4337 // CATEGORY: SETTINGS
4338 // OS: O DR
4339 BLUETOOTH_DEVICE_DETAILS = 1009;
4340
fanzhang172255759d2017-06-05 21:43:47 -07004341 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4342 CONFIGURE_KEYGUARD_DIALOG = 1010;
4343
Fan Zhange33c70d2017-06-06 12:37:13 -07004344 // Open: Settings > Search > No Result View
4345 SETTINGS_SEARCH_NO_RESULT = 1011;
4346
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004347 // OPEN: Assist Gesture before training
4348 // CATEGORY: SETTINGS
4349 // OS: O DR
4350 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4351
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004352 // CaptivePortalLoginActivity displays SSL error page
4353 // CATEGORY: GLOBAL_SYSTEM_UI
4354 // OS: O DR
4355 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4356
Fan Zhang1a0fc992017-06-13 13:45:21 -07004357 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4358 WIFI_TETHER_SETTINGS = 1014;
4359
Antony Sargentc3b5da62017-06-16 11:50:13 -07004360 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4361 // -> Edit name button.
4362 // CATEGORY: SETTINGS
4363 // OS: O DR
4364 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4365
Fan Zhang543587d2017-06-19 12:32:14 -07004366 // ACTION: Settings > Notification Settings > Open application notification
4367 // CATEGORY: SETTINGS
4368 // OS: O DR
4369 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4370
4371 // ACTION: Settings > App Info > Open app settings
4372 // CATEGORY: SETTINGS
4373 // OS: O DR
4374 ACTION_OPEN_APP_SETTING = 1017;
4375
jackqdyulei2f1a3592017-06-19 13:11:05 -07004376 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4377 // CATEGORY: SETTINGS
4378 // OS: O DR
4379 BLUETOOTH_PAIRING = 1018;
4380
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004381 // ACTION: Collect PSD Signals
4382 // CATEGORY: SETTINGS
4383 // OS: O DR
4384 ACTION_PSD_LOADER = 1019;
4385
jackqdyulei602bcc92017-06-21 15:17:53 -07004386 // ACTION: Background check action on an app
4387 // CATEGORY: SETTINGS
4388 // OS: O DR
4389 ACTION_APP_BACKGROUND_CHECK = 1020;
4390
4391 // ACTION: Location check action on an app
4392 // CATEGORY: SETTINGS
4393 // OS: O DR
4394 ACTION_APP_LOCATION_CHECK = 1021;
4395
Charlie Wang15a36ed2017-06-14 14:46:39 -07004396 // Device headset status
4397 // CATEGORY: OTHER
4398 // SUBTYPE: 1 is DON, 2 is DOFF
4399 // OS: O DR
4400 ACTION_HEADSET_STATUS = 1022;
4401
4402 // Device Headset Plug status
4403 // CATEGORY: OTHER
4404 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4405 // OS: O DR
4406 ACTION_HEADSET_PLUG = 1023;
4407
4408 // Device Headset battery level on Plug
4409 // CATEGORY: OTHER
4410 // FIELD - The battery percentage when the user decided to plug in
4411 // Type: integer
4412 // OS: O DR
4413 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4414
Charlie Wang566ec702017-06-26 15:30:03 -07004415 // Device Headset battery level on Plug
4416 // CATEGORY: OTHER
4417 // FIELD - The battery percentage when the user decided to plug in
4418 // Type: integer
4419 // OS: O DR
4420 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4421
Charlie Wang15a36ed2017-06-14 14:46:39 -07004422 // Device Headset Pose status
4423 // CATEGORY: OTHER
4424 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4425 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004426 ACTION_HEADSET_POSE_STATUS = 1026;
4427
4428 // Device Headset Usage session time
4429 // CATEGORY: OTHER
4430 // FIELD - The time the headset was used in a session
4431 // OS: O DR
4432 FIELD_SESSION_TIME_MS = 1027;
4433
4434 // Device Headset Idle time
4435 // CATEGORY: OTHER
4436 // FIELD - The time in between each session
4437 // OS: O DR
4438 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4439
4440 // Device Headset charge session time
4441 // CATEGORY: OTHER
4442 // FIELD - The time taken for each charge
4443 // OS: O DR
4444 FIELD_TIME_OF_CHARGE_MS = 1029;
4445
4446 // Device Headset time between charge
4447 // CATEGORY: OTHER
4448 // FIELD - The time in between each charge
4449 // OS: O DR
4450 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004451
Antony Sargentca701a22017-07-05 17:02:00 -07004452 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4453 // -> Forget button.
4454 // CATEGORY: SETTINGS
4455 // OS: O DR
4456 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4457
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004458 // An event from the camera service
4459 // CATEGORY: OTHER
4460 // SUBTYPE: CameraEvent
4461 // OS: O DR
4462 ACTION_CAMERA_EVENT = 1032;
4463
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004464 // OPEN: Settings > Trampoline Intent > Settings page
4465 // CATEGORY: SETTINGS
4466 // OS: O DR
4467 TRAMPOLINE_SETTINGS_EVENT = 1033;
4468
Chris Wren9a4f2662017-06-29 10:10:02 -04004469 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4470
Malcolm Chen21062542017-06-20 11:36:01 -07004471 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4472 // CATEGORY: SETTINGS
4473 // OS: O MR
4474 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4475
4476 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4477 // CATEGORY: SETTINGS
4478 // OS: O MR
4479 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4480
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004481 // FIELD - State of asynchronous ranking when Settings search result is clicked
4482 // CATEGORY: SETTINGS
4483 // OS: O MR
4484 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4485
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004486 // ACTION: Settings > Connected devices > SMS Mirroring
4487 // CATEGORY: SETTINGS
4488 // OS: O MR
4489 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4490
Kang Li2c571892017-07-05 14:47:32 -07004491 // ACTION: Chooser picked a ranked target.
4492 // CATEGORY: GLOBAL_SYSTEM_UI
4493 // OS: O MR
4494 ACTION_TARGET_SELECTED = 1085;
4495
4496 // FIELD - is category used in Chooser: 1.
4497 // Type: int encoded boolean
4498 // CATEGORY: GLOBAL_SYSTEM_UI
4499 // OS: O MR
4500 FIELD_IS_CATEGORY_USED = 1086;
4501
4502 // FIELD - ranked position of selected target for Chooser.
4503 // CATEGORY: GLOBAL_SYSTEM_UI
4504 // OS: O MR
4505 FIELD_RANKED_POSITION = 1087;
4506
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004507 // OPEN: Settings > Data plan usage
4508 // CATEGORY: SETTINGS
4509 // OS: O MR
4510 DATA_PLAN_USAGE_SUMMARY = 1088;
4511
Doris Lingce007eb2017-08-09 13:59:46 -07004512 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4513 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4514
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004515 // ACTION: Logged when the app has notified that it has fully drawn. See
4516 // Activity.reportFullyDrawn().
4517 APP_TRANSITION_REPORTED_DRAWN = 1090;
4518
4519 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4520 // the app transition.
4521 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4522
Daniel Nishia86115f2017-08-23 10:27:08 -07004523 // OPEN: Settings > Storage > Photos & Videos
4524 // CATEGORY: SETTINGS
4525 // OS: O MR
4526 APPLICATIONS_STORAGE_PHOTOS = 1092;
4527
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004528 // ACTION: Logged when the status bar icons change.
4529 // OS: O MR
4530 STATUS_BAR_ICONS_CHANGED = 1093;
4531
4532 // FIELD: Bitfield indicating which icons are shown.
4533 // OS: O MR
4534 FIELD_STATUS_ICONS = 1094;
4535
4536 // FIELD: Number of status icons currently shown.
4537 // OS: O MR
4538 FIELD_NUM_STATUS_ICONS = 1095;
4539
Jack He4b605792017-09-01 11:48:30 -07004540 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4541 // CATEGORY: SETTINGS
4542 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004543 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004544
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004545 // FIELD - Whether smart suggestion ranking was enabled or not
4546 // Type: int encoded boolean
4547 // CATEGORY: SETTINGS
4548 // OS: O MR
4549 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4550
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004551 // ACTION: The device boots
4552 ACTION_BOOT = 1098;
4553
4554 // FIELD: A string value representing some state of the platform, e.g., boot reason
4555 FIELD_PLATFORM_REASON = 1099;
4556
Jan Althaus786a39d2017-09-15 10:41:16 +02004557 // CATEGORY: The category for all actions relating to selection session logging.
4558 // OS: O MR
4559 TEXT_SELECTION_SESSION = 1100;
4560
4561 // ACTION: A selection session started (i.e. the selection handles appeared)
4562 // CATEGORY: TEXT_SELECTION_SESSION
4563 // OS: O MR
4564 ACTION_TEXT_SELECTION_START = 1101;
4565
4566 // ACTION: The user modified the selection (e.g. by dragging the handles)
4567 // CATEGORY: TEXT_SELECTION_SESSION
4568 // OS: O MR
4569 ACTION_TEXT_SELECTION_MODIFY = 1102;
4570
4571 // ACTION: The user modified the selection by pressing the "select all" button.
4572 // CATEGORY: TEXT_SELECTION_SESSION
4573 // OS: O MR
4574 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4575
4576 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4577 // CATEGORY: TEXT_SELECTION_SESSION
4578 // OS: O MR
4579 ACTION_TEXT_SELECTION_RESET = 1104;
4580
4581 // ACTION: Smart selection made a single word prediction
4582 // CATEGORY: TEXT_SELECTION_SESSION
4583 // OS: O MR
4584 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4585
4586 // ACTION: Smart selection made a multi word prediction
4587 // CATEGORY: TEXT_SELECTION_SESSION
4588 // OS: O MR
4589 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4590
4591 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4592 // CATEGORY: TEXT_SELECTION_SESSION
4593 // OS: O MR
4594 ACTION_TEXT_SELECTION_AUTO = 1107;
4595
4596 // ACTION: A selection session ended with the user typing over the text
4597 // CATEGORY: TEXT_SELECTION_SESSION
4598 // OS: O MR
4599 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4600
4601 // ACTION: A selection session ended with the user copying the text
4602 // CATEGORY: TEXT_SELECTION_SESSION
4603 // OS: O MR
4604 ACTION_TEXT_SELECTION_COPY = 1109;
4605
4606 // ACTION: A selection session ended with the user pasting over the text
4607 // CATEGORY: TEXT_SELECTION_SESSION
4608 // OS: O MR
4609 ACTION_TEXT_SELECTION_PASTE = 1110;
4610
4611 // ACTION: A selection session ended with the user cutting the text
4612 // CATEGORY: TEXT_SELECTION_SESSION
4613 // OS: O MR
4614 ACTION_TEXT_SELECTION_CUT = 1111;
4615
4616 // ACTION: A selection session ended with the user pressing the share button
4617 // CATEGORY: TEXT_SELECTION_SESSION
4618 // OS: O MR
4619 ACTION_TEXT_SELECTION_SHARE = 1112;
4620
4621 // ACTION: A selection session ended with the user pressing the smart share button
4622 // CATEGORY: TEXT_SELECTION_SESSION
4623 // OS: O MR
4624 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4625
4626 // ACTION: A selection session ended with the user dragging the text
4627 // CATEGORY: TEXT_SELECTION_SESSION
4628 // OS: O MR
4629 ACTION_TEXT_SELECTION_DRAG = 1114;
4630
4631 // ACTION: A selection session ended with the user abandoning the selection
4632 // CATEGORY: TEXT_SELECTION_SESSION
4633 // OS: O MR
4634 ACTION_TEXT_SELECTION_ABANDON = 1115;
4635
4636 // ACTION: A selection session ended with the user picking an unhandled action bar item
4637 // CATEGORY: TEXT_SELECTION_SESSION
4638 // OS: O MR
4639 ACTION_TEXT_SELECTION_OTHER = 1116;
4640
4641 // FIELD: Time in milliseconds from the start of the session to this event
4642 // CATEGORY: TEXT_SELECTION_SESSION
4643 // OS: O MR
4644 FIELD_SELECTION_SINCE_START = 1117;
4645
4646 // FIELD: time in milliseconds between the last event in the session and this one
4647 // CATEGORY: TEXT_SELECTION_SESSION
4648 // OS: O MR
4649 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4650
4651 // FIELD: a random uid for a selection session (lasting from select start to end)
4652 // CATEGORY: TEXT_SELECTION_SESSION
4653 // OS: O MR
4654 FIELD_SELECTION_SESSION_ID = 1119;
4655
4656 // FIELD: the sequence number of the event in the session
4657 // CATEGORY: TEXT_SELECTION_SESSION
4658 // OS: O MR
4659 FIELD_SELECTION_SESSION_INDEX = 1120;
4660
4661 // FIELD: a concatenation of the widget type and ML model version.
4662 // CATEGORY: TEXT_SELECTION_SESSION
4663 // OS: O MR
4664 FIELD_SELECTION_VERSION_TAG = 1121;
4665
4666 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4667 // packed 16bit integers. (start in MSBs, end in LSBs)
4668 // CATEGORY: TEXT_SELECTION_SESSION
4669 // OS: O MR
4670 FIELD_SELECTION_RANGE = 1122;
4671
4672 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4673 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4674 // CATEGORY: TEXT_SELECTION_SESSION
4675 // OS: O MR
4676 FIELD_SELECTION_SMART_RANGE = 1123;
4677
Felipe Lemeb22d6352017-09-08 20:03:53 -07004678 // The value of an autofillable and savable view was reset
4679 // Package: Package of app that was autofilled
4680 // OS: O MR
4681 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4682 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Leme11166522018-05-07 10:18:47 -07004683 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004684 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004685 AUTOFILL_VALUE_RESET = 1124;
4686
4687 // Tag of AUTOFILL_VALUE_RESET
4688 // OS: O MR
4689 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4690
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004691 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004692 // Package: Package of app that was autofilled
4693 // OS: O MR
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004694 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004695 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4696
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004697 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004698 // Package: Package of app that was autofilled
4699 // OS: O MR
4700 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004701 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004702 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4703
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004704 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004705 // Package: Package of app that was autofilled
4706 // OS: O MR
4707 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004708 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004709 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4710
Felipe Leme2c888422017-10-26 12:46:35 -07004711 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004712 // Package: Package of app that is autofilled
4713 // OS: O MR
4714 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4715 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004716 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004717 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004718 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4719
4720 // FIELD - Type of save object passed by the service when the Save UI is shown
4721 // OS: O MR
4722 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4723
Felipe Leme2c888422017-10-26 12:46:35 -07004724 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004725 // Package: Package of app that is autofilled
4726 // OS: O MR
4727 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4728 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004729 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004730 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004731 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4732
Felipe Leme2c888422017-10-26 12:46:35 -07004733 // 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 -07004734 // Package: Package of app that is autofilled
4735 // OS: O MR
4736 // Type TYPE_UNKNOWN: The link was not properly set by the service
4737 // Type TYPE_OPEN: The link launched an activity
4738 // Type TYPE_FAILURE: The link could not launc an activity
4739 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4740 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004741 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004742 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004743 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4744
4745 // Result of the validation on save when an autofill service provided a validator
4746 // Package: Package of app that is autofilled
4747 // OS: O MR
4748 // Type TYPE_FAILURE: The validation could not be performed due to an error
4749 // Type TYPE_SUCCESS: The validation passed
4750 // Type TYPE_DISMISS: The validation failed
4751 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4752 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004753 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004754 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004755 AUTOFILL_SAVE_VALIDATION = 1133;
4756
Felipe Leme2c888422017-10-26 12:46:35 -07004757 // 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 -07004758 // provided by the autofill service
4759 // Package: Package of app that is autofilled
4760 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004761 // Type TYPE_OPEN: The autofill save UI was restored
4762 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004763 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Leme11166522018-05-07 10:18:47 -07004764 // NOTE: starting on OS P, it also added the following field:
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004765 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004766 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4767
Felipe Leme9d414492017-09-20 13:55:28 -07004768 // Autofill service called API that disables itself
4769 // Package: Package of the autofill service
4770 // OS: O MR
4771 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4772
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004773 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004774 // Reports how long it took to show the autofill UI after a field was focused
4775 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004776 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4777 // Package: Package of the autofill service
4778 // OS: O MR
4779 AUTOFILL_UI_LATENCY = 1136;
4780
Chris Wren21a2e722017-10-02 17:44:53 -04004781 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4782 // OS: O MR
4783 NOTIFICATION_SNOOZE_CLICKED = 1137;
4784
4785 // Action: user selected a notification snooze duration from the drop down
4786 // OS: O MR
4787 NOTIFICATION_SELECT_SNOOZE = 1138;
4788
4789 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4790 // OS: O MR
4791 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4792
4793 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4794 // OS: O MR
4795 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4796
4797 // Action: user tapped undo on the notification snooze leave-behind
4798 // OS: O MR
4799 NOTIFICATION_UNDO_SNOOZE = 1141;
4800
4801 // Action: user togged the visibility of the notification snooze options drop down
4802 // OS: O MR
4803 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4804
Romain Guy62e8c172017-10-24 21:37:34 +01004805 // OPEN: Settings > Display > Colors
4806 // CATEGORY: SETTINGS
4807 // OS: O MR
4808 COLOR_MODE_SETTINGS = 1143;
4809
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004810 // Enclosing category for group of APP_TRANSITION_FOO events,
4811 // logged when we cancel an app transition.
4812 APP_TRANSITION_CANCELLED = 1144;
4813
Felipe Lemeb659adb2018-01-18 15:21:36 -08004814 // Tag of a field representing a duration on autofill-related metrics.
4815 FIELD_AUTOFILL_DURATION = 1145;
4816
Doris Lingce007eb2017-08-09 13:59:46 -07004817 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4818
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004819 // OPEN: Settings > Network & Internet > Mobile network
4820 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004821 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004822
4823 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4824 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004825 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004826
4827 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4828 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004829 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004830
4831 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4832 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004833 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004834
4835 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4836 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004837 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004838
4839 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4840 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004841 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004842
4843 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4844 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004845 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004846
4847 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4848 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004849 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004850
4851 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4852 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004853 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004854
4855 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4856 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004857 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004858
4859 // ACTION: Settings > Network & Internet > Mobile network > Network
4860 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004861 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004862
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004863 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004864 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004865
4866 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4867 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004868 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004869
4870 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4871 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004872 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004873
4874 // OPEN: Settings > Network & Internet > Mobile network > System select
4875 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004876 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004877
4878 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4879 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004880 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004881
4882 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4883 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004884 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004885
Fan Zhanga2f2c912017-08-15 17:20:37 -07004886 // OPEN: Settings > Developer Options > Experiment dashboard
4887 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004888 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004889
Julia Reynolds005c8b92017-08-24 10:35:53 -04004890 // OPEN: Settings > Notifications > [App] > Topic Notifications
4891 // CATEGORY: SETTINGS
4892 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004893 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004894
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004895 // OPEN: Settings > Developer options > Enable > Info dialog
4896 // CATEGORY: SETTINGS
4897 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004898 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004899
jeffreyhuang57359c02017-09-18 11:34:00 -07004900 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4901 // CATEGORY: SETTINGS
4902 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004903 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004904
Kevin Chyn60eea712017-09-26 16:03:05 -07004905 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4906 // CATEGORY: SETTINGS
4907 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004908 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004909
jeffreyhuang37c4b132017-09-21 14:09:20 -07004910 // OPEN: Settings > Developer options > USB debugging > Info dialog
4911 // CATEGORY: SETTINGS
4912 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004913 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004914
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004915 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4916 // CATEGORY: SETTINGS
4917 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004918 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004919
Fan Zhange5b34302017-10-09 15:58:38 -07004920 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004921 // CATEGORY: SETTINGS
4922 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004923 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4924
jeffreyhuang49de1252017-10-05 15:25:14 -07004925 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4926 // CATEGORY: SETTINGS
4927 // OS: P
4928 DIALOG_LOG_PERSIST = 1225;
4929
Beverly04216872017-09-28 10:55:32 -04004930 // ACTION: DND Settings > Priority only allows > Alarms toggle
4931 // SUBTYPE: 0 is off, 1 is on
4932 // CATEGORY: SETTINGS
4933 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004934 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004935
4936 // ACTION: DND Settings > Priority only allows > Media toggle
4937 // SUBTYPE: 0 is off, 1 is on
4938 // CATEGORY: SETTINGS
4939 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004940 ACTION_ZEN_ALLOW_MEDIA = 1227;
4941
4942 // An autofill service explicitly defined which view should commit the autofill context
4943 // Package: Package of app that is autofilled
4944 // OS: P
4945 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004946 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004947 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4948
4949 // The autofill context was commited when the user clicked a view explicitly marked by the
4950 // service as committing it
4951 // Package: Package of app that is autofilled
4952 // OS: P
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004953 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004954 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004955
Malcolm Chen4f17b172017-10-19 13:54:07 -07004956 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4957 // CATEGORY: SETTINGS
4958 // OS: P
4959 WIFI_CALLING_FOR_SUB = 1230;
4960
Felipe Leme17292d12017-10-24 14:03:10 -07004961 // An autofill service asked to disable autofill for a given application.
4962 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004963 // OS: P
4964 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004965 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004966 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004967 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4968
4969 // An autofill service asked to disable autofill for a given activity.
4970 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004971 // OS: P
4972 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4973 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08004974 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Lemef61ba5c2018-05-21 11:18:46 -07004975 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004976 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
4977
jackqdyuleide3b7af2017-10-24 16:32:58 -07004978 // ACTION: Stop an app and turn on background check
4979 // CATEGORY: SETTINGS
4980 // OS: P
4981 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
4982
4983 // FIELD: The action type for each anomaly
4984 // CATEGORY: SETTINGS
4985 // OS: P
4986 FIELD_ANOMALY_ACTION_TYPE = 1234;
4987
4988 // OPEN: Settings -> Battery -> Wakelock anomaly
4989 // CATEGORY: SETTINGS
4990 // OS: P
4991 ANOMALY_TYPE_WAKELOCK = 1235;
4992
4993 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
4994 // CATEGORY: SETTINGS
4995 // OS: P
4996 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
4997
4998 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
4999 // CATEGORY: SETTINGS
5000 // OS: P
5001 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5002
Fan Zhanga4a01722017-10-30 17:54:24 -07005003 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5004 // OS: P
5005 DIALOG_OEM_LOCK_INFO = 1238;
5006
jackqdyulei331fafb2017-11-01 14:01:24 -07005007 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5008 // CATEGORY: SETTINGS
5009 // OS: P
5010 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5011
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005012 // Open: Settings > System > About phone > IMEI
5013 // CATEGORY: SETTINGS
5014 // OS: P
5015 DIALOG_IMEI_INFO = 1240;
5016
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005017 // In permission action fields tagged like this reference the permission affected
5018 FIELD_PERMISSION = 1241;
5019
5020 // ACTION: An app requested a permission and we asked to user to approve the request
5021 // PACKAGE: The package name of the app requesting the permission
5022 // Tag FIELD_PERMISSION: Name of the permission requested
5023 ACTION_PERMISSION_REQUESTED = 1242;
5024
5025 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5026 // or automatically. In the second case there will not be an
5027 // ACTION_PERMISSION_REQUESTED.
5028 // PACKAGE: The package name of the app that was granted the permission
5029 // Tag FIELD_PERMISSION: Name of the permission granted
5030 ACTION_PERMISSION_GRANTED = 1243;
5031
5032 // ACTION: An app requested the a permission and the request was denied by the user or a device
5033 // policy
5034 // PACKAGE: The package name of the app requesting the permission
5035 // Tag FIELD_PERMISSION: Name of the permission denied
5036 ACTION_PERMISSION_DENIED = 1244;
5037
5038 // ACTION: A permission was revoked
5039 // PACKAGE: The package name of the app the permission was revoked for
5040 // Tag FIELD_PERMISSION: Name of the permission revoked
5041 ACTION_PERMISSION_REVOKED = 1245;
5042
jeffreyhuang594314c2017-11-01 10:26:15 -07005043 // OPEN: Settings > System > About Phone > Sim status
5044 // CATEGORY: SETTINGS
5045 // OS: P
5046 DIALOG_SIM_STATUS = 1246;
5047
jeffreyhuang3bd59782017-11-02 11:08:28 -07005048 // OPEN: Settings > System > About Phone > Android Version
5049 // CATEGORY: SETTINGS
5050 // OS: P
5051 DIALOG_FIRMWARE_VERSION = 1247;
5052
jackqdyulei8fe97542017-11-08 16:23:43 -08005053 // OPEN: Settings > Network & internet > Menu > Private DNS
5054 // CATEGORY: SETTINGS
5055 // OS: P
5056 DIALOG_PRIVATE_DNS = 1248;
5057
5058 // ACTION: A private dns mode been selected by user
5059 // CATEGORY: SETTINGS
5060 // OS: P
5061 ACTION_PRIVATE_DNS_MODE = 1249;
5062
Jan Althausae5eb832017-11-06 12:31:59 +01005063 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5064 // CATEGORY: TEXT_SELECTION_SESSION
5065 // OS: P
5066 FIELD_SELECTION_RANGE_START = 1250;
5067
5068 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5069 // CATEGORY: TEXT_SELECTION_SESSION
5070 // OS: P
5071 FIELD_SELECTION_RANGE_END = 1251;
5072
5073 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5074 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5075 // CATEGORY: TEXT_SELECTION_SESSION
5076 // OS: P
5077 FIELD_SELECTION_SMART_RANGE_START = 1252;
5078
5079 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5080 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5081 // CATEGORY: TEXT_SELECTION_SESSION
5082 // OS: P
5083 FIELD_SELECTION_SMART_RANGE_END = 1253;
5084
5085 // FIELD: the entity type of the text currently selected.
5086 // CATEGORY: TEXT_SELECTION_SESSION
5087 // OS: P
5088 FIELD_SELECTION_ENTITY_TYPE = 1254;
5089
5090 // FIELD: the type of widget the selection was made in.
5091 // CATEGORY: TEXT_SELECTION_SESSION
5092 // OS: P
5093 FIELD_SELECTION_WIDGET_TYPE = 1255;
5094
5095 // FIELD: the name of the text classifier model used.
5096 // CATEGORY: TEXT_SELECTION_SESSION
5097 // OS: P
5098 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5099
Beverly625442d2017-11-03 17:27:02 -04005100 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5101 // CATEGORY: SETTINGS
5102 // OS: P
5103 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5104
5105 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5106 // CATEGORY: SETTINGS
5107 // OS: P
5108 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5109
5110 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5111 // CATEGORY: SETTINGS
5112 // OS: P
5113 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5114
5115 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5116 // CATEGORY: SETTINGS
5117 // OS: P
5118 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5119
5120 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5121 // CATEGORY: SETTINGS
5122 // OS: P
5123 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5124
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005125 // FIELD: the version of the widget the selection was made in.
5126 // CATEGORY: TEXT_SELECTION_SESSION
5127 // OS: P
5128 FIELD_SELECTION_WIDGET_VERSION = 1262;
5129
jackqdyulei63193602017-11-27 13:46:48 -08005130 // OPEN: Settings > Battery(version 2)
5131 // CATEGORY: SETTINGS
5132 // OS: P
5133 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5134
jackqdyulei6139eab2017-11-29 14:38:32 -08005135 // OPEN: Settings > Connected devices > Connection preferences
5136 // CATEGORY: SETTINGS
5137 // OS: P
5138 CONNECTION_DEVICE_ADVANCED = 1264;
5139
Fan Zhang5235c052017-12-05 13:49:35 -08005140 // OPEN: Settings > Security > Screen lock gear icon
5141 // CATEGORY: SETTINGS
5142 // OS: P
5143 SCREEN_LOCK_SETTINGS = 1265;
5144
Beverlybf16c142017-11-27 16:21:34 -05005145 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5146 // CATEGORY: SETTINGS
5147 // OS: P
5148 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005149
Beverlybf16c142017-11-27 16:21:34 -05005150 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5151 // CATEGORY: SETTINGS
5152 // OS: P
5153 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5154
5155 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5156 // CATEGORY: SETTINGS
5157 // OS: P
5158 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5159
5160 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5161 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5162 // CATEGORY: SETTINGS
5163 // OS: P
5164 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5165
5166 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5167 // CATEGORY: SETTINGS
5168 // OS: P
5169 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5170
Felipe Leme5e047202017-12-05 16:30:06 -08005171 // Tag of a field for the number of ids in an autofill field classification request.
5172 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5173
5174 // An autofill service updated its user data
5175 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005176 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5177 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005178 // OS: P
5179 AUTOFILL_USERDATA_UPDATED = 1272;
5180
5181 // Some data entered by the user matched the field classification requested by the service.
5182 // Package: Package of app that is autofilled
5183 // Counter: number of matches found
5184 // OS: P
5185 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5186 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005187 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005188 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5189
5190 // Tag used to report autofill field classification scores
5191 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5192
Jerry Zhang18be8db2017-12-15 15:24:41 -08005193 // ACTION: Usb config has been changed to charging
5194 // CATEGORY: SETTINGS
5195 // OS: P
5196 ACTION_USB_CONFIG_CHARGING = 1275;
5197
5198 // ACTION: Usb config has been changed to mtp (file transfer)
5199 // CATEGORY: SETTINGS
5200 // OS: P
5201 ACTION_USB_CONFIG_MTP = 1276;
5202
5203 // ACTION: Usb config has been changed to ptp (photo transfer)
5204 // CATEGORY: SETTINGS
5205 // OS: P
5206 ACTION_USB_CONFIG_PTP = 1277;
5207
5208 // ACTION: Usb config has been changed to rndis (usb tethering)
5209 // CATEGORY: SETTINGS
5210 // OS: P
5211 ACTION_USB_CONFIG_RNDIS = 1278;
5212
5213 // ACTION: Usb config has been changed to midi
5214 // CATEGORY: SETTINGS
5215 // OS: P
5216 ACTION_USB_CONFIG_MIDI = 1279;
5217
5218 // ACTION: Usb config has been changed to accessory
5219 // CATEGORY: SETTINGS
5220 // OS: P
5221 ACTION_USB_CONFIG_ACCESSORY = 1280;
5222
jackqdyuleie04138d2018-01-08 17:51:57 -08005223 // OPEN: Settings > Battery > Smart Battery
5224 // CATEGORY: SETTINGS
5225 // OS: P
5226 FUELGAUGE_SMART_BATTERY = 1281;
5227
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005228 // ACTION: User tapped Screenshot in the power menu.
5229 // CATEGORY: GLOBAL_SYSTEM_UI
5230 // OS: P
5231 ACTION_SCREENSHOT_POWER_MENU = 1282;
5232
Felipe Leme3e099112018-01-18 12:57:45 -08005233 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005234 // CATEGORY: SETTINGS
5235 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005236 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005237
Felipe Leme3e099112018-01-18 12:57:45 -08005238 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005239 // CATEGORY: SETTINGS
5240 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005241 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005242
jackqdyuleid9821242018-01-09 17:42:52 -08005243 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5244 // CATEGORY: SETTINGS
5245 // OS: P
5246 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5247
Beverly92c25682018-01-22 09:27:19 -05005248 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5249 // CATEGORY: SETTINGS
5250 // OS: P
5251 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5252
Mike Digmanc94759d2018-01-23 11:01:21 -08005253 // ACTION: Rotate suggestion accepted in rotation locked mode
5254 // CATEGORY: GLOBAL_SYSTEM_UI
5255 // OS: P
5256 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5257
5258 // OPEN: Rotation suggestion shown in rotation locked mode
5259 // CATEGORY: GLOBAL_SYSTEM_UI
5260 // OS: P
5261 ROTATION_SUGGESTION_SHOWN = 1288;
5262
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005263 // An autofill service was bound using an unofficial(but still supported) permission.
5264 // Package: Package of the autofill service
5265 // OS: P
5266 AUTOFILL_INVALID_PERMISSION = 1289;
5267
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005268 // OPEN: QS Alarm tile shown
5269 // ACTION: QS Alarm tile tapped
5270 // SUBTYPE: 0 is off, 1 is on
5271 // CATEGORY: QUICK_SETTINGS
5272 // OS: P
5273 QS_ALARM = 1290;
5274
Jerry Zhang79147972018-01-31 16:04:06 -08005275 // OPEN: Settings->Connected Devices->USB->(click on details link)
5276 // CATEGORY: SETTINGS
5277 // OS: P
5278 USB_DEVICE_DETAILS = 1291;
5279
Michael Wright98bdc512018-01-26 19:15:57 +00005280 // OPEN: Settings > Accessibility > Vibration
5281 // CATEGORY: SETTINGS
5282 // OS: P
5283 ACCESSIBILITY_VIBRATION = 1292;
5284
5285 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5286 // CATEGORY: SETTINGS
5287 // OS: P
5288 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5289
5290 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5291 // CATEGORY: SETTINGS
5292 // OS: P
5293 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5294
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005295 // OPEN: Volume panel > output chooser dialog
5296 // OS: P
5297 OUTPUT_CHOOSER = 1295;
5298
5299 // Action: Volume panel > output chooser dialog > tap on device
5300 // OS: P
5301 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5302
5303 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5304 // OS: P
5305 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5306
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005307 // OPEN: TV Settings > Home theater control
5308 // OS: P
5309 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5310
5311 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5312 // OS: P
5313 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5314
5315 // OPEN: TV Settings > Device
5316 // OS: P
5317 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5318
5319 // OPEN: TV Settings > Network > Proxy settings
5320 // OS: P
5321 DIALOG_TV_NETWORK_PROXY = 1301;
5322
Makoto Onuki698f7a02018-02-13 15:02:23 -08005323 // Events for battery saver turning on/off and/or the interactive state changes.
5324 // OS: P
5325 BATTERY_SAVER = 1302;
5326
5327 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5328 // OS: P
5329 FIELD_INTERACTIVE = 1303;
5330
5331 // Time spent in milliseconds in the current mode.
5332 // OS: P
5333 FIELD_DURATION_MILLIS = 1304;
5334
Chris Wren8f7a1442018-05-14 17:16:31 -04005335 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005336 // OS: P
5337 FIELD_START_BATTERY_UA = 1305;
5338
Chris Wren8f7a1442018-05-14 17:16:31 -04005339 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005340 // OS: P
5341 FIELD_END_BATTERY_UA = 1306;
5342
5343 // Battery level in % (0-100) when the current "mode" started.
5344 // OS: P
5345 FIELD_START_BATTERY_PERCENT = 1307;
5346
5347 // Battery level in % (0-100) when this event was created.
5348 // OS: P
5349 FIELD_END_BATTERY_PERCENT = 1308;
5350
Christine Frankse257e452018-01-18 11:06:54 -08005351 // ACTION: Settings > Display > Night Light
5352 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5353 // CATEGORY: SETTINGS
5354 // OS: P
5355 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5356
5357 // ACTION: Settings > Display > Night Light
5358 // CATEGORY: SETTINGS
5359 // SUBTYPE: 0 is starting time, 1 is ending time
5360 // OS: P
5361 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5362
5363 // FIELD: Current mode corresponding to a QS tile
5364 // CATEGORY: QUICK SETTINGS
5365 // OS: P
5366 FIELD_QS_MODE = 1311;
5367
Jerry Zhang92306d82018-02-12 18:12:41 -08005368 // OPEN: Settings->Developer Options->Default USB
5369 // CATEGORY: SETTINGS
5370 // OS: P
5371 USB_DEFAULT = 1312;
5372
Jan Althaus31efdc32018-02-19 22:23:13 +01005373 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5374 // OS: P
5375 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5376
5377 // FIELD: milliseconds spent generating links.
5378 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5379 // OS: P
5380 FIELD_LINKIFY_LATENCY = 1314;
5381
5382 // FIELD: length of the input text in characters.
5383 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5384 // OS: P
5385 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5386
5387 // FIELD: number of links detected.
5388 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5389 // OS: P
5390 FIELD_LINKIFY_NUM_LINKS = 1316;
5391
5392 // FIELD: length of all links in characters.
5393 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5394 // OS: P
5395 FIELD_LINKIFY_LINK_LENGTH = 1317;
5396
5397 // FIELD: the type of entity the stats are for.
5398 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5399 // OS: P
5400 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5401
5402 // FIELD: a random uid for a single call to generateLinks
5403 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5404 // OS: P
5405 FIELD_LINKIFY_CALL_ID = 1319;
5406
Calin Juravle759fbda2018-02-20 19:52:30 +00005407 // FIELD: The compiler filter used when when optimizing the package.
5408 // Logged together with app transition events.
5409 // OS: P
5410 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5411
5412 // FIELD: The reason for optimizing the package.
5413 // Logged together with app transition events.
5414 // OS: P
5415 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5416
Emilian Peev6bf0a552018-02-10 02:15:49 +00005417 // FIELD: The camera API level used.
5418 // CATEGORY: CAMERA
5419 // OS: P
5420 FIELD_CAMERA_API_LEVEL = 1322;
5421
jackqdyulei73e6b342018-02-26 14:44:50 -08005422 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5423 // CATEGORY: SETTINGS
5424 // OS: P
5425 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5426
jackqdyuleibb60ea22018-02-26 17:18:12 -08005427 // OPEN: Settings > Battery > Battery tip
5428 // CATEGORY: SETTINGS
5429 // OS: P
5430 ACTION_BATTERY_TIP_SHOWN = 1324;
5431
Maggieb9d76322018-02-16 18:00:30 -08005432 // OPEN: Settings > Security & Location > Location > See all
5433 // CATEGORY: SETTINGS
5434 // OS: P
5435 RECENT_LOCATION_REQUESTS_ALL = 1325;
5436
Evan Laird404a85c2018-02-28 15:31:29 -05005437 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5438 // CATEGORY: GLOBAL_SYSTEM_UI
5439 // OS: P
5440 FIELD_GESTURE_X_PERCENT = 1326;
5441
5442 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5443 // CATEGORY: GLOBAL_SYSTEM_UI
5444 // OS: P
5445 FIELD_GESTURE_Y_PERCENT = 1327;
5446
5447 // ACTION: Expand the notification panel while unlocked
5448 // CATEGORY: GLOBAL_SYSTEM_UI
5449 // OS: P
5450 ACTION_PANEL_VIEW_EXPAND = 1328;
5451
Evan Laird404a85c2018-02-28 15:31:29 -05005452 // FIELD: Rotation of the device
5453 // CATEGORY: GLOBAL_SYSTEM_UI
5454 // OS: P
5455 FIELD_DEVICE_ROTATION = 1329;
5456
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005457 // OPEN: TV Settings > Inputs > Input Options
5458 // CATEGORY: SETTINGS
5459 // OS: P
5460 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5461
5462 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5463 // CATEGORY: SETTINGS
5464 // OS: P
5465 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5466
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005467 // ACTION: DND Settings > What to block > full screen intents
5468 // SUBTYPE: false is allowed, true is blocked
5469 // CATEGORY: SETTINGS
5470 // OS: 6.0
5471 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5472
5473 // ACTION: DND Settings > What to block
5474 // SUBTYPE: false is allowed, true is blocked
5475 // OS: P
5476 ACTION_ZEN_BLOCK_LIGHT = 1333;
5477
5478 // ACTION: DND Settings > What to block
5479 // SUBTYPE: false is allowed, true is blocked
5480 // OS: P
5481 ACTION_ZEN_BLOCK_PEEK = 1334;
5482
5483 // ACTION: DND Settings > What to block
5484 // SUBTYPE: false is allowed, true is blocked
5485 // OS: P
5486 ACTION_ZEN_BLOCK_STATUS = 1335;
5487
5488 // ACTION: DND Settings > What to block
5489 // SUBTYPE: false is allowed, true is blocked
5490 // OS: P
5491 ACTION_ZEN_BLOCK_BADGE = 1336;
5492
5493 // ACTION: DND Settings > What to block
5494 // SUBTYPE: false is allowed, true is blocked
5495 // OS: P
5496 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5497
5498 // ACTION: DND Settings > What to block
5499 // SUBTYPE: false is allowed, true is blocked
5500 // OS: P
5501 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5502
5503 // OPEN: DND Settings > What to block
5504 // OS: P
5505 ZEN_WHAT_TO_BLOCK = 1339;
5506
Beverly8fe33ba2018-03-05 14:32:35 -05005507 // ACTION: DND Settings > Priority only allows > System toggle
5508 // SUBTYPE: 0 is off, 1 is on
5509 // CATEGORY: SETTINGS
5510 // OS: P
5511 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5512
5513 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5514 // CATEGORY: SETTINGS
5515 // OS: P
5516 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5517
5518 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5519 // CATEGORY: SETTINGS
5520 // OS: P
5521 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5522
5523 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5524 // CATEGORY: SETTINGS
5525 // OS: P
5526 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5527
5528 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5529 // CATEGORY: SETTINGS
5530 // OS: P
5531 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5532
Julia Reynolds8dff1862018-03-06 14:20:40 -05005533 // Notification Guts, active app ops variant
5534 // OS: P
5535 APP_OPS_GUTS = 1345;
5536
5537 // ACTION: Notification Guts, active app ops variant > Settings button
5538 // OS: P
5539 ACTION_OPS_GUTS_SETTINGS = 1346;
5540
Lei Yu5674d2d2018-03-08 10:19:43 -08005541 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5542 // OS: P
5543 ACTION_APP_RESTRICTION_TIP = 1347;
5544
5545 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5546 // OS: P
5547 ACTION_HIGH_USAGE_TIP = 1348;
5548
Lei Yue93e5602018-03-08 12:15:38 -08005549 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5550 // OS: P
5551 ACTION_SUMMARY_TIP = 1349;
5552
5553 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5554 // OS: P
5555 ACTION_SMART_BATTERY_TIP = 1350;
5556
5557 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5558 // OS: P
5559 ACTION_EARLY_WARNING_TIP = 1351;
5560
5561 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5562 // OS: P
5563 ACTION_LOW_BATTERY_TIP = 1352;
5564
5565 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5566 // OS: P
5567 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5568
5569 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5570 // OS: P
5571 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5572
Victor Chang76817b82018-03-09 17:22:52 +00005573 // OPEN: Settings > Date & time > Select time zone -> Region
5574 // CATEGORY: SETTINGS
5575 // OS: P
5576 SETTINGS_ZONE_PICKER_REGION = 1355;
5577
5578 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5579 // CATEGORY: SETTINGS
5580 // OS: P
5581 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5582
5583 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5584 // CATEGORY: SETTINGS
5585 // OS: P
5586 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5587
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005588 // Action: notification shade > manage notifications
5589 // OS: P
5590 ACTION_MANAGE_NOTIFICATIONS = 1358;
5591
Chris Wrenaa571c62018-03-14 12:16:04 -04005592 // This value should never appear in log outputs - it is reserved for
5593 // internal platform metrics use.
5594 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5595
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005596 // OPEN: Settings > Gestures > Prevent Ringing
5597 // OS: P
5598 SETTINGS_PREVENT_RINGING = 1360;
5599
Lei Yue92285a2018-03-12 11:28:40 -07005600 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5601 // CATEGORY: SETTINGS
5602 // OS: P
5603 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5604
5605 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5606 // CATEGORY: SETTINGS
5607 // OS: P
5608 ACTION_TIP_RESTRICT_APP = 1362;
5609
5610 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5611 // CATEGORY: SETTINGS
5612 // OS: P
5613 ACTION_TIP_UNRESTRICT_APP = 1363;
5614
5615 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5616 // CATEGORY: SETTINGS
5617 // OS: P
5618 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5619
5620 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5621 // CATEGORY: SETTINGS
5622 // OS: P
5623 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5624
5625 // FIELD: type of anomaly in settings app
5626 // CATEGORY: SETTINGS
5627 // OS: P
5628 FIELD_ANOMALY_TYPE = 1366;
5629
Lei Yu4f704772018-03-20 10:51:58 -07005630 // ACTION: Settings > Anomaly receiver > Anomaly received
5631 // CATEGORY: SETTINGS
5632 // OS: P
5633 ACTION_ANOMALY_TRIGGERED = 1367;
5634
Fan Zhanga85b4872018-03-26 16:52:53 -07005635 // ACTION: Settings > Condition > Device muted
5636 // CATEGORY: SETTINGS
5637 // OS: P
5638 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5639
5640 // ACTION: Settings > Condition > Device vibrate
5641 // CATEGORY: SETTINGS
5642 // OS: P
5643 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5644
hughchen226196b2018-03-27 12:04:59 +08005645 // OPEN: Settings > Connected devices > previously connected devices
5646 // CATEGORY: SETTINGS
5647 // OS: P
5648 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005649
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005650 // ACTION: A Settings Slice is requested
5651 // CATEGORY: SETTINGS
5652 // OS: P
5653 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5654
5655 // ACTION: A Settings Slice is updated with new value
5656 // CATEGORY: SETTINGS
5657 // OS: P
5658 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5659
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005660 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5661 // note: Wifi Scanning must be off for this dialog to show
5662 // CATEGORY: SETTINGS
5663 // OS: P
5664 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5665
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005666 // OPEN: Settings > System > Gestures > Swipe up gesture
5667 // CATEGORY: SETTINGS
5668 // OS: P
5669 SETTINGS_GESTURE_SWIPE_UP = 1374;
5670
Jeff Sharkey46270712018-04-02 09:53:21 -06005671 // OPEN: Settings > Storage > Dialog to format a storage volume
5672 // CATEGORY: SETTINGS
5673 // OS: P
5674 DIALOG_VOLUME_FORMAT = 1375;
5675
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005676 // OPEN: DND onboarding activity > screen on checkbox
5677 // CATEGORY: SETTINGS
5678 // OS: P
5679 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5680
5681 // OPEN: DND onboarding activity > screen off checkbox
5682 // CATEGORY: SETTINGS
5683 // OS: P
5684 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5685
5686 // OPEN: DND onboarding activity > Ok button
5687 // CATEGORY: SETTINGS
5688 // OS: P
5689 ACTION_ZEN_ONBOARDING_OK = 1378;
5690
5691 // OPEN: DND onboarding activity > Settings link
5692 // CATEGORY: SETTINGS
5693 // OS: P
5694 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5695
5696 // OPEN: DND onboarding activity
5697 // CATEGORY: SETTINGS
5698 // OS: P
5699 SETTINGS_ZEN_ONBOARDING = 1380;
5700
Fan Zhangd2ed8212018-04-10 12:57:56 -07005701 // OPEN: Settings > Display > Auto brightness
5702 // CATEGORY: SETTINGS
5703 // OS: P
5704 SETTINGS_AUTO_BRIGHTNESS = 1381;
5705
Kenny Guy23991102018-04-05 21:18:38 +01005706 // OPEN: Smart replies in a notification seen at least once
5707 // CATEGORY: NOTIFICATION
5708 // PACKAGE: App that posted the notification
5709 // SUBTYPE: Number of smart replies.
5710 // OS: P
5711 SMART_REPLY_VISIBLE = 1382;
5712
5713 // ACTION: Smart reply in a notification clicked.
5714 // CATEGORY: NOTIFICATION
5715 // PACKAGE: App that posted the notification
5716 // SUBTYPE: Index of smart reply clicked.
5717 // OS: P
5718 SMART_REPLY_ACTION = 1383;
5719
5720 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5721 // OS: P
5722 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5723
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005724 // Volume dialog > ringer toggle
5725 // OS: P
5726 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5727
5728 // Volume dialog > settings button
5729 // OS: P
5730 ACTION_VOLUME_SETTINGS = 1386;
5731
Lei Yufc59a572018-04-10 10:52:08 -07005732 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5733 // CATEGORY: SETTINGS
5734 // OS: P
5735 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005736
Lei Yu97a13212018-04-11 15:45:31 -07005737 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5738 // CATEGORY: SETTINGS
5739 // OS: P
5740 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5741
5742 // FIELD: the version code of an app
5743 // CATEGORY: SETTINGS
5744 // OS: P
5745 FIELD_APP_VERSION_CODE = 1389;
5746
Salvador Martinez7a9564f2018-04-04 14:42:59 -07005747 // OPEN: Settings > Connected Devices > Bluetooth
5748 // CATEGORY: SETTINGS
5749 // OS: P
5750 BLUETOOTH_FRAGMENT = 1390;
5751
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005752 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5753 // an app uses a hidden API.
5754 ACTION_HIDDEN_API_ACCESSED = 1391;
5755
5756 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5757 // access; see enum HiddenApiAccessMethod
5758 // OS: P
5759 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5760
5761 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5762 // denied to the API.
5763 // OS: P
5764 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5765
5766 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5767 // API that was accessed.
5768 // OS: P
5769 FIELD_HIDDEN_API_SIGNATURE = 1394;
5770
Chris Wren8f7a1442018-05-14 17:16:31 -04005771 // The number of items in the shade when this notification event was logged.
5772 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005773 NOTIFICATION_SHADE_COUNT = 1395;
5774
Julia Reynolds5da746a2018-04-23 09:41:21 -04005775 // ACTION: DND Settings > What to block
5776 // OS: P
5777 ACTION_ZEN_SOUND_ONLY = 1396;
5778
5779 // ACTION: DND Settings > Notifications
5780 // OS: P
5781 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5782
5783 // ACTION: DND Settings > Notifications
5784 // OS: P
5785 ACTION_ZEN_SHOW_CUSTOM = 1398;
5786
5787 // ACTION: DND Settings > Notifications
5788 // OS: P
5789 ACTION_ZEN_CUSTOM = 1399;
5790
5791 // Screen: DND Settings > Notifications
5792 // OS: P
5793 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5794
Chris Wrend63dffd2018-04-19 11:12:46 -04005795 // An event category for slices.
5796 // OPEN: Slice became visible.
5797 // CLOSE: Slice became invisible.
5798 // ACTION: Slice was tapped.
5799 SLICE = 1401;
5800
5801 // The authority part of the slice URI
5802 FIELD_SLICE_AUTHORITY = 1402;
5803
5804 // The path part of the slice URI
5805 FIELD_SLICE_PATH = 1403;
5806
5807 // The authority part of the subslice URI
5808 FIELD_SUBSLICE_AUTHORITY = 1404;
5809
5810 // The path part of the subslice URI
5811 FIELD_SUBSLICE_PATH = 1405;
5812
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005813 // OPEN: DND onboarding activity > don't update button
5814 // CATEGORY: SETTINGS
5815 // OS: P
5816 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5817
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005818 // ACTION: Storage initialization wizard initialization choice of external/portable
5819 // CATEGORY: SETTINGS
5820 // OS: P
5821 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5822
5823 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5824 // CATEGORY: SETTINGS
5825 // OS: P
5826 ACTION_STORAGE_INIT_INTERNAL = 1408;
5827
5828 // ACTION: Storage initialization wizard benchmark fast choice of continue
5829 // CATEGORY: SETTINGS
5830 // OS: P
5831 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5832
5833 // ACTION: Storage initialization wizard benchmark slow choice of continue
5834 // CATEGORY: SETTINGS
5835 // OS: P
5836 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5837
5838 // ACTION: Storage initialization wizard benchmark slow choice of abort
5839 // CATEGORY: SETTINGS
5840 // OS: P
5841 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5842
5843 // ACTION: Storage initialization wizard migration choice of now
5844 // CATEGORY: SETTINGS
5845 // OS: P
5846 ACTION_STORAGE_MIGRATE_NOW = 1412;
5847
5848 // ACTION: Storage initialization wizard migration choice of later
5849 // CATEGORY: SETTINGS
5850 // OS: P
5851 ACTION_STORAGE_MIGRATE_LATER = 1413;
5852
Felipe Leme11166522018-05-07 10:18:47 -07005853 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Lemef61ba5c2018-05-21 11:18:46 -07005854 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005855 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5856
hughchen2bde4092018-05-10 18:04:25 +08005857 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005858 // CATEGORY: SETTINGS
5859 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005860 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5861
5862 // OPEN: Settings > Sound > Switch hfp devices dialog
5863 // CATEGORY: SETTINGS
5864 // OS: P
5865 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005866
Beverlyc4eb9342018-05-10 15:46:03 -04005867 // ACTION: User has started or ended charging
5868 // Type TYPE_DISMISS: Charging has ended
5869 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5870 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5871 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5872 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5873 // Tag FIELD_PLUG_TYPE: Charging plug type
5874 ACTION_CHARGE = 1417;
5875
5876 // Tag used to determine battery level when device started charging
5877 FIELD_BATTERY_LEVEL_START = 1418;
5878
5879 // Tag used to determine battery level when device ended charging
5880 FIELD_BATTERY_LEVEL_END = 1419;
5881
5882 // Tag used to determine length of charging
5883 FIELD_CHARGING_DURATION_MILLIS = 1420;
5884
5885 // Tag used to determine what type of charging was started/ended
5886 // 1 = Plugged AC
5887 // 2 = Plugged USB
5888 // 3 = Wireless
5889 FIELD_PLUG_TYPE = 1421;
5890
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005891 // ACTION: USB-C Connector connected.
5892 // CATEGORY: OTHER
5893 // OS: P
5894 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5895
5896 // ACTION: USB-C Connector disconnected.
5897 // CATEGORY: OTHER
5898 // OS: P
5899 // uses FIELD_DURATION_MILLIS for connected duration
5900 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5901
5902 // ACTION: USB-C Audio device connected
5903 // CATEGORY: OTHER
5904 // OS: P
5905 ACTION_USB_AUDIO_CONNECTED = 1424;
5906
5907 // FIELD: VIDPID of connected USB Audio device
5908 // CATEGORY: OTHER
5909 // OS: P
5910 FIELD_USB_AUDIO_VIDPID = 1425;
5911
5912 // ACTION: USB-C Audio device disconnected
5913 // CATEGORY: OTHER
5914 // OS: P
5915 // use FIELD_DURATION_MILLIS for time
5916 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5917
5918 // ACTION: Hardware failure event
5919 // CATEGORY: OTHER
5920 // OS: P
5921 ACTION_HARDWARE_FAILED = 1427;
5922
5923 // FIELD: Hardware failure category
5924 // CATEGORY: OTHER
5925 // OS: P
5926 // Uses enum HardwareType
5927 FIELD_HARDWARE_TYPE = 1428;
5928
5929 // FIELD: Hardware failure category
5930 // CATEGORY: OTHER
5931 // OS: P
5932 // Uses enum HardwareFailureCode
5933 FIELD_HARDWARE_FAILURE_CODE = 1429;
5934
5935 // ACTION: Physical drop event
5936 // CATEGORY: OTHER
5937 // OS: P
5938 // use FIELD_DURATION_MILLIS for time
5939 ACTION_PHYSICAL_DROP = 1430;
5940
5941 // FIELD: Confidence in detection of drop, in integer percentage.
5942 // CATEGORY: OTHER
5943 // OS: P
5944 FIELD_CONFIDENCE_PERCENT = 1431;
5945
5946 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5947 // CATEGORY: OTHER
5948 // OS: P
5949 FIELD_ACCEL_MILLI_G = 1432;
5950
5951 // ACTION: Battery health snapshot
5952 // CATEGORY: OTHER
5953 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005954 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005955 ACTION_BATTERY_HEALTH = 1433;
5956
5957 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5958 // CATEGORY: OTHER
5959 // OS: P
5960 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5961
Andrew Chantc03bc632018-05-18 10:52:00 -07005962 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005963 // CATEGORY: OTHER
5964 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005965 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005966
Andrew Chantc03bc632018-05-18 10:52:00 -07005967 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005968 // CATEGORY: OTHER
5969 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005970 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005971
Andrew Chantc03bc632018-05-18 10:52:00 -07005972 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005973 // CATEGORY: OTHER
5974 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005975 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005976
Andrew Chantc03bc632018-05-18 10:52:00 -07005977 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005978 // fractional threshold of full capacity.
5979 // CATEGORY: OTHER
5980 // OS: P
5981 ACTION_BATTERY_CHARGE_CYCLES = 1438;
5982
Andrew Chantc03bc632018-05-18 10:52:00 -07005983 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
5984 // beyond a fractional threshold of full
5985 // capacity. A comma-separated string of
5986 // buckets. If there are eight buckets,
5987 // each bucket represents charging to n/8
5988 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005989 // CATEGORY: OTHER
5990 // OS: P
5991 FIELD_BATTERY_CHARGE_CYCLES = 1439;
5992
Beverly019d6f62018-05-15 16:16:54 -04005993 // ACTION: Hush gesture - volume up + power button
5994 // CATEGORY: GLOBAL_SYSTEM_UI
5995 // OS: P
5996 ACTION_HUSH_GESTURE = 1440;
5997
Petri Gynther915e9442018-05-18 22:59:50 -07005998 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
5999 // offload
6000 // CATEGORY: SETTINGS
6001 // OS: P
6002 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6003
Andrew Chantc03bc632018-05-18 10:52:00 -07006004 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6005 // reported aggregated per day when > 0.
6006 // CATEGORY: OTHER
6007 // OS: P
6008 ACTION_SLOW_IO = 1442;
6009
6010 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6011 // The value is an integer from the enum IoOperation.
6012 // CATEGORY: OTHER
6013 // OS: P
6014 FIELD_IO_OPERATION_TYPE = 1443;
6015
6016 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6017 // over the past 24hr (reported only if > 0).
6018 // CATEGORY: OTHER
6019 // OS: P
6020 FIELD_IO_OPERATION_COUNT = 1444;
6021
6022 // ACTION: Speaker Imedance - last recorded speaker impedance.
6023 // reported max once per 24hr.
6024 // CATEGORY: OTHER
6025 // OS: P
6026 ACTION_SPEAKER_IMPEDANCE = 1445;
6027
6028 // FIELD: Speaker Impedance in milliohms.
6029 // CATEGORY: OTHER
6030 // OS: P
6031 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6032
6033 // FIELD: Speaker Location - identifies one of several speakers on a device.
6034 // CATEGORY: OTHER
6035 // OS: P
6036 FIELD_SPEAKER_LOCATION = 1447;
6037
6038 // FIELD: Instantaneous battery resistance in microohms.
6039 // CATEGORY: OTHER
6040 // OS: P
6041 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6042
6043 // FIELD: Instantaneous battery current - in microamps.
6044 // CATEGORY: OTHER
6045 // OS: P
6046 FIELD_BATTERY_CURRENT_UA = 1449;
6047
6048 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6049 // board.
6050 // CATEGORY: OTHER
6051 // OS: P
6052 FIELD_HARDWARE_LOCATION = 1450;
6053
6054 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6055 // action is logged after the subsequent boot.
6056 // CATEGORY: OTHER
6057 // OS: P
6058 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6059
Felipe Lemef61ba5c2018-05-21 11:18:46 -07006060 // FIELD: Flags used on autofill-related metrics
6061 // OS: P
6062 FIELD_AUTOFILL_FLAGS = 1452;
6063
6064 // Tag used when the service returned an authenticated dataset or response.
6065 // Used to replace the following individual metrics, which now are logged as the value of this
6066 // field in the AUTOFILL_REQUEST metric:
6067 // - AUTOFILL_AUTHENTICATED;
6068 // - AUTOFILL_DATASET_AUTHENTICATED
6069 // - AUTOFILL_INVALID_AUTHENTICATION
6070 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6071 // OS: P
6072 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6073
6074 // FIELD: Index of the autofill request inside of a session.
6075 // OS: P
6076 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6077
6078 // FIELD: Number of requests made to an autofill service during a session.
6079 // OS: P
6080 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6081
Beverlybf16c142017-11-27 16:21:34 -05006082 // ---- End P Constants, all P constants go above this line ----
Adrian Roos159ef7b2016-02-25 11:58:32 -08006083 // Add new aosp constants above this line.
6084 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05006085 }
6086}