blob: a787c081581429377fc4964e334ccab79f268d6f [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 TYPE_TRANSITION_HOT_LAUNCH = 9;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Chris Wren5e334f62016-11-14 10:16:21 -050076 }
77
Chris Wren65f07fe2017-03-14 14:10:37 -040078 // Types of alerts, as bit field values
79 enum Alert {
80 // Vibrate the device.
81 ALERT_BUZZ = 1;
82
83 // Make sound through the speaker.
84 ALERT_BEEP = 2;
85
86 // Flash a notificaiton light.
87 ALERT_BLINK = 4;
88 }
89
90 // Reasons that a notification might be dismissed.
91 enum DismissReason {
92 // from android.service.notification.NotificationListenerService
93
94 // Notification was canceled by the status bar reporting a notification click
95 REASON_CLICK = 1;
96
97 // Notification was canceled by the status bar reporting a user dismissal.
98 REASON_CANCEL = 2;
99
100 // Notification was canceled by the status bar reporting a user dismiss all.
101 REASON_CANCEL_ALL = 3;
102
103 // Notification was canceled by the status bar reporting an inflation error.
104 REASON_ERROR = 4;
105
106 // Notification was canceled by the package manager modifying the package.
107 REASON_PACKAGE_CHANGED = 5;
108
109 // Notification was canceled by the owning user context being stopped.
110 REASON_USER_STOPPED = 6;
111
112 // Notification was canceled by the user banning the package.
113 REASON_PACKAGE_BANNED = 7;
114
115 // Notification was canceled by the app canceling this specific notification.
116 REASON_APP_CANCEL = 8;
117
118 //Notification was canceled by the app cancelling all its notifications.
119 REASON_APP_CANCEL_ALL = 9;
120
121 // Notification was canceled by a listener reporting a user dismissal.
122 REASON_LISTENER_CANCEL = 10;
123
124 //Notification was canceled by a listener reporting a user dismiss all.
125 REASON_LISTENER_CANCEL_ALL = 11;
126
127 // Notification was canceled because it was a member of a canceled group.
128 REASON_GROUP_SUMMARY_CANCELED = 12;
129
130 // Notification was canceled because it was an invisible member of a group.
131 REASON_GROUP_OPTIMIZATION = 13;
132
133 // Notification was canceled by the device administrator suspending the package.
134 REASON_PACKAGE_SUSPENDED = 14;
135
136 // Notification was canceled by the owning managed profile being turned off.
137 REASON_PROFILE_TURNED_OFF = 15;
138
139 // Autobundled summary notification was canceled because its group was unbundled.
140 REASON_UNAUTOBUNDLED = 16;
141
142 // Notification was canceled by the user banning the channel.
143 REASON_CHANNEL_BANNED = 17;
144
145 // Notification was snoozed.
146 REASON_SNOOZED = 18;
147
148 // Notification was canceled due to timeout.
149 REASON_TIMEOUT = 19;
150 }
151
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700152 // Subtypes of camera events for ACTION_CAMERA_EVENT
153 enum CameraEvent {
154 // A back-facing camera was used
155 CAMERA_BACK_USED = 0;
156
157 // A front-facing camera was used
158 CAMERA_FRONT_USED = 1;
159
160 // An external camera was used
161 CAMERA_EXTERNAL_USED = 2;
162 }
163
Jan Althaus786a39d2017-09-15 10:41:16 +0200164 // TextClassifier entity types.
165 enum TextClassifierEntityType {
166 TEXT_CLASSIFIER_TYPE_UNKNOWN = 1;
167 TEXT_CLASSIFIER_TYPE_OTHER = 2;
168 TEXT_CLASSIFIER_TYPE_EMAIL = 3;
169 TEXT_CLASSIFIER_TYPE_PHONE = 4;
170 TEXT_CLASSIFIER_TYPE_ADDRESS = 5;
171 TEXT_CLASSIFIER_TYPE_URL = 6;
172 }
173
Jan Althausae5eb832017-11-06 12:31:59 +0100174 // Selection invocation methods. Used as sub-type for TEXT_SELECTION_SESSION events.
175 enum TextSelectionInvocationMethod {
Chris Wren3824c392017-11-27 12:54:14 -0500176 TEXT_SELECTION_INVOCATION_UNKNOWN = 0;
Jan Althausae5eb832017-11-06 12:31:59 +0100177 TEXT_SELECTION_INVOCATION_MANUAL = 1;
178 TEXT_SELECTION_INVOCATION_LINK = 2;
179 }
180
Mathew Inwoodac1c19a2018-04-12 12:17:57 +0100181 // Access method for hidden API events. Type of data tagged with
182 // FIELD_HIDDEN_API_ACCESS_METHOD.
183 // This must be kept in sync with enum AccessMethod in art/runtime/hidden_api.h
184 enum HiddenApiAccessMethod {
185 ACCESS_METHOD_NONE = 0; // never logged, included for completeness
186 ACCESS_METHOD_REFLECTION = 1;
187 ACCESS_METHOD_JNI = 2;
188 ACCESS_METHOD_LINKING = 3; // never logged, included for completeness
189 }
190
Andrew Chantecdc0dc2018-05-10 14:16:07 -0700191 enum HardwareType {
192 HARDWARE_UNKNOWN = 0;
193 HARDWARE_MICROPHONE = 1;
194 HARDWARE_CODEC = 2;
195 HARDWARE_SPEAKER = 3;
196 HARDWARE_FINGERPRINT = 4;
197 }
198
199 enum HardwareFailureCode {
200 HARDWARE_FAILURE_UNKNOWN = 0;
201 HARDWARE_FAILURE_COMPLETE = 1;
202 HARDWARE_FAILURE_SPEAKER_HIGH_Z = 2;
203 HARDWARE_FAILURE_SPEAKER_SHORT = 3;
204 HARDWARE_FAILURE_FINGERPRINT_SENSOR_BROKEN = 4;
205 HARDWARE_FAILURE_FINGERPRINT_TOO_MANY_DEAD_PIXELS = 5;
206 }
207
Andrew Chantc03bc632018-05-18 10:52:00 -0700208 enum IoOperation {
209 IOOP_UNKNOWN = 0;
210 IOOP_READ = 1;
211 IOOP_WRITE = 2;
212 IOOP_UNMAP = 3;
213 IOOP_SYNC = 4;
214 }
215
Chris Wren77781d32016-01-11 14:49:26 -0500216 // Known visual elements: views or controls.
217 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500218 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500219 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500222 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > Accessibility
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > Accessibility > Captions
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OPEN: Settings > Accessibility > [Service]
235 // CATEGORY: SETTINGS
236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500237 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500238
239 // OPEN: Settings > Accessibility > Color correction
240 // CATEGORY: SETTINGS
241 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500242 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500243
244 // OPEN: Settings > Accessibility > Accessibility shortcut
245 // CATEGORY: SETTINGS
246 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500247 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500248
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700249 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
250 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
251 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > Accounts
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Accounts > [Single Account Sync Settings]
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Accounts > Add an account
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Accounts > [List of accounts when more than one]
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Cellular network settings > APNs
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500287 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500290 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500291
292 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500293 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Apps > Configure apps > App links > [App]
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500301 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500302
303 // OPEN: Settings > Internal storage > Apps storage > [App]
304 // CATEGORY: SETTINGS
305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500306 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500307
308 // OPEN: Settings > Apps > [App info]
309 // CATEGORY: SETTINGS
310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500311 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Memory > App usage > [App Memory usage]
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500319 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OPEN: Settings > Memory > App usage
322 // CATEGORY: SETTINGS
323 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500324 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500325
326 // OPEN: Settings > Bluetooth
327 // CATEGORY: SETTINGS
328 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500329 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Choose Bluetooth device (ex: when sharing)
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500337 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > Security > Choose screen lock
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > Security > Choose screen lock > Choose your password
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings > Security > Choose screen lock > Confirm your password
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
360 // CATEGORY: SETTINGS
361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500362 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500363
364 // OPEN: Settings > Security > Encrypt phone
365 // CATEGORY: SETTINGS
366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500367 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500368
369 // OPEN: Settings > Security > Encrypt phone > Confirm
370 // CATEGORY: SETTINGS
371 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500372 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500373
374 // OPEN: Settings > Search results
375 // CATEGORY: SETTINGS
376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500377 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings (Root page)
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500385 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Data usage
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > Date & time
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OPEN: Settings > Developer options
398 // CATEGORY: SETTINGS
399 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500400 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500401
402 // OPEN: Settings > About phone
403 // CATEGORY: SETTINGS
404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500405 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500406
407 // OPEN: Settings > About phone > Status > IMEI information
408 // CATEGORY: SETTINGS
409 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500410 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings > Internal storage
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > About phone > Status > SIM status
418 // CATEGORY: SETTINGS
419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500420 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: Settings > About phone > Status
423 // CATEGORY: SETTINGS
424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500425 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500428 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: Settings > Display
431 // CATEGORY: SETTINGS
432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500433 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OPEN: Settings > Display > Daydream
436 // CATEGORY: SETTINGS
437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500438 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500439
440 // OPEN: Settings > Security > Screen lock > Secure start-up
441 // CATEGORY: SETTINGS
442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500443 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 // OPEN: Settings > Security > Nexus Imprint
446 // CATEGORY: SETTINGS
447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500448 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500451 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Battery > History details
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Battery > Battery saver
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Battery > [App Use details]
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Battery
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OPEN: Settings > Home
474 // CATEGORY: SETTINGS
475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500476 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500477
478 // OPEN: Settings > Security > SIM card lock settings
479 // CATEGORY: SETTINGS
480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500481 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500482
483 // OPEN: Settings > Language & input
484 // CATEGORY: SETTINGS
485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500486 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500487
488 // OPEN: Settings > Language & input > Physical keyboard
489 // CATEGORY: SETTINGS
490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500491 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Language & input > Spell checker
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500499 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Language & input > Personal dictionary
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Language & input > Add word
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Location
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: Settings > Location > Location mode
517 // CATEGORY: SETTINGS
518 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500519 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500520
521 // OPEN: Settings > Apps
522 // CATEGORY: SETTINGS
523 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500524 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500525
526 // OPEN: Settings > Backup & reset > Factory data reset
527 // CATEGORY: SETTINGS
528 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500529 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
532 // CATEGORY: SETTINGS
533 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500534 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500535
536 // OPEN: Settings > Data usage > Network restrictions
537 // CATEGORY: SETTINGS
538 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500539 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500540
541 // OPEN: Settings > More > Android Beam
542 // CATEGORY: SETTINGS
543 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500544 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500545
546 // OPEN: Settings > Tap & pay
547 // CATEGORY: SETTINGS
548 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500549 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500550
551 // OPEN: Settings > Sound & notification
552 // CATEGORY: SETTINGS
553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500554 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500555
556 // OPEN: Settings > Sound & notification > App notifications > [App]
557 // CATEGORY: SETTINGS
558 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500559 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings > Sound & notification > Other sounds
562 // CATEGORY: SETTINGS
563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500564 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500565
566 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500567 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500568
569 // OPEN: Settings Widget > Notification log
570 // CATEGORY: SETTINGS
571 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500572 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500573
574 // OPEN: Settings > Sound & notification > Do not disturb
575 // CATEGORY: SETTINGS
576 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500577 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500578
579 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500580 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500581
582 // OPEN: Print job notification > Print job settings
583 // CATEGORY: SETTINGS
584 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500585 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500586
587 // OPEN: Settings > Printing > [Print Service]
588 // CATEGORY: SETTINGS
589 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500590 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500591
592 // OPEN: Settings > Printing
593 // CATEGORY: SETTINGS
594 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500595 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500596
597 // OPEN: Settings > Backup & reset
598 // CATEGORY: SETTINGS
599 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500600 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500601
602 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500603 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: Settings > Backup & reset > Network settings reset
606 // CATEGORY: SETTINGS
607 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500608 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500609
610 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
611 // CATEGORY: SETTINGS
612 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500613 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500614
615 // OPEN: Settings > Developer Options > Running Services
616 // CATEGORY: SETTINGS
617 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500618 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500619
620 // OPEN: Settings > Security > Screen pinning
621 // CATEGORY: SETTINGS
622 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500623 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500624
625 // OPEN: Settings > Security
626 // CATEGORY: SETTINGS
627 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500628 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: Settings > SIM cards
631 // CATEGORY: SETTINGS
632 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500633 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500634
635 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500636 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > More > Tethering & portable hotspot
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Security > Trust agents
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Settings > Security > Trusted credentials
649 // CATEGORY: SETTINGS
650 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500651 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500652
653 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
654 // CATEGORY: SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OPEN: Settings > Language & input > Text-to-speech output
659 // CATEGORY: SETTINGS
660 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500661 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500662
663 // OPEN: Settings > Security > Apps with usage access
664 // CATEGORY: SETTINGS
665 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500666 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500667
668 // OPEN: Settings > Users
669 // CATEGORY: SETTINGS
670 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500671 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500672
673 // OPEN: Settings > Users > [Restricted profile app & content access]
674 // CATEGORY: SETTINGS
675 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500676 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: Settings > Users > [User settings]
679 // CATEGORY: SETTINGS
680 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500681 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500682
683 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500684 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: Settings > More > VPN
687 // CATEGORY: SETTINGS
688 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500689 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500690
691 // OPEN: Settings > Display > Choose wallpaper from
692 // CATEGORY: SETTINGS
693 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500694 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500695
696 // OPEN: Settings > Display > Cast
697 // CATEGORY: SETTINGS
698 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500699 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500700
701 // OPEN: Settings > Wi-Fi
702 // CATEGORY: SETTINGS
703 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500704 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500705
706 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
707 // CATEGORY: SETTINGS
708 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500709 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500710
711 // OPEN: Settings > More > Wi-Fi Calling
712 // CATEGORY: SETTINGS
713 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500714 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OPEN: Settings > Wi-Fi > Saved networks
717 // CATEGORY: SETTINGS
718 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500719 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500722 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500725 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500726
727 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
728 // CATEGORY: SETTINGS
729 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500730 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500731
732 // OPEN: Settings > More
733 // CATEGORY: SETTINGS
734 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500735 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500736
737 // OPEN: Quick Settings Panel
738 // CATEGORY: QUICK_SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS Airplane mode tile shown
743 // ACTION: QS Airplane mode tile tapped
744 // SUBTYPE: 0 is off, 1 is on
745 // CATEGORY: QUICK_SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS Bluetooth tile shown
750 // ACTION: QS Bluetooth tile tapped
751 // SUBTYPE: 0 is off, 1 is on
752 // CATEGORY: QUICK_SETTINGS
753 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500754 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: QS Cast tile shown
757 // ACTION: QS Cast tile tapped
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Cellular tile shown
763 // ACTION: QS Cellular tile tapped
764 // CATEGORY: QUICK_SETTINGS
765 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500766 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500767
768 // OPEN: QS Color inversion tile shown
769 // ACTION: QS Color inversion tile tapped
770 // SUBTYPE: 0 is off, 1 is on
771 // CATEGORY: QUICK_SETTINGS
772 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500773 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500774
775 // OPEN: QS Cellular tile > Cellular detail panel
776 // CATEGORY: QUICK_SETTINGS
777 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500778 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500779
780 // OPEN: QS Do not disturb tile shown
781 // ACTION: QS Do not disturb tile tapped
782 // SUBTYPE: 0 is off, 1 is on
783 // CATEGORY: QUICK_SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // OPEN: QS Flashlight tile shown
788 // ACTION: QS Flashlight tile tapped
789 // SUBTYPE: 0 is off, 1 is on
790 // CATEGORY: QUICK_SETTINGS
791 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500792 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OPEN: QS Hotspot tile shown
795 // ACTION: QS Hotspot tile tapped
796 // SUBTYPE: 0 is off, 1 is on
797 // CATEGORY: QUICK_SETTINGS
798 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500799 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500800
801 // OPEN: QS 3P tile shown
802 // ACTION: QS 3P tile tapped
803 // CATEGORY: QUICK_SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // OPEN: QS Location tile shown
808 // ACTION: QS Location tile tapped
809 // SUBTYPE: 0 is off, 1 is on
810 // CATEGORY: QUICK_SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // OPEN: QS Rotation tile shown
815 // ACTION: QS Rotation tile tapped
816 // SUBTYPE: 0 is off, 1 is on
817 // CATEGORY: QUICK_SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500822 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500823
824 // OPEN: QS User list panel
825 // CATEGORY: QUICK_SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // OPEN: QS WiFi tile shown
830 // ACTION: QS WiFi tile tapped
831 // SUBTYPE: 0 is off, 1 is on
832 // CATEGORY: QUICK_SETTINGS
833 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OPEN: Notification Panel (including lockscreen)
837 // CATEGORY: NOTIFICATION
838 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500839 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // OPEN: Notification in panel became visible.
842 // PACKAGE: App that posted the notification.
843 // ACTION: Notification is tapped.
844 // PACKAGE: App that posted the notification
845 // DETAIL: Notification is expanded by user.
846 // PACKAGE: App that posted the notification
847 // DISMISS: Notification is dismissed.
848 // PACKAGE: App that posted the notification
849 // SUBTYPE: Dismiss reason from NotificationManagerService.java
850 // CATEGORY: NOTIFICATION
851 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500852 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: User tapped notification action
855 // PACKAGE: App that posted the notification
856 // SUBTYPE: Index of action on notification
857 // CATEGORY: NOTIFICATION
858 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OPEN: Settings > Apps > Configure apps > App permissions
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OPEN: Settings > Location > Scanning
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500872 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // OPEN: Settings > Sound & notification > App notifications
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // ACTION: Settings > Wi-Fi > Overflow > Add Network
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700885 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500886 // CATEGORY: SETTINGS
887 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500888 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500889
890 // ACTION: Settings > Wi-Fi > Overflow > Refresh
891 // CATEGORY: SETTINGS
892 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500893 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500894
895 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
896 // CATEGORY: SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700901 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: Settings > Wi-Fi > Toggle on
907 // CATEGORY: SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500912 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: Settings > Sound & notification > DND > Priority only allows
915 // CATEGORY: SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // OPEN: Settings > Sound & notification > DND > Automatic rules
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: Settings > Apps > Configure apps > App links
925 // CATEGORY: SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: Settings > Sound & notification > DND > [Time based rule]
930 // CATEGORY: SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: Settings > Sound & notification > DND > [External rule]
935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // OPEN: Settings > Sound & notification > DND > [Event rule]
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500943
Howard Ro8b56f752018-08-07 15:44:25 -0700944 // ACTION: App notification settings > Block Notifications or long press on
945 // notification blocks.
Chris Wren7c516842016-03-01 16:44:32 -0500946 // CATEGORY: SETTINGS
Howard Ro8b56f752018-08-07 15:44:25 -0700947 // OS: 9.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: Notification shade > Dismiss all button
951 // CATEGORY: NOTIFICATION
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // OPEN: QS Do Not Disturb detail panel
956 // CATEGORY: QUICK_SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // OPEN: QS Bluetooth detail panel
961 // CATEGORY: QUICK_SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // OPEN: QS Cast detail panel
966 // CATEGORY: QUICK_SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // OPEN: QS Wi-Fi detail panel
971 // CATEGORY: QUICK_SETTINGS
972 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500973 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500974
975 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
976 // SUBTYPE: 0 is off, 1 is on
977 // CATEGORY: QUICK_SETTINGS
978 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500979 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500980
981 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
982 // SUBTYPE: 0 is off, 1 is on
983 // CATEGORY: QUICK_SETTINGS
984 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500985 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // ACTION: QS Cellular detail panel > Cellular toggle
988 // SUBTYPE: 0 is off, 1 is on
989 // CATEGORY: QUICK_SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: QS User list panel > Select different user
994 // CATEGORY: QUICK_SETTINGS
995 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500996 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500997
998 // ACTION: QS Cast detail panel > Select cast device
999 // CATEGORY: QUICK_SETTINGS
1000 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001001 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: QS Cast detail panel > Disconnect cast device
1004 // CATEGORY: QUICK_SETTINGS
1005 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001006 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: Settings > Bluetooth > Toggle
1009 // SUBTYPE: 0 is off, 1 is on
1010 // CATEGORY: SETTINGS
1011 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001012 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001013
1014 // ACTION: Settings > Bluetooth > Overflow > Refresh
1015 // CATEGORY: SETTINGS
1016 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001017 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001018
1019 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1020 // CATEGORY: SETTINGS
1021 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001022 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001023
1024 // ACTION: Settings > Bluetooth > Overflow > Show received files
1025 // CATEGORY: SETTINGS
1026 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001027 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: QS DND details panel > Increase / Decrease exit time
1030 // SUBTYPE: true is increase, false is decrease
1031 // CATEGORY: QUICK_SETTINGS
1032 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001033 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001034
1035 // ACTION: QS DND details panel > [Exit condition]
1036 // CATEGORY: QUICK_SETTINGS
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // ACTION: QS DND details panel > [DND mode]
1041 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1042 // CATEGORY: QUICK_SETTINGS
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: QS DND detail panel > DND toggle
1047 // SUBTYPE: 0 is off, 1 is on
1048 // CATEGORY: QUICK_SETTINGS
1049 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001050 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001051
1052 // ACTION: DND Settings > Priority only allows > Reminder toggle
1053 // SUBTYPE: 0 is off, 1 is on
1054 // CATEGORY: SETTINGS
1055 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001056 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001057
1058 // ACTION: DND Settings > Priority only allows > Event toggle
1059 // SUBTYPE: 0 is off, 1 is on
1060 // CATEGORY: SETTINGS
1061 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001062 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001063
1064 // ACTION: DND Settings > Priority only allows > Messages
1065 // SUBTYPE: 0 is off, 1 is on
1066 // CATEGORY: SETTINGS
1067 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001068 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001069
1070 // ACTION: DND Settings > Priority only allows > Calls
1071 // SUBTYPE: 0 is off, 1 is on
1072 // CATEGORY: SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1077 // SUBTYPE: 0 is off, 1 is on
1078 // CATEGORY: SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: DND Settings > Automatic rules > Add rule
1083 // CATEGORY: SETTINGS
1084 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001085 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // ACTION: DND Settings > Automatic rules > Add rule > OK
1088 // CATEGORY: SETTINGS
1089 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001090 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001091
1092 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1093 // CATEGORY: SETTINGS
1094 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001095 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1098 // CATEGORY: SETTINGS
1099 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001100 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001101
1102 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1103 // SUBTYPE: 0 is off, 1 is on
1104 // CATEGORY: SETTINGS
1105 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001106 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001107
1108 // ACTION: Settings > More > Airplane mode toggle
1109 // SUBTYPE: 0 is off, 1 is on
1110 // CATEGORY: SETTINGS
1111 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001112 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // ACTION: Settings > Data usage > Cellular data toggle
1115 // SUBTYPE: 0 is off, 1 is on
1116 // CATEGORY: SETTINGS
1117 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001118 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001119
1120 // OPEN: Settings > Sound & notification > Notification access
1121 // CATEGORY: SETTINGS
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // OPEN: Settings > Sound & notification > Do Not Disturb access
1126 // CATEGORY: SETTINGS
1127 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001128 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // OPEN: Settings > Apps > Configure apps > Default Apps
1131 // CATEGORY: SETTINGS
1132 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001133 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001134
1135 // OPEN: Settings > Internal storage > Apps storage
1136 // CATEGORY: SETTINGS
1137 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001138 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001139
1140 // OPEN: Settings > Security > Usage access
1141 // CATEGORY: SETTINGS
1142 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001143 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // OPEN: Settings > Battery > Battery optimization
1146 // CATEGORY: SETTINGS
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001151 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001152
1153 // ACTION: Lockscreen > Unlock gesture
1154 // CATEGORY: GLOBAL_SYSTEM_UI
1155 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001156 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001157
1158 // ACTION: Lockscreen > Pull shade open
1159 // CATEGORY: GLOBAL_SYSTEM_UI
1160 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001161 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001162
1163 // ACTION: Lockscreen > Tap on lock, shows hint
1164 // CATEGORY: GLOBAL_SYSTEM_UI
1165 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001166 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001167
1168 // ACTION: Lockscreen > Camera
1169 // CATEGORY: GLOBAL_SYSTEM_UI
1170 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001171 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001172
1173 // ACTION: Lockscreen > Dialer
1174 // CATEGORY: GLOBAL_SYSTEM_UI
1175 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001176 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // ACTION: Lockscreen > Tap on lock, locks phone
1179 // CATEGORY: GLOBAL_SYSTEM_UI
1180 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001181 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // ACTION: Lockscreen > Tap on notification, false touch rejection
1184 // CATEGORY: GLOBAL_SYSTEM_UI
1185 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001186 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // ACTION: Lockscreen > Swipe down to open quick settings
1189 // CATEGORY: GLOBAL_SYSTEM_UI
1190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001191 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // ACTION: Swipe down to open quick settings when unlocked
1194 // CATEGORY: GLOBAL_SYSTEM_UI
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // ACTION: Notification shade > Tap to open quick settings
1199 // CATEGORY: GLOBAL_SYSTEM_UI
1200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001201 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001202
1203 // OPEN: Lockscreen
1204 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1205 // CATEGORY: GLOBAL_SYSTEM_UI
1206 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001207 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001208
1209 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1210 // CATEGORY: GLOBAL_SYSTEM_UI
1211 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001212 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001213
1214 // OPEN: Screen turned on
1215 // SUBTYPE: 2 is user action
1216 // CATEGORY: GLOBAL_SYSTEM_UI
1217 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001218 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // OPEN: Notification caused sound, vibration, and/or LED blink
1221 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1222 // CATEGORY: NOTIFICATION
1223 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001224 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001225
1226 // ACTION: Lockscreen > Emergency Call button
1227 // CATEGORY: GLOBAL_SYSTEM_UI
1228 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001229 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1232 // CATEGORY: SETTINGS
1233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001234 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001235
1236 // OPEN: Settings > Memory
1237 // CATEGORY: SETTINGS
1238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001239 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001240
1241 // ACTION: Settings > Display > When device is rotated
1242 // CATEGORY: SETTINGS
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Long press on notification to view controls
1247 // CATEGORY: NOTIFICATION
1248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001249 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001250
1251 // ACTION: Notificatoin controls > Info button
1252 // CATEGORY: NOTIFICATION
1253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001254 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001255
1256 // ACTION: Notification controls > Settings button
1257 // CATEGORY: NOTIFICATION
1258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001259 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001260
1261 // OPEN: Volume Dialog (with hardware buttons)
1262 // CATEGORY: GLOBAL_SYSTEM_UI
1263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001264 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001265
1266 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1267 // CATEGORY: GLOBAL_SYSTEM_UI
1268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001269 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001270
1271 // ACTION: Volume dialog > Adjust volume slider
1272 // SUBTYPE: volume level (0-7)
1273 // CATEGORY: GLOBAL_SYSTEM_UI
1274 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001275 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001276
1277 // ACTION: Volume dialog > Select non-active stream
1278 // SUBTYPE: stream (defined in AudioSystem.java)
1279 // CATEGORY: GLOBAL_SYSTEM_UI
1280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001281 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001282
1283 // ACTION: Adjust volume with hardware key
1284 // SUBTYPE: volume level (0-7)
1285 // CATEGORY: GLOBAL_SYSTEM_UI
1286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001287 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001288
1289 // ACTION: Volume dialog > Mute a stream by tapping icon
1290 // SUBTYPE: mute is 1, audible is 2
1291 // CATEGORY: GLOBAL_SYSTEM_UI
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // ACTION: Volume dialog > Change ringer mode by tapping icon
1296 // SUBTYPE: 2 is audible, 3 is vibrate
1297 // CATEGORY: GLOBAL_SYSTEM_UI
1298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001299 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001300
1301 // ACTION: Chooser shown (share target, file open, etc.)
1302 // CATEGORY: GLOBAL_SYSTEM_UI
1303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001304 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001305
1306 // ACTION: Chooser > User taps an app target
1307 // SUBTYPE: Index of target
1308 // CATEGORY: GLOBAL_SYSTEM_UI
1309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001310 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001311
1312 // ACTION: Chooser > User taps a service target
1313 // SUBTYPE: Index of target
1314 // CATEGORY: GLOBAL_SYSTEM_UI
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // ACTION: Chooser > User taps a standard target
1319 // SUBTYPE: Index of target
1320 // CATEGORY: GLOBAL_SYSTEM_UI
1321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001322 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001323
1324 // ACTION: QS Brightness Slider (with auto brightness disabled)
1325 // SUBTYPE: slider value
1326 // CATEGORY: QUICK_SETTINGS
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // ACTION: QS Brightness Slider (with auto brightness enabled)
1331 // SUBTYPE: slider value
1332 // CATEGORY: QUICK_SETTINGS
1333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001334 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001335
1336 // OPEN: Settings > Display > Brightness Slider
1337 // CATEGORY: SETTINGS
1338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001339 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001340
Christine Franks47175c32017-03-14 10:21:25 -07001341 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // OPEN: Display has entered dream mode
1347 // CATEGORY: GLOBAL_SYSTEM_UI
1348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001349 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001350
1351 // OPEN: Display has entered ambient notification mode
1352 // CATEGORY: GLOBAL_SYSTEM_UI
1353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001354 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001355
1356 // OPEN: Overview
1357 // CATEGORY: GLOBAL_SYSTEM_UI
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // OPEN: Settings > About phone > Legal information
1362 // CATEGORY: SETTINGS
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // OPEN: Settings > Search > Perform search
1367 // CATEGORY: SETTINGS
1368 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001369 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001370
1371 // OPEN: Settings > System UI Tuner
1372 // CATEGORY: SETTINGS
1373 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001374 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001375
1376 // OPEN: Settings > System UI Tuner > Quick Settings
1377 // CATEGORY: SETTINGS
1378 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001379 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001380
1381 // OPEN: Settings > System UI Tuner > Demo mode
1382 // CATEGORY: SETTINGS
1383 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001384 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1387 // PACKAGE: Tile
1388 // CATEGORY: SETTINGS
1389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001390 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001391
1392 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1393 // PACKAGE: Tile
1394 // CATEGORY: SETTINGS
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1399 // PACKAGE: Tile
1400 // CATEGORY: SETTINGS
1401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001402 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001403
1404 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1405 // PACKAGE: Icon
1406 // CATEGORY: SETTINGS
1407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001408 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001409
1410 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1411 // PACKAGE: Icon
1412 // CATEGORY: SETTINGS
1413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001414 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001415
1416 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1417 // SUBTYPE: false is disabled, true is enabled
1418 // CATEGORY: SETTINGS
1419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001420 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001421
1422 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1423 // SUBTYPE: false is disabled, true is enabled
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1429 // SUBTYPE: 0 is disabled, 1 is enabled
1430 // CATEGORY: SETTINGS
1431 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001432 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001433
1434 // OPEN: Settings > Developer options > Inactive apps
1435 // CATEGORY: SETTINGS
1436 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001437 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001438
1439 // ACTION: Long press home to bring up assistant
1440 // CATEGORY: GLOBAL_SYSTEM_UI
1441 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001442 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001443
1444 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1445 // CATEGORY: SETTINGS
1446 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001447 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001448
1449 // OPEN: Fingerprint Enroll > Find Sensor
1450 // CATEGORY: SETTINGS
1451 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001452 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001453
1454 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1455 // CATEGORY: SETTINGS
1456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001457 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001458
1459 // OPEN: Fingerprint Enroll introduction
1460 // CATEGORY: SETTINGS
1461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001462 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001463
1464 // OPEN: Fingerprint Enroll onboarding
1465 // CATEGORY: SETTINGS
1466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001467 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001468
1469 // OPEN: Fingerprint Enroll > Let's Start!
1470 // CATEGORY: SETTINGS
1471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001472 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001473
1474 // OPEN: Fingerprint Enroll SUW > Let's Start!
1475 // CATEGORY: SETTINGS
1476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001477 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001478
1479 // OPEN: Fingerprint Enroll SUW > Find Sensor
1480 // CATEGORY: SETTINGS
1481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001482 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001483
1484 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1485 // CATEGORY: SETTINGS
1486 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001487 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001488
1489 // OPEN: Fingerprint Enroll SUW introduction
1490 // CATEGORY: SETTINGS
1491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001492 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001493
1494 // OPEN: Fingerprint Enroll SUW onboarding
1495 // CATEGORY: SETTINGS
1496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001497 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001498
1499 // ACTION: Add fingerprint > Enroll fingerprint
1500 // CATEGORY: SETTINGS
1501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001502 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001503
1504 // ACTION: Authenticate using fingerprint
1505 // CATEGORY: SETTINGS
1506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001507 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001508
1509 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1510 // CATEGORY: SETTINGS
1511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001512 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001513
1514 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1515 // CATEGORY: SETTINGS
1516 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001517 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001518
1519 // ACTION: Double tap camera shortcut
1520 // CATEGORY: GLOBAL_SYSTEM_UI
1521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001522 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001523
1524 // ACTION: Double twist camera shortcut
1525 // CATEGORY: GLOBAL_SYSTEM_UI
1526 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001527 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001528
1529 // OPEN: QS Work Mode tile shown
1530 // ACTION: QS Work Mode tile tapped
1531 // SUBTYPE: 0 is off, 1 is on
1532 // CATEGORY: QUICK_SETTINGS
1533 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001534 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001535
1536 // OPEN: Settings > Developer Options > Background Check
1537 // CATEGORY: SETTINGS
1538 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001539 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001540
1541 // OPEN: QS Lock tile shown
1542 // ACTION: QS Lock tile tapped
1543 // SUBTYPE: 0 is off, 1 is on
1544 // CATEGORY: QUICK_SETTINGS
1545 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001546 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001547
1548 // OPEN: QS User Tile shown
1549 // CATEGORY: QUICK_SETTINGS
1550 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001551 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001552
1553 // OPEN: QS Battery tile shown
1554 // CATEGORY: QUICK_SETTINGS
1555 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001556 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001557
1558 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1559 // CATEGORY: SETTINGS
1560 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001561 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001562
1563 // ACTION: Visual interruptions > No screen interuptions toggle
1564 // SUBTYPE: 0 is off, 1 is on
1565 // CATEGORY: SETTINGS
1566 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001567 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001568
1569 // ACTION: Visual interruptions > No notification light toggle
1570 // SUBTYPE: 0 is off, 1 is on
1571 // CATEGORY: SETTINGS
1572 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001573 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001574
Julia Reynolds005c8b92017-08-24 10:35:53 -04001575 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001576 // CATEGORY: SETTINGS
1577 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001578 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001579
1580 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1581 // PACKAGE: Selected SMS app
1582 // CATEGORY: SETTINGS
1583 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001584 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001585
1586 // OPEN: QS Color modification tile shown
1587 // ACTION: QS Color modification tile tapped
1588 // SUBTYPE: 0 is off, 1 is on
1589 // CATEGORY: QUICK_SETTINGS
1590 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001591 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001592
1593 // OPEN: QS Custom tile shown
1594 // ACTION: QS Work Mode tile tapped
1595 // CATEGORY: QUICK_SETTINGS
1596 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001597 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001598
1599 // ACTION: Visual interruptions > Never turn off the screen toggle
1600 // SUBTYPE: 0 is off, 1 is on
1601 // CATEGORY: SETTINGS
1602 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001603 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001604
Chris Wren7c516842016-03-01 16:44:32 -05001605 // ACTION: Overview > Long-press task, drag to enter split-screen
1606 // CATEGORY: GLOBAL_SYSTEM_UI
1607 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001608 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1609
Chris Wren7c516842016-03-01 16:44:32 -05001610 // ACTION: In App > Long-press Overview button to enter split-screen
1611 // CATEGORY: GLOBAL_SYSTEM_UI
1612 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001613 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1614
Chris Wren7c516842016-03-01 16:44:32 -05001615 // ACTION: In App > Swipe Overview button to enter split-screen
1616 // CATEGORY: GLOBAL_SYSTEM_UI
1617 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001618 ACTION_WINDOW_DOCK_SWIPE = 272;
1619
Chris Wren7c516842016-03-01 16:44:32 -05001620 // ACTION: Launch profile-specific app > Confirm credentials
1621 // CATEGORY: GLOBAL_SYSTEM_UI
1622 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001623 PROFILE_CHALLENGE = 273;
1624
Chris Wren7c516842016-03-01 16:44:32 -05001625 // OPEN: QS Battery detail panel
1626 // CATEGORY: GLOBAL_SYSTEM_UI
1627 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001628 QS_BATTERY_DETAIL = 274;
1629
Chris Wren7c516842016-03-01 16:44:32 -05001630 // OPEN: Overview > History
1631 // CATEGORY: GLOBAL_SYSTEM_UI
1632 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001633 OVERVIEW_HISTORY = 275;
1634
Chris Wren7c516842016-03-01 16:44:32 -05001635 // ACTION: Overview > Page by tapping Overview button
1636 // CATEGORY: GLOBAL_SYSTEM_UI
1637 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001638 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001639
Chris Wren7c516842016-03-01 16:44:32 -05001640 // ACTION: Overview > Select app
1641 // CATEGORY: GLOBAL_SYSTEM_UI
1642 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001643 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001644
Chris Wren7c516842016-03-01 16:44:32 -05001645 // ACTION: View emergency info
1646 // CATEGORY: GLOBAL_SYSTEM_UI
1647 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001648 ACTION_VIEW_EMERGENCY_INFO = 278;
1649
Chris Wren7c516842016-03-01 16:44:32 -05001650 // ACTION: Edit emergency info activity
1651 // CATEGORY: SETTINGS
1652 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001653 ACTION_EDIT_EMERGENCY_INFO = 279;
1654
Chris Wren7c516842016-03-01 16:44:32 -05001655 // ACTION: Edit emergency info field
1656 // CATEGORY: SETTINGS
1657 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001658 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1659
Chris Wren7c516842016-03-01 16:44:32 -05001660 // ACTION: Add emergency contact
1661 // CATEGORY: SETTINGS
1662 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001663 ACTION_ADD_EMERGENCY_CONTACT = 281;
1664
Chris Wren7c516842016-03-01 16:44:32 -05001665 // ACTION: Delete emergency contact
1666 // CATEGORY: SETTINGS
1667 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001668 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1669
Chris Wren7c516842016-03-01 16:44:32 -05001670 // ACTION: Call emergency contact
1671 // CATEGORY: SETTINGS
1672 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001673 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001674
Chris Wren7c516842016-03-01 16:44:32 -05001675 // OPEN: QS Data Saver tile shown
1676 // ACTION: QS Data Saver tile tapped
1677 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001678 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001679
Robin Lee8c1306e2016-02-01 11:37:02 +00001680 // OPEN: Settings > Security > User credentials
1681 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001682 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001683 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001684
Chris Wren7c516842016-03-01 16:44:32 -05001685 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1686 // CATEGORY: GLOBAL_SYSTEM_UI
1687 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001688 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001689
1690 // Logged when the user scrolls through overview manually
1691 OVERVIEW_SCROLL = 287;
1692
1693 // Logged when the overview times out automatically selecting an app
1694 OVERVIEW_SELECT_TIMEOUT = 288;
1695
1696 // Logged when a user dismisses a task in overview
1697 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001698
1699 // Logged when the user modifying the notification importance slider.
1700 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1701
1702 // Logged when the user saves a modification to notification importance. Negative numbers
1703 // indicate the user lowered the importance; positive means they increased it.
1704 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001705
Chris Wren7c516842016-03-01 16:44:32 -05001706 // ACTION: Long-press power button, then tap "Take bug report" option.
1707 // CATEGORY: GLOBAL_SYSTEM_UI
1708 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001709 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1710
Chris Wren7c516842016-03-01 16:44:32 -05001711 // ACTION: Long-press power button, then long-press "Take bug report" option.
1712 // CATEGORY: GLOBAL_SYSTEM_UI
1713 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001714 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1715
Chris Wren7c516842016-03-01 16:44:32 -05001716 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1717 // CATEGORY: SETTINGS
1718 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001719 // Interactive bug report initiated from Settings.
1720 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1723 // CATEGORY: SETTINGS
1724 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001725 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001726 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1727
Chris Wren7c516842016-03-01 16:44:32 -05001728 // ACTION: User tapped notification action to cancel a bug report
1729 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001730 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001731 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1732
Chris Wren7c516842016-03-01 16:44:32 -05001733 // ACTION: User tapped notification action to launch bug report details screen
1734 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001735 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001736 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1737
Chris Wren7c516842016-03-01 16:44:32 -05001738 // ACTION: User tapped notification action to take adition screenshot on bug report
1739 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001740 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001741 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1742
Chris Wren7c516842016-03-01 16:44:32 -05001743 // ACTION: User tapped notification to share bug report
1744 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001745 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001746 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1747
Chris Wren7c516842016-03-01 16:44:32 -05001748 // ACTION: User changed bug report name using the details screen
1749 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001750 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001751 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1752
Chris Wren7c516842016-03-01 16:44:32 -05001753 // ACTION: User changed bug report title using the details screen
1754 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001755 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001756 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1757
Chris Wren7c516842016-03-01 16:44:32 -05001758 // ACTION: User changed bug report description using the details screen
1759 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001760 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001761 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1762
Chris Wren7c516842016-03-01 16:44:32 -05001763 // ACTION: User tapped Save in the bug report details screen.
1764 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001765 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001766 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1767
Chris Wren7c516842016-03-01 16:44:32 -05001768 // ACTION: User tapped Cancel in the bug report details screen.
1769 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001770 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001771 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001772
1773 // Tuner: Open/close calibrate dialog.
1774 TUNER_CALIBRATE_DISPLAY = 305;
1775
1776 // Tuner: Open/close color and appearance.
1777 TUNER_COLOR_AND_APPEARANCE = 306;
1778
1779 // Tuner: Apply calibrate dialog.
1780 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1781
1782 // Tuner: Open/close night mode.
1783 TUNER_NIGHT_MODE = 308;
1784
1785 // Tuner: Change night mode.
1786 ACTION_TUNER_NIGHT_MODE = 309;
1787
1788 // Tuner: Change night mode auto.
1789 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1790
1791 // Tuner: Change night mode adjust dark theme.
1792 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1793
1794 // Tuner: Change night mode adjust tint.
1795 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1796
1797 // Tuner: Change night mode adjust brightness.
1798 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1799
1800 // Tuner: Change do not disturb in volume panel.
1801 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1802
1803 // Tuner: Change do not disturb volume buttons shortcut.
1804 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001805
1806 // Logs the action the user takes when an app crashed.
1807 ACTION_APP_CRASH = 316;
1808
1809 // Logs the action the user takes when an app ANR'd.
1810 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001811
1812 // Logged when a user double taps the overview button to launch the previous task
1813 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001814
1815 // Logged when we execute an app transition. This indicates the total delay from startActivity
1816 // until the app transition is starting to animate, in milliseconds.
1817 APP_TRANSITION_DELAY_MS = 319;
1818
1819 // Logged when we execute an app transition. This indicates the reason why the transition
1820 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1821 APP_TRANSITION_REASON = 320;
1822
1823 // Logged when we execute an app transition and we drew a starting window. This indicates the
1824 // delay from startActivity until the starting window was drawn.
1825 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1826
1827 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1828 // the delay from startActivity until all windows have been drawn.
1829 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1830
1831 // Logged when we execute an app transition. This indicates the component name of the current
1832 // transition.
1833 APP_TRANSITION_COMPONENT_NAME = 323;
1834
1835 // Logged when we execute an app transition. This indicates whether the process was already
1836 // running.
1837 APP_TRANSITION_PROCESS_RUNNING = 324;
1838
1839 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1840 // the transition was executed.
1841 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001842
Chris Wren38f98812016-07-13 14:28:40 -04001843 // ACTION: app requested access to a scoped directory, user granted it.
1844 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1845 // CATEGORY: GLOBAL_SYSTEM_UI
1846 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001847 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1848
Chris Wren38f98812016-07-13 14:28:40 -04001849 // ACTION: app requested access to a scoped directory, user denied it.
1850 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1851 // CATEGORY: GLOBAL_SYSTEM_UI
1852 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001853 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1854
Chris Wren38f98812016-07-13 14:28:40 -04001855 // ACTION: app requested access to a scoped directory, user granted it.
1856 // PACKAGE: app that requested access
1857 // CATEGORY: GLOBAL_SYSTEM_UI
1858 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001859 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1860
Chris Wren38f98812016-07-13 14:28:40 -04001861 // ACTION: app requested access to a scoped directory, user denied it.
1862 // PACKAGE: app that requested access.
1863 // CATEGORY: GLOBAL_SYSTEM_UI
1864 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001865 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1866
Chris Wren38f98812016-07-13 14:28:40 -04001867 // ACTION: app requested access to a directory user has already been granted
1868 // access before.
1869 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1870 // CATEGORY: GLOBAL_SYSTEM_UI
1871 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001872 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1873
Chris Wren38f98812016-07-13 14:28:40 -04001874 // ACTION: app requested access to a directory user has already been granted
1875 // access before.
1876 // PACKAGE: app that requested access.
1877 // CATEGORY: GLOBAL_SYSTEM_UI
1878 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001879 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001880
Chris Wren38f98812016-07-13 14:28:40 -04001881 // ACTION: Logged when the user slides a notification and reveals the gear
1882 // beneath it.
1883 // CATEGORY: NOTIFICATION
1884 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001885 ACTION_REVEAL_GEAR = 332;
1886
Chris Wren38f98812016-07-13 14:28:40 -04001887 // ACTION: Logged when the user taps on the gear beneath a notification.
1888 // CATEGORY: NOTIFICATION
1889 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001890 ACTION_TOUCH_GEAR = 333;
1891
Ruben Brunke24b9a62016-02-16 21:38:24 -08001892 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001893 // CATEGORY: SETTINGS
1894 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001895 VR_MANAGE_LISTENERS = 334;
1896
Jason Monk6f5354d2016-03-08 14:18:08 -05001897 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001898 // CATEGORY: SETTINGS
1899 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001901
Jason Monk6f5354d2016-03-08 14:18:08 -05001902 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001903 // CATEGORY: SETTINGS
1904 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001906
Jason Monk6f5354d2016-03-08 14:18:08 -05001907 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001908 // CATEGORY: SETTINGS
1909 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001911
Jason Monk6f5354d2016-03-08 14:18:08 -05001912 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001913 // CATEGORY: SETTINGS
1914 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001916
Jason Monk6f5354d2016-03-08 14:18:08 -05001917 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001918 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001919 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001920
Jason Monk6f5354d2016-03-08 14:18:08 -05001921 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001922 // CATEGORY: SETTINGS
1923 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001924 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001925
Jason Monk6f5354d2016-03-08 14:18:08 -05001926 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001927 // CATEGORY: SETTINGS
1928 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001929 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001930
Jason Monk6f5354d2016-03-08 14:18:08 -05001931 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001932 // CATEGORY: SETTINGS
1933 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001934 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001935
Jason Monk6f5354d2016-03-08 14:18:08 -05001936 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001937 // CATEGORY: SETTINGS
1938 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001939 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001940
Jason Monk6f5354d2016-03-08 14:18:08 -05001941 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001942 // CATEGORY: SETTINGS
1943 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001944 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001945
Jason Monk6f5354d2016-03-08 14:18:08 -05001946 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001947 // CATEGORY: SETTINGS
1948 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001949 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001950
Jason Monk6f5354d2016-03-08 14:18:08 -05001951 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001952 // CATEGORY: SETTINGS
1953 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001954 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001955
Jason Monk6f5354d2016-03-08 14:18:08 -05001956 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001957 // CATEGORY: SETTINGS
1958 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001959 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001960
Jason Monk6f5354d2016-03-08 14:18:08 -05001961 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001962 // CATEGORY: SETTINGS
1963 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001964 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001965
Jason Monk6f5354d2016-03-08 14:18:08 -05001966 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001967 // CATEGORY: SETTINGS
1968 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001969 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1970
1971 // Used for generic logging of Settings Preference Persistence, should not be used
1972 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001973 // CATEGORY: SETTINGS
1974 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001975 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001976
Jason Monk6f5354d2016-03-08 14:18:08 -05001977 // Settings -> Apps -> Gear -> Special access
1978 SPECIAL_ACCESS = 351;
1979
Muyuan Lia2129992016-03-03 18:30:39 -08001980 // Logs that the user docks window via shortcut key.
1981 WINDOW_DOCK_SHORTCUTS = 352;
1982
Felipe Lemeadccb992016-03-09 17:40:49 -08001983 // User already denied access to the request folder; action takes an integer
1984 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001985 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001986 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1987
1988 // User already denied access to the request folder; action pass package name
1989 // of calling package.
1990 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1991
1992 // User denied access to the request folder and checked 'Do not ask again';
1993 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001994 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001995 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1996
1997 // User denied access to the request folder and checked 'Do not ask again';
1998 // action pass package name of calling package.
1999 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2000
Winson3b6ba1a2016-03-22 15:37:54 -07002001 // Logged when a user dismisses all task in overview
2002 OVERVIEW_DISMISS_ALL = 357;
2003
Jason Monk96defbe2016-03-29 16:51:03 -04002004 // Quick Settings -> Edit
2005 QS_EDIT = 358;
2006
2007 // Quick Settings -> Edit -> Overflow -> Reset
2008 ACTION_QS_EDIT_RESET = 359;
2009
2010 // QS -> Edit - Drag a tile out of the active tiles.
2011 // The _SPEC contains either the spec of the tile or
2012 // the package of the 3rd party app in the PKG field.
2013 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2014 ACTION_QS_EDIT_REMOVE = 361;
2015
2016 // QS -> Edit - Drag a tile into the active tiles.
2017 // The _SPEC contains either the spec of the tile or
2018 // the package of the 3rd party app in the PKG field.
2019 ACTION_QS_EDIT_ADD_SPEC = 362;
2020 ACTION_QS_EDIT_ADD = 363;
2021
2022 // QS -> Edit - Drag a tile within the active tiles.
2023 // The _SPEC contains either the spec of the tile or
2024 // the package of the 3rd party app in the PKG field.
2025 ACTION_QS_EDIT_MOVE_SPEC = 364;
2026 ACTION_QS_EDIT_MOVE = 365;
2027
2028 // Long-press on a QS tile. Tile spec in package field.
2029 ACTION_QS_LONG_PRESS = 366;
2030
Anna Galuszadad131f2016-03-22 13:49:02 -07002031 // OPEN: SUW Welcome Screen -> Vision Settings
2032 // CATEGORY: SETTINGS
2033 // OS: N
2034 SUW_ACCESSIBILITY = 367;
2035
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002036 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2037 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2038 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002039 // ACTION: New magnification gesture configuration is chosen
2040 // SUBTYPE: 0 is off, 1 is on
2041 // CATEGORY: SETTINGS
2042 // OS: N
2043 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2044
2045 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2046 // ACTION: New font size is chosen
2047 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2048 // CATEGORY: SETTINGS
2049 // OS: N
2050 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2051
2052 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2053 // ACTION: New display size is chosen
2054 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2055 // CATEGORY: SETTINGS
2056 // OS: N
2057 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2058
2059 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2060 // ACTION: New screen reader configuration is chosen
2061 // SUBTYPE: 0 is off, 1 is on
2062 // CATEGORY: SETTINGS
2063 // OS: N
2064 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2065
Jason Monkc3620392016-03-30 15:46:03 -04002066 // ------- Begin N Settings conditionals -----
2067 // Conditionals are the green bars at the top of the settings dashboard
2068 // All conditionals will have visible/hide events onResume/onPause
2069 // but they will also be used as extra ints in the
2070 // dismiss/expand/collapse/click/button events
2071
2072 // swipe away conditional
2073 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2074
2075 // click on collapsed conditional or clicks expand button
2076 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2077
2078 // click collapse button on expanded conditional
2079 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2080
2081 // click main area of expanded conditional
2082 ACTION_SETTINGS_CONDITION_CLICK = 375;
2083
2084 // click a direct button on expanded conditional
2085 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2086
2087 // Airplane mode on
2088 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2089 // AKA Data saver on
2090 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2091 // Battery saver on
2092 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2093 // Cellular data off
2094 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2095 // Do not disturb on
2096 SETTINGS_CONDITION_DND = 381;
2097 // Hotspot on
2098 SETTINGS_CONDITION_HOTSPOT = 382;
2099 // Work profile off
2100 SETTINGS_CONDITION_WORK_MODE = 383;
2101
Jason Monk1b5d87b2016-03-30 16:03:15 -04002102 // ------- Begin N Settings suggestions -----
2103 // Since suggestions come from system apps, suggestions will
2104 // have generic constants and the package providing the suggestion
2105 // will be put in the package field. For suggestions in the Settings
2106 // package, the class name will be filled in instead (since settings
2107 // provides several suggetions).
2108
2109 // Settings shown/hidden on main settings dashboard.
2110 // These are actually visibility events, but visible/hidden doesn't
2111 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002112 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2113 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002114
2115 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002116 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002117
2118 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002119 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002120
Jason Monk397df682016-03-28 15:48:34 -04002121 // Settings > Apps > Gear > Special Access > Premium SMS access
2122 PREMIUM_SMS_ACCESS = 388;
2123
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002124 // Logged when the user resizes the docked stack. Arguments:
2125 // 0: Split 50:50
2126 // 1: Docked smaller
2127 // 2: Docked larger
2128 ACTION_WINDOW_DOCK_RESIZE = 389;
2129
2130 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2131 // 0: Docked gets maximized
2132 // 1: Fullscreen gets maximized
2133 ACTION_WINDOW_UNDOCK_MAX = 390;
2134
2135 // User tried to dock an unresizable app.
2136 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2137
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002138 // System UI Tuner > Other > Power notification controls
2139 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2140
2141 // System UI Tuner > Other > Power notification controls > Toggle on/off
2142 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2143
Chris Wren38f98812016-07-13 14:28:40 -04002144 // Action: user enable / disabled data saver using Settings
2145 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2146 // VALUE: 1 for enabled, 0 for disabled
2147 // CATEGORY: SETTINGS
2148 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002149 ACTION_DATA_SAVER_MODE = 394;
2150
Chris Wren38f98812016-07-13 14:28:40 -04002151 // User whitelisted an app for Data Saver mode; action pass package name of app
2152 // Action: user enable / disabled data saver using Settings
2153 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2154 // or
2155 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2156 // VALUE: package name of APP
2157 // CATEGORY: SETTINGS
2158 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002159 ACTION_DATA_SAVER_WHITELIST = 395;
2160
Chris Wren38f98812016-07-13 14:28:40 -04002161 // User blacklisted an app for Data Saver mode; action pass package name of app
2162 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2163 // VALUE: package name of APP
2164 // CATEGORY: SETTINGS
2165 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002166 ACTION_DATA_SAVER_BLACKLIST = 396;
2167
Adrian Roosceeb04c2016-04-25 14:00:54 -07002168 // User opened a remote input view associated with a notification. Passes package name of app
2169 // that posted the notification. Note that this can also happen transiently during notification
2170 // reinflation.
2171 ACTION_REMOTE_INPUT_OPEN = 397;
2172
2173 // User attempt to send data through a remote input view associated with a notification.
2174 // Passes package name of app that posted the notification. May succeed or fail.
2175 ACTION_REMOTE_INPUT_SEND = 398;
2176
2177 // Failed attempt to send data through a remote input view associated with a
2178 // notification. Passes package name of app that posted the notification.
2179 ACTION_REMOTE_INPUT_FAIL = 399;
2180
2181 // User closed a remote input view associated with a notification. Passes package name of app
2182 // that posted the notification. Note that this can also happen transiently during notification
2183 // reinflation.
2184 ACTION_REMOTE_INPUT_CLOSE = 400;
2185
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002186 // OPEN: Settings > Accounts > Work profile settings
2187 // CATEGORY: SETTINGS
2188 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2189
Jason Monk25118d12016-05-10 13:25:50 -04002190 // Settings -> Dev options -> Convert to file encryption
2191 CONVERT_FBE = 402;
2192
2193 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2194 CONVERT_FBE_CONFIRM = 403;
2195
2196 // Settings -> Dev options -> Running services
2197 RUNNING_SERVICES = 404;
2198
Jason Monka1f697f2016-05-06 15:09:44 -04002199 // The dialog shown by 3P intent to change current webview implementation.
2200 WEBVIEW_IMPLEMENTATION = 405;
2201
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002202 // Settings launched from expanded quick settings.
2203 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2204
Chris Wren698b1702016-05-23 11:16:32 -04002205 // Notification expansion state toggled by the expand affordance.
2206 ACTION_NOTIFICATION_EXPANDER = 407;
2207
2208 // Notification group expansion state toggled by the expand affordance.
2209 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2210
Chris Wren7ee84182016-05-27 13:34:02 -04002211
Chris Wren6abeeb92016-05-26 14:44:38 -04002212 // Notification expansion state toggled by the expand gesture.
2213 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2214
2215 // Notification group expansion state toggled by the expand gesture.
2216 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2217
Bhavik Singh3451da42016-06-01 18:25:59 -07002218 // User performs gesture that activates the ambient display
2219 // 1: Gesture performed is Nudge
2220 // 2: Gesture performed is Pickup
2221 // 4: Gesture performed is Double Tap
Lucas Dupinc81702e2018-08-09 15:41:55 -07002222 // 6: Gesture performed is Reach
Bhavik Singh3451da42016-06-01 18:25:59 -07002223 ACTION_AMBIENT_GESTURE = 411;
2224
Jason Monk9fa5f822016-05-11 10:26:31 -04002225 // ---- End N Constants, all N constants go above this line ----
2226
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002227 // ------- Begin N App Disambig Shade -----
2228 // Application disambig shade opened or closed with a featured app.
2229 // These are actually visibility events, but visible/hidden doesn't
2230 // take a package, so these are being logged as actions.
2231 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002232 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2233 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002234
2235 // Application disambig shade opened or closed without a featured app.
2236 // These are actually visibility events, but visible/hidden doesn't
2237 // take a package, so these are being logged as actions.
2238 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002239 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2240 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002241
2242 // User opens in an app by pressing “Always” in the application disambig shade.
2243 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002244 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002245
2246 // User opens in an app by pressing “Just Once” in the application disambig shade.
2247 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002248 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002249
2250 // User opens in an app by tapping on its name in the application disambig shade.
2251 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002252 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002253
Daniel Nishi010aa492016-05-11 09:42:24 -07002254 // OPEN: Settings > Internal storage > Storage manager
2255 // CATEGORY: SETTINGS
2256 STORAGE_MANAGER_SETTINGS = 458;
2257
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002258 // OPEN: Settings -> Gestures
2259 // CATEGORY: SETTINGS
2260 SETTINGS_GESTURES = 459;
2261
Daniel Nishi597e67f2016-05-18 13:56:13 -07002262 // ------ Begin Deletion Helper ------
2263 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2264 // SUBTYPE: false is off, true is on
2265 // CATEGORY: SETTINGS
2266 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002267
Daniel Nishi597e67f2016-05-18 13:56:13 -07002268 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2269 // SUBTYPE: false is off, true is on
2270 // CATEGORY: SETTINGS
2271 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2272
2273 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2274 // CATEGORY: SETTINGS
2275 // PACKAGE: Unchecked app
2276 ACTION_DELETION_SELECTION_APP_ON = 462;
2277
2278 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2279 // CATEGORY: SETTINGS
2280 // PACKAGE: Checked app
2281 ACTION_DELETION_SELECTION_APP_OFF = 463;
2282
2283 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2284 // SUBTYPE: false is expanded, true is collapsed
2285 // CATEGORY: SETTINGS
2286 ACTION_DELETION_APPS_COLLAPSED = 464;
2287
2288 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2289 // SUBTYPE: false is off, true is on
2290 // CATEGORY: SETTINGS
2291 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2292
2293 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2294 // SUBTYPE: false is expanded, true is collapsed
2295 // CATEGORY: SETTINGS
2296 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2297
2298 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2299 // CATEGORY: SETTINGS
2300 ACTION_DELETION_HELPER_CLEAR = 467;
2301
2302 // ACTION: Settings > Storage > Free Up Space > Cancel
2303 // CATEGORY: SETTINGS
2304 ACTION_DELETION_HELPER_CANCEL = 468;
2305
2306 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2307 // CATEGORY: SETTINGS
2308 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2309
2310 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2311 // CATEGORY: SETTINGS
2312 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2313
2314 // Deletion helper encountered an error during package deletion.
2315 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2316
2317 // Deletion helper encountered an error during downloads folder deletion.
2318 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2319
2320 // Deletion helper encountered an error during photo and video deletion.
2321 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2322
Fan Zhang5e956e82016-05-06 10:51:47 -07002323 // OPEN: Settings (root page if there are multiple tabs)
2324 // CATEGORY: SETTINGS
2325 DASHBOARD_CONTAINER = 474;
2326
2327 // OPEN: Settings -> SUPPORT TAB
2328 // CATEGORY: SETTINGS
2329 SUPPORT_FRAGMENT = 475;
2330
2331 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002332 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002333 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002334
2335 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002336 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002337 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2338
Fan Zhanga1985502016-06-16 16:48:38 -07002339 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002340 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002341 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2342
2343 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002344 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002345 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2346
2347 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002348 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002349 ACTION_SUPPORT_SIGN_IN = 480;
2350
2351 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002352 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002353 ACTION_SUPPORT_PHONE = 481;
2354
2355 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002356 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002357 ACTION_SUPPORT_CHAT = 482;
2358
2359 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002360 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002361 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2362
2363 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002364 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002365 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2366
Fan Zhang80807212016-06-30 12:26:55 -07002367 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002368 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002369 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2370
2371 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002372 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002373 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2374
2375 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002376 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002377 ACTION_SUPPORT_DIAL_TOLLED = 487;
2378
Justin Klaassen19494272016-07-18 21:38:24 -07002379 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002380 // CATEGORY: SETTINGS
2381 NIGHT_DISPLAY_SETTINGS = 488;
2382
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002383 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002384 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002385 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2386
Jason Monk484fd362016-07-13 15:24:32 -04002387 // Settings launched from collapsed quick settings.
2388 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2389
Justin Klaassen19494272016-07-18 21:38:24 -07002390 // OPEN: QS Night Light tile shown
2391 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002392 // SUBTYPE: 0 is off, 1 is on
2393 // CATEGORY: QUICK_SETTINGS
2394 QS_NIGHT_DISPLAY = 491;
2395
Justin Klaassen19494272016-07-18 21:38:24 -07002396 // Night Light on
2397 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2398
Doris Ling3c00afb2016-07-19 17:04:21 -07002399 // System navigation key up.
2400 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2401
2402 // System navigation key down.
2403 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2404
Doris Ling6dd3e462016-08-04 13:17:27 -07002405 // OPEN: Settings > Display -> Ambient Display
2406 // CATEGORY: SETTINGS
2407 ACTION_AMBIENT_DISPLAY = 495;
2408
Adrian Roos159ef7b2016-02-25 11:58:32 -08002409 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2410
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002411 // ACTION: The lockscreen gets shown because the SIM card was removed
2412 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2413 // CATEGORY: GLOBAL_SYSTEM_UI
2414 // OS: N-MR2
2415 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2416
2417 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2418
Clara Bayarric17a5982016-04-15 12:26:47 +01002419 // ------- Begin N Keyboard Shortcuts Helper -----
2420 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002421 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002422
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002423 // OPEN: Print Preview screen
2424 // Package: Package of app where print job is from
2425 PRINT_PREVIEW = 501;
2426
2427 // OPEN: User expands full print job options shade in print preview.
2428 PRINT_JOB_OPTIONS = 502;
2429
2430 // OPEN: “All Printers” screen for selecting printer
2431 // Subtype: # of printers listed
2432 PRINT_ALL_PRINTERS = 503;
2433
2434 // OPEN: “Add Printers” screen for adding printers
2435 // Subtype: # of enabled print service listed
2436 PRINT_ADD_PRINTERS = 504;
2437
2438 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2439 // Package: Package of print service.
2440 ACTION_PRINT = 505;
2441
2442 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2443 // Count all ACTION_PRINTER_SELECT_ALL actions.
2444 // Package: Package of print service tied to printer
2445 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2446
2447 // ACTION: User selects a printer from the “All printers” screen.
2448 // Package: Package of print service tied to printer
2449 ACTION_PRINTER_SELECT_ALL = 507;
2450
2451 // ACTION: User changes an option for the print job from print preview.
2452 // Subtype: 1: Copies
2453 // 2: Color mode
2454 // 3: Duplex mode
2455 // 4: Media (==Paper) size
2456 // 5: Orientation
2457 // 6: Page range
2458 // Package: Package of print service tied to printer
2459 ACTION_PRINT_JOB_OPTIONS = 508;
2460
2461 // ACTION: User searches for printer from All Printers
2462 ACTION_PRINTER_SEARCH = 509;
2463
2464 // ACTION: User selects “Add print service” button from All Printers
2465 ACTION_PRINT_SERVICE_ADD = 510;
2466
2467 // ACTION: User Enables/Disables Print Service via any means.
2468 // Subtype: 0: Enabled
2469 // 1: Disabled
2470 ACTION_PRINT_SERVICE_TOGGLE = 511;
2471
2472 // ACTION: User installs print recommended print service
2473 // Package: Package of print service
2474 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2475
Doris Ling88a6b162016-08-08 16:17:43 -07002476 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2477 // SUBTYPE: sub settings classname
2478 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2479
Fan Zhang92c60382016-08-08 14:03:53 -07002480 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2481 USER_DICTIONARY_SETTINGS = 514;
2482
2483 // OPEN: Settings > Date & time > Select time zone
2484 ZONE_PICKER = 515;
2485
2486 // OPEN: Settings > Security > Device administrators
2487 DEVICE_ADMIN_SETTINGS = 516;
2488
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002489 // ACTION: Managed provisioning was launched to set this package as DPC app.
2490 // PACKAGE: DPC's package name.
2491 PROVISIONING_DPC_PACKAGE_NAME = 517;
2492
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002493 // ACTION: Managed provisioning triggered DPC installation.
2494 // PACKAGE: Package name of package which installed DPC.
2495 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2496
2497 // ACTION: Logged when provisioning activity finishes.
2498 // TIME: Indicates time taken by provisioning activity to finish in MS.
2499 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2500
2501 // ACTION: Logged when preprovisioning activity finishes.
2502 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2503 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2504
2505 // ACTION: Logged when encrypt device activity finishes.
2506 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2507 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2508
2509 // ACTION: Logged when web activity finishes.
2510 // TIME: Indicates total time taken by web activity to finish in MS.
2511 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2512
2513 // ACTION: Logged when trampoline activity finishes.
2514 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2515 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2516
2517 // ACTION: Logged when encryption activity finishes.
2518 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2519 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2520
2521 // ACTION: Logged when finalization activity finishes.
2522 // TIME: Indicates time taken by finalization activity to finish in MS.
2523 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002524
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002525 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002526 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002527
Fan Zhang95094182016-08-24 18:14:16 -07002528 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002529 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002530
2531 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002532 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002533
2534 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002535 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002536
2537 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002538 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002539
2540 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002541 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002542
Fan Zhangc1352ae2016-09-16 12:46:11 -07002543 // OPEN: Settings > Security > Use one lock dialog
2544 DIALOG_UNIFICATION_CONFIRMATION = 532;
2545
2546 // OPEN: Settings > Security > User Credential
2547 DIALOG_USER_CREDENTIAL = 533;
2548
2549 // OPEN: Settings > Accounts > Remove account
2550 DIALOG_REMOVE_USER = 534;
2551
2552 // OPEN: Settings > Accounts > Confirm auto sync dialog
2553 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2554
2555 // OPEN: Settings > Apps > Dialog for running service details
2556 DIALOG_RUNNIGN_SERVICE = 536;
2557
2558 // OPEN: Settings > Dialog for hiding home settings
2559 DIALOG_NO_HOME = 537;
2560
2561 // OPEN: Settings > Bluetooth > Rename this device
2562 DIALOG_BLUETOOTH_RENAME = 538;
2563
2564 // OPEN: Settings > Bluetooth > Paired device profile
2565 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2566
2567 // OPEN: Settings > Battery optimization > details for app
2568 DIALOG_HIGH_POWER_DETAILS = 540;
2569
2570 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2571 DIALOG_KEYBOARD_LAYOUT = 541;
2572
2573 // OPEN: Settings > Wifi > WPS Setup dialog
2574 DIALOG_WPS_SETUP = 542;
2575
2576 // OPEN: Settings > WIFI Scan permission dialog
2577 DIALOG_WIFI_SCAN_MODE = 543;
2578
2579 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2580 DIALOG_WIFI_SKIP = 544;
2581
2582 // OPEN: Settings > Wireless > VPN > Config dialog
2583 DIALOG_LEGACY_VPN_CONFIG = 545;
2584
2585 // OPEN: Settings > Wireless > VPN > Config dialog for app
2586 DIALOG_VPN_APP_CONFIG = 546;
2587
2588 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2589 DIALOG_VPN_CANNOT_CONNECT = 547;
2590
2591 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2592 DIALOG_VPN_REPLACE_EXISTING = 548;
2593
2594 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2595 DIALOG_BILLING_CYCLE = 549;
2596
2597 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2598 DIALOG_BILLING_BYTE_LIMIT = 550;
2599
2600 // OPEN: Settings > Billing cycle > turn on data limit dialog
2601 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2602
2603 // OPEN: Settings > Service > Turn off notification access dialog
2604 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2605
2606 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2607 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2608
2609 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2610 DIALOG_ZEN_ACCESS_GRANT = 554;
2611
2612 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2613 DIALOG_ZEN_ACCESS_REVOKE = 555;
2614
2615 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2616 DIALOG_ZEN_TIMEPICKER = 556;
2617
2618 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2619 DIALOG_SERVICE_ACCESS_WARNING = 557;
2620
2621 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2622 DIALOG_APP_INFO_ACTION = 558;
2623
2624 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2625 DIALOG_VOLUME_FORGET = 559;
2626
2627 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2628 DIALOG_VOLUME_SLOW_WARNING = 560;
2629
2630 // OPEN: Settings > Storage > Dialog for initializing a volume
2631 DIALOG_VOLUME_INIT = 561;
2632
2633 // OPEN: Settings > Storage > Dialog for unmounting a volume
2634 DIALOG_VOLUME_UNMOUNT = 562;
2635
2636 // OPEN: Settings > Storage > Dialog for renaming a volume
2637 DIALOG_VOLUME_RENAME = 563;
2638
2639 // OPEN: Settings > Storage > Dialog for clear cache
2640 DIALOG_STORAGE_CLEAR_CACHE = 564;
2641
2642 // OPEN: Settings > Storage > Dialog for system info
2643 DIALOG_STORAGE_SYSTEM_INFO = 565;
2644
2645 // OPEN: Settings > Storage > Dialog for other info
2646 DIALOG_STORAGE_OTHER_INFO = 566;
2647
2648 // OPEN: Settings > Storage > Dialog for user info
2649 DIALOG_STORAGE_USER_INFO = 567;
2650
2651 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2652 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2653
2654 // OPEN: Settings > Add fingerprint > Error dialog
2655 DIALOG_FINGERPINT_ERROR = 569;
2656
2657 // OPEN: Settings > Fingerprint > Rename or delete dialog
2658 DIALOG_FINGERPINT_EDIT = 570;
2659
2660 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2661 DIALOG_FINGERPINT_DELETE_LAST = 571;
2662
2663 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2664 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2665
2666 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2667 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2668
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002669 // OPEN: Settings > Proxy Selector error dialog
2670 DIALOG_PROXY_SELECTOR_ERROR = 574;
2671
2672 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2673 DIALOG_WIFI_P2P_DISCONNECT = 575;
2674
2675 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2676 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2677
2678 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2679 DIALOG_WIFI_P2P_RENAME = 577;
2680
2681 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2682 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2683
2684 // OPEN: Settings > APN > Restore default dialog
2685 DIALOG_APN_RESTORE_DEFAULT = 579;
2686
2687 // OPEN: Settings > Dream > When to dream dialog
2688 DIALOG_DREAM_START_DELAY = 580;
2689
2690 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2691 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2692
2693 // OPEN: Settings > Tether > AP setting dialog
2694 DIALOG_AP_SETTINGS = 582;
2695
2696 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2697 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2698
2699 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2700 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2701
2702 // OPEN: Settings > Account > Remove account dialog
2703 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2704
2705 // OPEN: Settings > Account > Remove account failed dialog
2706 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2707
2708 // OPEN: Settings > Account > Cannot do onetime sync dialog
2709 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2710
2711 // OPEN: Settings > Display > Night light > Set start time dialog
2712 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2713
2714 // OPEN: Settings > Display > Night light > Set end time dialog
2715 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2716
2717 // OPEN: Settings > User > Edit info dialog
2718 DIALOG_USER_EDIT = 590;
2719
2720 // OPEN: Settings > User > Confirm remove dialog
2721 DIALOG_USER_REMOVE = 591;
2722
2723 // OPEN: Settings > User > Enable calling dialog
2724 DIALOG_USER_ENABLE_CALLING = 592;
2725
2726 // OPEN: Settings > User > Enable calling and sms dialog
2727 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2728
2729 // OPEN: Settings > User > Cannot manage device message dialog
2730 DIALOG_USER_CANNOT_MANAGE = 594;
2731
2732 // OPEN: Settings > User > Add user dialog
2733 DIALOG_USER_ADD = 595;
2734
2735 // OPEN: Settings > User > Setup user dialog
2736 DIALOG_USER_SETUP = 596;
2737
2738 // OPEN: Settings > User > Setup profile dialog
2739 DIALOG_USER_SETUP_PROFILE = 597;
2740
2741 // OPEN: Settings > User > Choose user type dialog
2742 DIALOG_USER_CHOOSE_TYPE = 598;
2743
2744 // OPEN: Settings > User > Need lockscreen dialog
2745 DIALOG_USER_NEED_LOCKSCREEN = 599;
2746
2747 // OPEN: Settings > User > Confirm exit guest mode dialog
2748 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2749
2750 // OPEN: Settings > User > Edit user profile dialog
2751 DIALOG_USER_EDIT_PROFILE = 601;
2752
2753 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2754 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2755
2756 // OPEN: Settings > Wifi > Edit AP dialog
2757 DIALOG_WIFI_AP_EDIT = 603;
2758
2759 // OPEN: Settings > Wifi > PBC Config dialog
2760 DIALOG_WIFI_PBC = 604;
2761
2762 // OPEN: Settings > Wifi > Display pin dialog
2763 DIALOG_WIFI_PIN = 605;
2764
2765 // OPEN: Settings > Wifi > Write config to NFC dialog
2766 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002767 // OPEN: Settings > Date > Date picker dialog
2768 DIALOG_DATE_PICKER = 607;
2769
2770 // OPEN: Settings > Date > Time picker dialog
2771 DIALOG_TIME_PICKER = 608;
2772
2773 // OPEN: Settings > Wireless > Manage wireless plan dialog
2774 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002775
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002776 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002777 PROVISIONING_NETWORK_TYPE = 610;
2778
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002779 // ACTION: Logs action which triggered provisioning.
2780 PROVISIONING_ACTION = 611;
2781
Mahaver Chopraab282072016-10-06 19:19:23 +01002782 // ACTION: Logs extra passed by the dpc while provisioning.
2783 PROVISIONING_EXTRA = 612;
2784
Salvador Martinez64867c12016-10-14 15:25:09 -07002785 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2786 BLUETOOTH_DIALOG_FRAGMENT = 613;
2787
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002788 // ACTION: Logs provisioning started by zero touch.
2789 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2790
2791 // ACTION: Logs provisioning started by NFC bump.
2792 PROVISIONING_ENTRY_POINT_NFC = 615;
2793
2794 // ACTION: Logs provisioning started using QR code.
2795 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2796
2797 // ACTION: Logs provisioning started using adb.
2798 PROVISIONING_ENTRY_POINT_ADB = 617;
2799
2800 // ACTION: Logs provisioning started by trusted source.
2801 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2802
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002803 // ACTION: Logged when copy account task finishes.
2804 // TIME: Indicates time taken by copy account task to finish in MS.
2805 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2806
2807 // ACTION: Logged when create profile task finishes.
2808 // TIME: Indicates time taken by create profile task to finish in MS.
2809 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2810
2811 // ACTION: Logged when start profile task finishes.
2812 // TIME: Indicates time taken by start profile task to finish in MS.
2813 PROVISIONING_START_PROFILE_TASK_MS = 621;
2814
2815 // ACTION: Logged when download package task finishes.
2816 // TIME: Indicates time taken by download package task to finish in MS.
2817 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2818
2819 // ACTION: Logged when install package task finishes.
2820 // TIME: Indicates time taken by install package task to finish in MS.
2821 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2822
2823 // ACTION: User cancelled provisioning.
2824 PROVISIONING_CANCELLED = 624;
2825
2826 // ACTION: Logged when provisioning throws an error.
2827 PROVISIONING_ERROR = 625;
2828
2829 // ACTION: Logs the status of copying user account during provisioning.
2830 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2831
2832 // ACTION: Logs the end to end time taken by all provisioning tasks.
2833 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2834
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002835 // OPEN: Settings > Privacy
2836 // CATEGORY: SETTINGS
2837 // OS: O
2838 ENTERPRISE_PRIVACY_SETTINGS = 628;
2839
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002840 // ACTION: Longpress on a TextView.
2841 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2842 // CATEGORY: TEXT_CONTROLS
2843 // OS: O
2844 TEXT_LONGPRESS = 629;
2845
Chris Wren3824c392017-11-27 12:54:14 -05002846 // ACTION: An app requested an unknown permission
2847 // PACKAGE: The package name of the app requesting the permission
2848 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002849 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2850
Chris Wren3824c392017-11-27 12:54:14 -05002851 // ACTION: An app was granted an unknown permission
2852 // PACKAGE: The package name of the app that was granted the permission
2853 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002854 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2855
Chris Wren3824c392017-11-27 12:54:14 -05002856 // ACTION: An app requested an unknown permission and the request was denied
2857 // PACKAGE: The package name of the app requesting the permission
2858 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002859 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2860
Chris Wren3824c392017-11-27 12:54:14 -05002861 // ACTION: An unknown permission was revoked for an app
2862 // PACKAGE: The package name of the app the permission was revoked for
2863 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002864 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2865
Chris Wren3824c392017-11-27 12:54:14 -05002866 // ACTION: An app requested the permission READ_CALENDAR
2867 // PACKAGE: The package name of the app requesting the permission
2868 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002869 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2870
Chris Wren3824c392017-11-27 12:54:14 -05002871 // ACTION: An app was granted the permission READ_CALENDAR
2872 // PACKAGE: The package name of the app that was granted the permission
2873 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002874 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2875
Chris Wren3824c392017-11-27 12:54:14 -05002876 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2877 // PACKAGE: The package name of the app requesting the permission
2878 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002879 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2880
Chris Wren3824c392017-11-27 12:54:14 -05002881 // ACTION: The permission READ_CALENDAR was revoked for an app
2882 // PACKAGE: The package name of the app the permission was revoked for
2883 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002884 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2885
Chris Wren3824c392017-11-27 12:54:14 -05002886 // ACTION: An app requested the permission WRITE_CALENDAR
2887 // PACKAGE: The package name of the app requesting the permission
2888 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002889 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2890
Chris Wren3824c392017-11-27 12:54:14 -05002891 // ACTION: An app was granted the permission WRITE_CALENDAR
2892 // PACKAGE: The package name of the app that was granted the permission
2893 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002894 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2895
Chris Wren3824c392017-11-27 12:54:14 -05002896 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2897 // PACKAGE: The package name of the app requesting the permission
2898 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002899 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2900
Chris Wren3824c392017-11-27 12:54:14 -05002901 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2902 // PACKAGE: The package name of the app the permission was revoked for
2903 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002904 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2905
Chris Wren3824c392017-11-27 12:54:14 -05002906 // ACTION: An app requested the permission CAMERA
2907 // PACKAGE: The package name of the app requesting the permission
2908 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002909 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2910
Chris Wren3824c392017-11-27 12:54:14 -05002911 // ACTION: An app was granted the permission CAMERA
2912 // PACKAGE: The package name of the app that was granted the permission
2913 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002914 ACTION_PERMISSION_GRANT_CAMERA = 643;
2915
Chris Wren3824c392017-11-27 12:54:14 -05002916 // ACTION: An app requested the permission CAMERA and the request was denied
2917 // PACKAGE: The package name of the app requesting the permission
2918 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002919 ACTION_PERMISSION_DENIED_CAMERA = 644;
2920
Chris Wren3824c392017-11-27 12:54:14 -05002921 // ACTION: The permission CAMERA was revoked for an app
2922 // PACKAGE: The package name of the app the permission was revoked for
2923 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002924 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2925
Chris Wren3824c392017-11-27 12:54:14 -05002926 // ACTION: An app requested the permission READ_CONTACTS
2927 // PACKAGE: The package name of the app requesting the permission
2928 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002929 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2930
Chris Wren3824c392017-11-27 12:54:14 -05002931 // ACTION: An app was granted the permission READ_CONTACTS
2932 // PACKAGE: The package name of the app that was granted the permission
2933 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002934 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2935
Chris Wren3824c392017-11-27 12:54:14 -05002936 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2937 // PACKAGE: The package name of the app requesting the permission
2938 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002939 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2940
Chris Wren3824c392017-11-27 12:54:14 -05002941 // ACTION: The permission READ_CONTACTS was revoked for an app
2942 // PACKAGE: The package name of the app the permission was revoked for
2943 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002944 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2945
Chris Wren3824c392017-11-27 12:54:14 -05002946 // ACTION: An app requested the permission WRITE_CONTACTS
2947 // PACKAGE: The package name of the app requesting the permission
2948 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002949 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2950
Chris Wren3824c392017-11-27 12:54:14 -05002951 // ACTION: An app was granted the permission WRITE_CONTACTS
2952 // PACKAGE: The package name of the app that was granted the permission
2953 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002954 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2955
Chris Wren3824c392017-11-27 12:54:14 -05002956 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2957 // PACKAGE: The package name of the app requesting the permission
2958 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002959 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2960
Chris Wren3824c392017-11-27 12:54:14 -05002961 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2962 // PACKAGE: The package name of the app the permission was revoked for
2963 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002964 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2965
Chris Wren3824c392017-11-27 12:54:14 -05002966 // ACTION: An app requested the permission GET_ACCOUNTS
2967 // PACKAGE: The package name of the app requesting the permission
2968 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002969 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2970
Chris Wren3824c392017-11-27 12:54:14 -05002971 // ACTION: An app was granted the permission GET_ACCOUNTS
2972 // PACKAGE: The package name of the app that was granted the permission
2973 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002974 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2975
Chris Wren3824c392017-11-27 12:54:14 -05002976 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2977 // PACKAGE: The package name of the app requesting the permission
2978 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002979 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2980
Chris Wren3824c392017-11-27 12:54:14 -05002981 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2982 // PACKAGE: The package name of the app the permission was revoked for
2983 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002984 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2985
Chris Wren3824c392017-11-27 12:54:14 -05002986 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2987 // PACKAGE: The package name of the app requesting the permission
2988 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002989 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2990
Chris Wren3824c392017-11-27 12:54:14 -05002991 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2992 // PACKAGE: The package name of the app that was granted the permission
2993 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002994 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2995
Chris Wren3824c392017-11-27 12:54:14 -05002996 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2997 // PACKAGE: The package name of the app requesting the permission
2998 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002999 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
3000
Chris Wren3824c392017-11-27 12:54:14 -05003001 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3002 // PACKAGE: The package name of the app the permission was revoked for
3003 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003004 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3005
Chris Wren3824c392017-11-27 12:54:14 -05003006 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3007 // PACKAGE: The package name of the app requesting the permission
3008 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003009 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3010
Chris Wren3824c392017-11-27 12:54:14 -05003011 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3012 // PACKAGE: The package name of the app that was granted the permission
3013 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003014 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3015
Chris Wren3824c392017-11-27 12:54:14 -05003016 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3017 // PACKAGE: The package name of the app requesting the permission
3018 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003019 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3020
Chris Wren3824c392017-11-27 12:54:14 -05003021 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3022 // PACKAGE: The package name of the app the permission was revoked for
3023 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003024 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3025
Chris Wren3824c392017-11-27 12:54:14 -05003026 // ACTION: An app requested the permission RECORD_AUDIO
3027 // PACKAGE: The package name of the app requesting the permission
3028 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003029 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3030
Chris Wren3824c392017-11-27 12:54:14 -05003031 // ACTION: An app was granted the permission RECORD_AUDIO
3032 // PACKAGE: The package name of the app that was granted the permission
3033 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003034 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3035
Chris Wren3824c392017-11-27 12:54:14 -05003036 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3037 // PACKAGE: The package name of the app requesting the permission
3038 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003039 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3040
Chris Wren3824c392017-11-27 12:54:14 -05003041 // ACTION: The permission RECORD_AUDIO was revoked for an app
3042 // PACKAGE: The package name of the app the permission was revoked for
3043 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003044 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3045
Chris Wren3824c392017-11-27 12:54:14 -05003046 // ACTION: An app requested the permission READ_PHONE_STATE
3047 // PACKAGE: The package name of the app requesting the permission
3048 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003049 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3050
Chris Wren3824c392017-11-27 12:54:14 -05003051 // ACTION: An app was granted the permission READ_PHONE_STATE
3052 // PACKAGE: The package name of the app that was granted the permission
3053 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003054 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3055
Chris Wren3824c392017-11-27 12:54:14 -05003056 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3057 // PACKAGE: The package name of the app requesting the permission
3058 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003059 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3060
Chris Wren3824c392017-11-27 12:54:14 -05003061 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3062 // PACKAGE: The package name of the app the permission was revoked for
3063 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003064 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3065
Chris Wren3824c392017-11-27 12:54:14 -05003066 // ACTION: An app requested the permission CALL_PHONE
3067 // PACKAGE: The package name of the app requesting the permission
3068 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003069 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3070
Chris Wren3824c392017-11-27 12:54:14 -05003071 // ACTION: An app was granted the permission CALL_PHONE
3072 // PACKAGE: The package name of the app that was granted the permission
3073 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003074 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3075
Chris Wren3824c392017-11-27 12:54:14 -05003076 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3077 // PACKAGE: The package name of the app requesting the permission
3078 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003079 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3080
Chris Wren3824c392017-11-27 12:54:14 -05003081 // ACTION: The permission CALL_PHONE was revoked for an app
3082 // PACKAGE: The package name of the app the permission was revoked for
3083 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003084 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3085
Chris Wren3824c392017-11-27 12:54:14 -05003086 // ACTION: An app requested the permission READ_CALL_LOG
3087 // PACKAGE: The package name of the app requesting the permission
3088 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003089 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3090
Chris Wren3824c392017-11-27 12:54:14 -05003091 // ACTION: An app was granted the permission READ_CALL_LOG
3092 // PACKAGE: The package name of the app that was granted the permission
3093 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003094 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3095
Chris Wren3824c392017-11-27 12:54:14 -05003096 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3097 // PACKAGE: The package name of the app requesting the permission
3098 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003099 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3100
Chris Wren3824c392017-11-27 12:54:14 -05003101 // ACTION: The permission READ_CALL_LOG was revoked for an app
3102 // PACKAGE: The package name of the app the permission was revoked for
3103 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003104 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3105
Chris Wren3824c392017-11-27 12:54:14 -05003106 // ACTION: An app requested the permission WRITE_CALL_LOG
3107 // PACKAGE: The package name of the app requesting the permission
3108 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003109 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3110
Chris Wren3824c392017-11-27 12:54:14 -05003111 // ACTION: An app was granted the permission WRITE_CALL_LOG
3112 // PACKAGE: The package name of the app that was granted the permission
3113 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003114 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3115
Chris Wren3824c392017-11-27 12:54:14 -05003116 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3117 // PACKAGE: The package name of the app requesting the permission
3118 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003119 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3120
Chris Wren3824c392017-11-27 12:54:14 -05003121 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3122 // PACKAGE: The package name of the app the permission was revoked for
3123 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003124 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3125
Chris Wren3824c392017-11-27 12:54:14 -05003126 // ACTION: An app requested the permission ADD_VOICEMAIL
3127 // PACKAGE: The package name of the app requesting the permission
3128 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003129 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3130
Chris Wren3824c392017-11-27 12:54:14 -05003131 // ACTION: An app was granted the permission ADD_VOICEMAIL
3132 // PACKAGE: The package name of the app that was granted the permission
3133 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003134 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3135
Chris Wren3824c392017-11-27 12:54:14 -05003136 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3137 // PACKAGE: The package name of the app requesting the permission
3138 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003139 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3140
Chris Wren3824c392017-11-27 12:54:14 -05003141 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3142 // PACKAGE: The package name of the app the permission was revoked for
3143 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003144 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3145
Chris Wren3824c392017-11-27 12:54:14 -05003146 // ACTION: An app requested the permission USE_SIP
3147 // PACKAGE: The package name of the app requesting the permission
3148 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003149 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3150
Chris Wren3824c392017-11-27 12:54:14 -05003151 // ACTION: An app was granted the permission USE_SIP
3152 // PACKAGE: The package name of the app that was granted the permission
3153 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003154 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3155
Chris Wren3824c392017-11-27 12:54:14 -05003156 // ACTION: An app requested the permission USE_SIP and the request was denied
3157 // PACKAGE: The package name of the app requesting the permission
3158 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003159 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3160
Chris Wren3824c392017-11-27 12:54:14 -05003161 // ACTION: The permission USE_SIP was revoked for an app
3162 // PACKAGE: The package name of the app the permission was revoked for
3163 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003164 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3165
Chris Wren3824c392017-11-27 12:54:14 -05003166 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3167 // PACKAGE: The package name of the app requesting the permission
3168 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003169 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3170
Chris Wren3824c392017-11-27 12:54:14 -05003171 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3172 // PACKAGE: The package name of the app that was granted the permission
3173 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003174 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3175
Chris Wren3824c392017-11-27 12:54:14 -05003176 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3177 // PACKAGE: The package name of the app requesting the permission
3178 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003179 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3180
Chris Wren3824c392017-11-27 12:54:14 -05003181 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3182 // PACKAGE: The package name of the app the permission was revoked for
3183 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003184 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3185
Chris Wren3824c392017-11-27 12:54:14 -05003186 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3187 // PACKAGE: The package name of the app requesting the permission
3188 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003189 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3190
Chris Wren3824c392017-11-27 12:54:14 -05003191 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3192 // PACKAGE: The package name of the app that was granted the permission
3193 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003194 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3195
Chris Wren3824c392017-11-27 12:54:14 -05003196 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3197 // PACKAGE: The package name of the app requesting the permission
3198 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003199 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3200
Chris Wren3824c392017-11-27 12:54:14 -05003201 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3202 // PACKAGE: The package name of the app the permission was revoked for
3203 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003204 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3205
Chris Wren3824c392017-11-27 12:54:14 -05003206 // ACTION: An app requested the permission BODY_SENSORS
3207 // PACKAGE: The package name of the app requesting the permission
3208 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003209 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3210
Chris Wren3824c392017-11-27 12:54:14 -05003211 // ACTION: An app was granted the permission BODY_SENSORS
3212 // PACKAGE: The package name of the app that was granted the permission
3213 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003214 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3215
Chris Wren3824c392017-11-27 12:54:14 -05003216 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3217 // PACKAGE: The package name of the app requesting the permission
3218 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003219 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3220
Chris Wren3824c392017-11-27 12:54:14 -05003221 // ACTION: The permission BODY_SENSORS was revoked for an app
3222 // PACKAGE: The package name of the app the permission was revoked for
3223 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003224 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3225
Chris Wren3824c392017-11-27 12:54:14 -05003226 // ACTION: An app requested the permission SEND_SMS
3227 // PACKAGE: The package name of the app requesting the permission
3228 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003229 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3230
Chris Wren3824c392017-11-27 12:54:14 -05003231 // ACTION: An app was granted the permission SEND_SMS
3232 // PACKAGE: The package name of the app that was granted the permission
3233 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003234 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3235
Chris Wren3824c392017-11-27 12:54:14 -05003236 // ACTION: An app requested the permission SEND_SMS and the request was denied
3237 // PACKAGE: The package name of the app requesting the permission
3238 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003239 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3240
Chris Wren3824c392017-11-27 12:54:14 -05003241 // ACTION: The permission SEND_SMS was revoked for an app
3242 // PACKAGE: The package name of the app the permission was revoked for
3243 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003244 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3245
Chris Wren3824c392017-11-27 12:54:14 -05003246 // ACTION: An app requested the permission RECEIVE_SMS
3247 // PACKAGE: The package name of the app requesting the permission
3248 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003249 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3250
Chris Wren3824c392017-11-27 12:54:14 -05003251 // ACTION: An app was granted the permission RECEIVE_SMS
3252 // PACKAGE: The package name of the app that was granted the permission
3253 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003254 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3255
Chris Wren3824c392017-11-27 12:54:14 -05003256 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3257 // PACKAGE: The package name of the app requesting the permission
3258 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003259 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3260
Chris Wren3824c392017-11-27 12:54:14 -05003261 // ACTION: The permission RECEIVE_SMS was revoked for an app
3262 // PACKAGE: The package name of the app the permission was revoked for
3263 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003264 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3265
Chris Wren3824c392017-11-27 12:54:14 -05003266 // ACTION: An app requested the permission READ_SMS
3267 // PACKAGE: The package name of the app requesting the permission
3268 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003269 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3270
Chris Wren3824c392017-11-27 12:54:14 -05003271 // ACTION: An app was granted the permission READ_SMS
3272 // PACKAGE: The package name of the app that was granted the permission
3273 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003274 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3275
Chris Wren3824c392017-11-27 12:54:14 -05003276 // ACTION: An app requested the permission READ_SMS and the request was denied
3277 // PACKAGE: The package name of the app requesting the permission
3278 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003279 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3280
Chris Wren3824c392017-11-27 12:54:14 -05003281 // ACTION: The permission READ_SMS was revoked for an app
3282 // PACKAGE: The package name of the app the permission was revoked for
3283 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003284 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3285
Chris Wren3824c392017-11-27 12:54:14 -05003286 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3287 // PACKAGE: The package name of the app requesting the permission
3288 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003289 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3290
Chris Wren3824c392017-11-27 12:54:14 -05003291 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3292 // PACKAGE: The package name of the app that was granted the permission
3293 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003294 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3295
Chris Wren3824c392017-11-27 12:54:14 -05003296 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3297 // PACKAGE: The package name of the app requesting the permission
3298 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003299 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3300
Chris Wren3824c392017-11-27 12:54:14 -05003301 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3302 // PACKAGE: The package name of the app the permission was revoked for
3303 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003304 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3305
Chris Wren3824c392017-11-27 12:54:14 -05003306 // ACTION: An app requested the permission RECEIVE_MMS
3307 // PACKAGE: The package name of the app requesting the permission
3308 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003309 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3310
Chris Wren3824c392017-11-27 12:54:14 -05003311 // ACTION: An app was granted the permission RECEIVE_MMS
3312 // PACKAGE: The package name of the app that was granted the permission
3313 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003314 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3315
Chris Wren3824c392017-11-27 12:54:14 -05003316 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3317 // PACKAGE: The package name of the app requesting the permission
3318 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003319 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3320
Chris Wren3824c392017-11-27 12:54:14 -05003321 // ACTION: The permission RECEIVE_MMS was revoked for an app
3322 // PACKAGE: The package name of the app the permission was revoked for
3323 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003324 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3325
Chris Wren3824c392017-11-27 12:54:14 -05003326 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3327 // PACKAGE: The package name of the app requesting the permission
3328 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003329 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3330
Chris Wren3824c392017-11-27 12:54:14 -05003331 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3332 // PACKAGE: The package name of the app that was granted the permission
3333 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003334 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3335
Chris Wren3824c392017-11-27 12:54:14 -05003336 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3337 // PACKAGE: The package name of the app requesting the permission
3338 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003339 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3340
Chris Wren3824c392017-11-27 12:54:14 -05003341 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3342 // PACKAGE: The package name of the app the permission was revoked for
3343 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003344 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3345
Chris Wren3824c392017-11-27 12:54:14 -05003346 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3347 // PACKAGE: The package name of the app requesting the permission
3348 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003349 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3350
Chris Wren3824c392017-11-27 12:54:14 -05003351 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3352 // PACKAGE: The package name of the app that was granted the permission
3353 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003354 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3355
Chris Wren3824c392017-11-27 12:54:14 -05003356 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3357 // PACKAGE: The package name of the app requesting the permission
3358 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003359 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3360
Chris Wren3824c392017-11-27 12:54:14 -05003361 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3362 // PACKAGE: The package name of the app the permission was revoked for
3363 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003364 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3365
Mahaverfa6566e2016-11-29 21:08:14 +00003366 // ACTION: Logged when a provisioning session has started
3367 PROVISIONING_SESSION_STARTED = 734;
3368
3369 // ACTION: Logged when a provisioning session has completed
3370 PROVISIONING_SESSION_COMPLETED = 735;
3371
Chris Wren3824c392017-11-27 12:54:14 -05003372 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3373 // PACKAGE: The package name of the app requesting the permission
3374 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003375 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003376
Chris Wren3824c392017-11-27 12:54:14 -05003377 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3378 // PACKAGE: The package name of the app that was granted the permission
3379 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003380 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003381
Chris Wren3824c392017-11-27 12:54:14 -05003382 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3383 // PACKAGE: The package name of the app requesting the permission
3384 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003385 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003386
Chris Wren3824c392017-11-27 12:54:14 -05003387 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3388 // PACKAGE: The package name of the app the permission was revoked for
3389 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003390 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003391
Santos Cordon3107d292016-09-20 15:50:35 -07003392 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3393 // SUBTYPE: slider value
3394 // CATEGORY: QUICK_SETTINGS
3395 // OS: 6.0
3396 ACTION_BRIGHTNESS_FOR_VR = 498;
3397
Hugo Benichie1cbf152016-12-08 09:36:52 +09003398 // ACTION: A captive portal was detected during network validation
3399 // CATEGORY: NOTIFICATION
3400 // OS: N-MR2
3401 NOTIFICATION_NETWORK_SIGN_IN = 740;
3402
3403 // ACTION: An unvalidated network without Internet was selected by the user
3404 // CATEGORY: NOTIFICATION
3405 // OS: N-MR2
3406 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3407
3408 // ACTION: A validated network failed revalidation and lost Internet access
3409 // CATEGORY: NOTIFICATION
3410 // OS: N-MR2
3411 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3412
3413 // ACTION: The system default network switched to a different network
3414 // CATEGORY: NOTIFICATION
3415 // OS: N-MR2
3416 NOTIFICATION_NETWORK_SWITCH = 743;
3417
Fan Zhang074c4cb2016-12-21 12:10:33 -08003418 // OPEN: Settings > System
3419 SETTINGS_SYSTEM_CATEGORY = 744;
3420
3421 // OPEN: Settings > Storage
3422 SETTINGS_STORAGE_CATEGORY = 745;
3423
3424 // OPEN: Settings > Network & Internet
3425 SETTINGS_NETWORK_CATEGORY = 746;
3426
3427 // OPEN: Settings > Connected Device
3428 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3429
3430 // OPEN: Settings > App & Notification
3431 SETTINGS_APP_NOTIF_CATEGORY = 748;
3432
3433 // OPEN: Settings > System > Input & Gesture
3434 SETTINGS_INPUT_CATEGORY = 749;
3435
3436 // OPEN: Settings > System > Language & Region
3437 SETTINGS_LANGUAGE_CATEGORY = 750;
3438
3439 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3440 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3441
3442 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3443 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3444
3445 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3446 SETTINGS_GESTURE_PICKUP = 753;
3447
3448 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3449 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3450
3451 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3452 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3453
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003454 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3455 // CATEGORY: Settings
3456 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3457
Alison Cichowlas803054d2016-12-13 14:38:01 -05003458 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003459 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003460 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3461 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3462 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003463
Salvador Martinezc43ab062016-12-21 11:09:11 -08003464 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3465 // user accepted
3466 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003467
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003468 // Enclosing category for group of APP_TRANSITION_FOO events,
3469 // logged when we execute an app transition.
3470 APP_TRANSITION = 761;
3471
Fan Zhang945deea2017-01-11 16:37:49 -08003472 // ACTION: User leaves Settings search UI without entering any query.
3473 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3474
3475 // ACTION: Clicking on any search result in Settings.
3476 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003477
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003478 // ACTION: Allow Battery optimization for an app
3479 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3480
3481 // ACTION: Deny Battery optimization for an app
3482 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3483
3484 // ACTION: Enable Device Admin app
3485 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3486
3487 // ACTION: Disable Device Admin app
3488 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3489
3490 // ACTION: Allow "Do Not Disturb access" for an app
3491 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3492
3493 // ACTION: Deny "Do Not Disturb access" for an app
3494 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3495
3496 // ACTION: Allow "Draw over other apps" for an app
3497 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3498
Christine Franks47175c32017-03-14 10:21:25 -07003499 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003500 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3501
3502 // ACTION: Allow "VR helper services" for an app
3503 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3504
3505 // ACTION: Deny "VR helper services" for an app
3506 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3507
3508 // ACTION: Allow "Modify system settings" for an app
3509 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3510
3511 // ACTION: Deny "Modify system settings" for an app
3512 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3513
3514 // ACTION: Allow "Notification access" for an app
3515 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3516
3517 // ACTION: Deny "Notification access" for an app
3518 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3519
3520 // ACTION: "Premium SMS access" for an app - "ask user" option
3521 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3522
3523 // ACTION: "Premium SMS access" for an app - "never allow" option
3524 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3525
3526 // ACTION: "Premium SMS access" for an app - "always allow" option
3527 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3528
3529 // ACTION: Allow "Unrestricted data access" for an app
3530 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3531
3532 // ACTION: Deny "Unrestricted data access" for an app
3533 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3534
3535 // ACTION: Allow "Usage access" for an app
3536 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3537
3538 // ACTION: Deny "Usage access" for an app
3539 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3540
Fan Zhangad5dacc2017-01-18 14:18:54 -08003541 // OPEN: Settings > Apps > Default Apps > Default browser
3542 DEFAULT_BROWSER_PICKER = 785;
3543
3544 // OPEN: Settings > Apps > Default Apps > Default emergency app
3545 DEFAULT_EMERGENCY_APP_PICKER = 786;
3546
3547 // OPEN: Settings > Apps > Default Apps > Default home
3548 DEFAULT_HOME_PICKER = 787;
3549
3550 // OPEN: Settings > Apps > Default Apps > Default phone
3551 DEFAULT_PHONE_PICKER = 788;
3552
3553 // OPEN: Settings > Apps > Default Apps > Default sms
3554 DEFAULT_SMS_PICKER = 789;
3555
3556 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3557 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3558
3559 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3560 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3561
Jason Long1b51da62017-01-24 11:35:31 -08003562 // OPEN: Settings > Apps > Default Apps > Default autofill app
3563 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003564
Chris Wren26ca65d2016-11-29 10:43:28 -05003565 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003566 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003567 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3568 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3569 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3570 NOTIFICATION_ID = 796;
3571 NOTIFICATION_TAG = 797;
3572 NOTIFICATION_SHADE_INDEX = 798;
3573 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003574
Anas Karbilaf7648f42016-12-11 00:55:02 +01003575 // OPEN: QS NFC tile shown
3576 // ACTION: QS NFC tile tapped
3577 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003578 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003579
Chris Wren26ca65d2016-11-29 10:43:28 -05003580 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003581 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003582 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3583 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3584 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3585 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3586 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3587 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3588
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003589 // ACTION: "Force stop" action on an app
3590 ACTION_APP_FORCE_STOP = 807;
3591
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003592 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3593 // CATEGORY: SETTINGS
3594 // OS: 8.0
3595 MANAGE_EXTERNAL_SOURCES = 808;
3596
Mahaver6cd47162017-01-23 09:59:33 +00003597 // ACTION: Logged when terms activity finishes.
3598 // TIME: Indicates time taken by terms activity to finish in MS.
3599 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3600
3601 // Indicates number of terms displayed on the terms screen.
3602 PROVISIONING_TERMS_COUNT = 810;
3603
3604 // Indicates number of terms read on the terms screen.
3605 PROVISIONING_TERMS_READ = 811;
3606
Winson Chung59fda9e2017-01-20 16:14:51 -08003607 // Logs that the user has edited the picture-in-picture settings.
3608 // CATEGORY: SETTINGS
3609 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3610
Winson Chungf4ac0632017-03-17 12:34:12 -07003611 // ACTION: Allow "Enable picture-in-picture" for an app
3612 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003613
Winson Chungf4ac0632017-03-17 12:34:12 -07003614 // ACTION: Deny "Enable picture-in-picture" for an app
3615 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003616
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003617 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3618 // CATEGORY: SETTINGS
3619 // OS: 8.0
3620 TTS_SLIDERS = 815;
3621
Jason Monk524fb402017-01-25 10:33:31 -05003622 // ACTION: Settings -> Display -> Theme
3623 ACTION_THEME = 816;
3624
chchaob8e253a2017-01-25 12:12:09 -08003625 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3626 // ACTION: Select to Speak configuration is chosen
3627 // SUBTYPE: 0 is off, 1 is on
3628 // CATEGORY: SETTINGS
3629 // OS: N
3630 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3631
Anton Philippov95a553e2017-01-27 00:08:24 +00003632 // OPEN: Settings > System > Backup
3633 // CATEGORY: SETTINGS
3634 // OS: O
3635 BACKUP_SETTINGS = 818;
3636
Winson Chung14fbe142016-12-19 16:18:24 -08003637 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003638 // VALUE: true if it was entered while hiding as a result of moving to
3639 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003640 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3641
3642 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3643 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3644 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3645
3646 // ACTION: The activity currently in picture-in-picture was minimized
3647 // VALUE: True if the PiP was minimized, false otherwise
3648 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3649
3650 // ACTION: Picture-in-picture was dismissed via the dismiss button
3651 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3652 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3653
3654 // ACTION: The visibility of the picture-in-picture meny
3655 // VALUE: Whether or not the menu is visible
3656 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3657
3658 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3659 // logged when the aspect ratio changes
3660 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3661
3662 // The current aspect ratio of the PiP, logged when it changes.
3663 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3664
Chris Wren27a52fa2017-02-01 14:21:43 -05003665 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3666 // CATEGORY: GLOBAL_SYSTEM_UI
3667 // OS: O
3668 FIELD_GESTURE_LENGTH = 826;
3669
3670 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3671 // CATEGORY: GLOBAL_SYSTEM_UI
3672 // OS: O
3673 FIELD_GESTURE_VELOCITY = 827;
3674
Christine Franks27fde392017-02-07 10:21:55 -08003675 // OPEN: Carrier demo mode password dialog
3676 CARRIER_DEMO_MODE_PASSWORD = 828;
3677
Fan Zhang70967f32017-02-13 16:02:24 -08003678 // ACTION: Create a Settings shortcut item.
3679 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3680
3681 // ACTION: A tile in Settings information architecture is clicked
3682 ACTION_SETTINGS_TILE_CLICK = 830;
3683
Julia Reynolds520df6e2017-02-13 09:05:10 -05003684 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3685 // updated
3686 // CATEGORY: NOTIFICATION
3687 // OS: O
3688 NOTIFICATION_SNOOZED = 831;
3689
3690 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3691 // OS: O
3692 NOTIFICATION_SNOOZED_CRITERIA = 832;
3693
Fan Zhang65899432017-02-14 13:36:53 -08003694 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003695 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003696 FIELD_CONTEXT = 833;
3697
Fan Zhangd95dcb42017-02-14 13:48:09 -08003698 // ACTION: Settings advanced button is expanded
3699 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3700
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003701 // ACTION: Logs the number of times the saved network evaluator was used to
3702 // recommend a wifi network
3703 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3704
3705 // ACTION: Logs the number of times the recommended network evaluator was
3706 // used to recommend a wifi network
3707 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3708
3709 // ACTION: Logs the number of times a recommended network was resulted in a
3710 // successful connection
3711 // VALUE: true if the connection was successful, false if the connection failed
3712 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3713
Daniel Nishic581bfc2017-02-08 10:18:19 -08003714 // OPEN: Settings > Storage > Games
3715 // CATEGORY: SETTINGS
3716 // OS: O
3717 APPLICATIONS_STORAGE_GAMES = 838;
3718
3719 // OPEN: Settings > Storage > Audio and Music
3720 // CATEGORY: SETTINGS
3721 // OS: O
3722 APPLICATIONS_STORAGE_MUSIC = 839;
3723
3724 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3725 // CATEGORY: SETTINGS
3726 // OS: O
3727 STORAGE_FREE_UP_SPACE_NOW = 840;
3728
3729 // ACTION: Settings > Storage > Files to open the File Manager
3730 // CATEGORY: SETTINGS
3731 // OS: O
3732 STORAGE_FILES = 841;
3733
Fan Zhangb1d49222017-02-15 17:12:58 -08003734 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003735 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003736
Fan Zhang7f2cace2017-02-17 12:05:48 -08003737 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3738 DEFAULT_ASSIST_PICKER = 843;
3739
3740 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3741 DEFAULT_VOICE_INPUT_PICKER = 844;
3742
Daniel Nishi4058a842017-02-21 17:11:35 -08003743 // OPEN: Settings > Storage > [Profile]
3744 SETTINGS_STORAGE_PROFILE = 845;
3745
Doris Lingedb84c32017-02-23 10:56:01 -08003746 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3747 // CATEGORY: SETTINGS
3748 // OS: O
3749 ENCRYPTION_AND_CREDENTIAL = 846;
3750
Fan Zhangb66e5422017-02-24 14:37:45 -08003751 // ACTION: Settings > About device > Build number
3752 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3753
3754 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3755 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3756
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003757 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3758 // CATEGORY: SETTINGS
3759 // OS: O
3760 WIFI_NETWORK_DETAILS = 849;
3761
jackqdyuleia2a14342017-02-28 16:20:48 -08003762 // ACTION: Settings > Battery > Menu > Usage Alerts
3763 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3764
3765 // ACTION: Settings > Battery > Menu > Optimization
3766 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3767
3768 // ACTION: Settings > Battery > Menu > Apps Toggle
3769 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3770
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003771 // ACTION: Settings > Any preference is changed
3772 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3773
3774 // FIELD: The name of preference when it is changed in Settings
3775 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3776
3777 // FIELD: The new value of preference when it is changed in Settings
3778 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3779
Julia Reynoldsd373d782017-03-03 13:32:57 -05003780 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3781 // channel updated
3782 // PACKAGE: the package the channel belongs too
3783 // CATEGORY: NOTIFICATION
3784 // OS: O
3785 ACTION_NOTIFICATION_CHANNEL = 856;
3786
3787 // Tagged data for notification channel. String.
3788 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3789
3790 // Tagged data for notification channel. int.
3791 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3792
3793 // OPEN: Notification channel group created.
3794 // PACKAGE: the package the group belongs to
3795 // CATEGORY: NOTIFICATION
3796 // OS: O
3797 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3798
3799 // Tagged data for notification channel group. String.
3800 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3801
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003802 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3803 // CATEGORY: SETTINGS
3804 // OS: O
3805 SETTINGS_NETWORK_SCORER = 861;
3806
Fan Zhang99861312017-03-07 14:32:38 -08003807 // OPEN: Settings > About device > Model > Hardware info dialog
3808 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3809
mariagpuyol0f5512e2017-03-01 12:09:56 -08003810 // ACTION: Checks whether a contact's phone still exists
3811 // Value 0: It doesn't exist anymore
3812 // Value 1: It still exists
3813 // Value 2: A SecurityException was thrown
3814 // CATEGORY: SETTINGS
3815 // OS: N
3816 ACTION_PHONE_EXISTS = 863;
3817
3818 // ACTION: Retrieves a contact from CP2
3819 // Value 0: Contact retrieved without issues
3820 // Value 1: An IllegalArgumentException was thrown
3821 // CATEGORY: SETTINGS
3822 // OS: N
3823 ACTION_GET_CONTACT = 864;
3824
Chris Wren4d6b54d2017-04-27 16:56:54 -04003825 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003826 // internal platform metrics use.
3827 RESERVED_FOR_LOGBUILDER_PID = 865;
3828
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003829 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3830 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3831
3832 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3833 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3834
3835 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3836 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3837
3838 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3839 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3840
3841 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3842 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3843
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003844 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003845 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003846
Fan Zhang082d21c2017-03-13 15:25:54 -07003847 // ACTION: Settings > App detail > Uninstall
3848 ACTION_SETTINGS_UNINSTALL_APP = 872;
3849
3850 // ACTION: Settings > App detail > Uninstall Device admin app
3851 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3852
3853 // ACTION: Settings > App detail > Disable app
3854 ACTION_SETTINGS_DISABLE_APP = 874;
3855
3856 // ACTION: Settings > App detail > Enable app
3857 ACTION_SETTINGS_ENABLE_APP = 875;
3858
3859 // ACTION: Settings > App detail > Clear data
3860 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3861
3862 // ACTION: Settings > App detail > Clear cache
3863 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3864
3865 // ACTION: Clicking on any search result in Settings.
3866 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3867
3868 // FIELD: Settings inline search result name
3869 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3870
3871 // FIELD: Settings inline search result value
3872 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3873
Fan Zhang53797932017-03-13 17:46:24 -07003874 // ACTION: Settings > Search > Click saved queries
3875 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3876
Doris Lingbf8d9de2017-03-15 11:52:50 -07003877 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3878 // CATEGORY: SETTINGS
3879 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3880
Chris Wren3824c392017-11-27 12:54:14 -05003881 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3882 // PACKAGE: The package name of the app requesting the permission
3883 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003884 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3885
Chris Wren3824c392017-11-27 12:54:14 -05003886 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3887 // PACKAGE: The package name of the app that was granted the permission
3888 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003889 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3890
Chris Wren3824c392017-11-27 12:54:14 -05003891 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3892 // PACKAGE: The package name of the app requesting the permission
3893 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003894 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3895
Chris Wren3824c392017-11-27 12:54:14 -05003896 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3897 // PACKAGE: The package name of the app the permission was revoked for
3898 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003899 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3900
Chris Wren3824c392017-11-27 12:54:14 -05003901 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3902 // PACKAGE: The package name of the app requesting the permission
3903 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003904 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3905
Chris Wren3824c392017-11-27 12:54:14 -05003906 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3907 // PACKAGE: The package name of the app that was granted the permission
3908 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003909 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3910
Chris Wren3824c392017-11-27 12:54:14 -05003911 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3912 // PACKAGE: The package name of the app requesting the permission
3913 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003914 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3915
Chris Wren3824c392017-11-27 12:54:14 -05003916 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3917 // PACKAGE: The package name of the app the permission was revoked for
3918 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003919 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3920
Chris Wren3824c392017-11-27 12:54:14 -05003921 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3922 // PACKAGE: The package name of the app requesting the permission
3923 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003924 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3925
Chris Wren3824c392017-11-27 12:54:14 -05003926 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3927 // PACKAGE: The package name of the app that was granted the permission
3928 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003929 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3930
Chris Wren3824c392017-11-27 12:54:14 -05003931 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3932 // PACKAGE: The package name of the app requesting the permission
3933 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003934 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3935
Chris Wren3824c392017-11-27 12:54:14 -05003936 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3937 // PACKAGE: The package name of the app the permission was revoked for
3938 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003939 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3940
Chris Wren3824c392017-11-27 12:54:14 -05003941 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3942 // PACKAGE: The package name of the app requesting the permission
3943 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003944 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3945
Chris Wren3824c392017-11-27 12:54:14 -05003946 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3947 // PACKAGE: The package name of the app that was granted the permission
3948 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003949 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3950
Chris Wren3824c392017-11-27 12:54:14 -05003951 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3952 // PACKAGE: The package name of the app requesting the permission
3953 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003954 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3955
Chris Wren3824c392017-11-27 12:54:14 -05003956 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3957 // PACKAGE: The package name of the app the permission was revoked for
3958 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003959 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3960
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003961 // ACTION: Phase 1 of instant application resolution occurred
3962 // OS: O
3963 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3964
3965 // ACTION: Phase 2 of instant application resolution occurred
3966 // OS: O
3967 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3968
3969 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3970 // OS: O
3971 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3972
3973 // FIELD: The status of an ephemeral resolution phase
3974 // Value 0: success
3975 // Value 1: no full hash match
3976 // OS: O
3977 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3978
3979 // FIELD - A token to identify all events that are part of the same instant application launch
3980 // OS: O
3981 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3982
3983 // FIELD - The name of the package responsible for launching the activity
3984 // OS: O
3985 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3986
3987 // FIELD - Whether or not the launched activity is part of an instant application
3988 // OS: O
3989 APP_TRANSITION_IS_EPHEMERAL = 905;
3990
Felipe Leme21fb1a32018-05-21 11:18:46 -07003991 // An autofill session was started.
3992 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003993 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003994 // NOTE: starting on OS MR1, it also added the following field:
3995 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3996 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07003997 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07003998 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
3999 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
4000 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004001 AUTOFILL_SESSION_STARTED = 906;
4002
4003 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004004 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4005 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004006 // Package: Package of app that is autofilled
4007 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004008 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004009 // the service returned a null response
4010 // NOTE: starting on OS P, it also added the following fields:
4011 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004012 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004013 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4014 // with 1.
4015 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4016 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4017 // was focused.
4018 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004019 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004020 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004021 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004022 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4023 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4024 // - AUTOFILL_UI_LATENCY
4025 // - AUTOFILL_AUTHENTICATED;
4026 // - AUTOFILL_DATASET_AUTHENTICATED
4027 // - AUTOFILL_INVALID_AUTHENTICATION
4028 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004029 AUTOFILL_REQUEST = 907;
4030
4031 // Tag of a field for a package of an autofill service
4032 FIELD_AUTOFILL_SERVICE = 908;
4033
4034 // Tag of a field for the number of datasets
4035 FIELD_AUTOFILL_NUM_DATASETS = 909;
4036
4037 // An autofill dataset selection UI was shown
4038 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4039 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4040 // Type TYPE_ACTION: dataset was selected
4041 // Type TYPE_DETAIL: authentication was selected
4042 // Package: Package of app that was autofilled
4043 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4044 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004045 // NOTE: starting on OS P, it also added the following fields:
4046 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004047 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004048 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004049 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004050 AUTOFILL_FILL_UI = 910;
4051
4052 // Tag of a field for the length of the filter text
4053 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4054
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004055 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004056 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004057 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004058 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004059 AUTOFILL_AUTHENTICATED = 912;
4060
4061 // An activity was autofilled and all values could be applied
4062 // Package: Package of app that is autofilled
4063 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4064 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004065 // NOTE: starting on OS P, it also added the following fields:
4066 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004067 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004068 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004069 AUTOFILL_DATASET_APPLIED = 913;
4070
4071 // Tag of a field for the number values to be filled in
4072 FIELD_AUTOFILL_NUM_VALUES = 914;
4073
4074 // Tag of a field for the number of views that were filled
4075 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4076
4077 // An autofill save UI was shown
4078 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4079 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4080 // Type TYPE_ACTION: data was saved
4081 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004082 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004083 // NOTE: starting on OS P, it also added the following fields:
4084 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004085 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004086 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004087 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004088 // NOTE: starting on OS Q, it also added the following fields:
4089 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004090 AUTOFILL_SAVE_UI = 916;
4091
4092 // Tag of a field for the number of saveable ids
4093 FIELD_AUTOFILL_NUM_IDS = 917;
4094
Felipe Leme21fb1a32018-05-21 11:18:46 -07004095 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004096 // Type TYPE_SUCCESS: The request succeeded right away
4097 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004098 // Type TYPE_FAILURE: The request failed
4099 // Package: Package of app that was autofilled
4100 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004101 // NOTE: starting on OS P, it also added the following fields:
4102 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004103 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004104 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004105 AUTOFILL_DATA_SAVE_REQUEST = 918;
4106
4107 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004108 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004109 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004110 // NOTE: starting on OS P, it also added the following fields:
4111 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004112 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004113 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4114 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4115 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004116 AUTOFILL_SESSION_FINISHED = 919;
4117
Chris Wren148805582017-03-17 17:18:11 -04004118 // meta-event: a reader has checkpointed the log here.
4119 METRICS_CHECKPOINT = 920;
4120
Fan Zhanged1845f2017-03-23 14:46:59 -07004121 // OPEN: Settings -> Display -> When in VR Mode
4122 VR_DISPLAY_PREFERENCE = 921;
4123
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004124 // OPEN: Settings > Accessibility > Magnification
4125 // CATEGORY: SETTINGS
4126 // OS: O
4127 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004128
4129 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4130 // app.
4131 // VALUE: The package name of the app
4132 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4133
Fan Zhang1a34e752017-03-24 13:44:51 -07004134 // OPEN: Settings -> System -> Reset options
4135 RESET_DASHBOARD = 924;
4136
Jason Monk8c09ac72017-03-16 11:53:40 -04004137 // ACTION: QS -> Tile clicked
4138 ACTION_QS_CLICK = 925;
4139
4140 // ACTION: QS -> Secondary click
4141 ACTION_QS_SECONDARY_CLICK = 926;
4142
4143 // FIELD: Position info in QS clicks
4144 FIELD_QS_POSITION = 927;
4145
4146 // FIELD: The value of a QS tile when clicked (if applicable)
4147 FIELD_QS_VALUE = 928;
4148
4149 // ACTION: QS -> Detail panel -> more settings
4150 ACTION_QS_MORE_SETTINGS = 929;
4151
4152 // ACTION: QS -> Click date
4153 ACTION_QS_DATE = 930;
4154
Jason Monk1b775652017-03-31 15:42:27 -04004155 // ACTION: Event on nav button
4156 ACTION_NAV_BUTTON_EVENT = 931;
4157
4158 // FIELD: Flags for a nav button event
4159 FIELD_FLAGS = 932;
4160
4161 // FIELD: Action for a nav button event
4162 FIELD_NAV_ACTION = 933;
4163
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004164 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4165 // CATEGORY: SETTINGS
4166 // OS: O
4167 FINGERPRINT_REMOVE_SIDECAR = 934;
4168
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004169 // OPEN: Settings > Storage > Movies & TV
4170 // CATEGORY: SETTINGS
4171 // OS: O
4172 APPLICATIONS_STORAGE_MOVIES = 935;
4173
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004174 // OPEN: Text selection "assist" menu item shown.
4175 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4176 // CATEGORY: TEXT_CONTROLS
4177 // OS: O
4178 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4179
4180 // ACTION: Text selection "assist" menu item clicked.
4181 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4182 // CATEGORY: TEXT_CONTROLS
4183 // OS: O
4184 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4185
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004186 // OPEN: Settings > Security > Managed Device Info > Apps installed
4187 // CATEGORY: SETTINGS
4188 // OS: O
4189 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4190
4191 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4192 // CATEGORY: SETTINGS
4193 // OS: O
4194 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4195
4196 // OPEN: Settings > Security > Managed Device Info > Default apps
4197 // CATEGORY: SETTINGS
4198 // OS: O
4199 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4200
Julia Reynolds80b18072017-04-23 12:27:07 -04004201 // OPEN: Settings > Notifications > An app > A channel > Importance
4202 // CATEGORY: SETTINGS
4203 // OS: O
4204 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4205
4206 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4207 // CATEGORY: SETTINGS
4208 // OS: O
4209 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4210
Chris Wren4d6b54d2017-04-27 16:56:54 -04004211 // This value should never appear in log outputs - it is reserved for
4212 // internal platform metrics use.
4213 RESERVED_FOR_LOGBUILDER_UID = 943;
4214
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004215 // OPEN: Running background apps notification > List of background apps
4216 // CATEGORY: GLOBAL_SYSTEM_UI
4217 // OS: O
4218 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4219
Jorim Jaggi515dd682017-05-05 15:05:07 +02004220 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4221 // client.
4222 // OS: O
4223 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4224
Chris Wrenb3921792017-06-01 13:34:46 -04004225 // FIELD - The group ID of a notification.
4226 // Type: string
4227 // OS: O
4228 FIELD_NOTIFICATION_GROUP_ID = 946;
4229
4230 // FIELD - If the notification is a group summary: 1.
4231 // Type: int encoded boolean
4232 // OS: O
4233 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4234
Felipe Leme637e05e2017-12-06 12:09:37 -08004235 // An app attempted to forge a different component name in the AssisStructure that would be
4236 // passed to the autofill service.
4237 // OS: O (security patch)
4238 // Package: Real package of the app being autofilled
4239 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4240 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004241 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004242 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004243 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4244
4245 // FIELD - The component that an app tried tro forged.
4246 // Type: string
4247 // OS: O (security patch)
4248 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4249
Chris Wren26ca65d2016-11-29 10:43:28 -05004250 // ---- End O Constants, all O constants go above this line ----
4251
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004252 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4253 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4254
jackqdyulei92e492e2017-04-28 13:04:42 -07004255 // OPEN: Settings > Battery > High Usage > Abnormal app page
4256 // CATEGORY: SETTINGS
4257 FUELGAUGE_ANOMALY_DETAIL = 987;
4258
4259 // OPEN: Settings > Battery > High Usage
4260 DIALOG_HANDLE_ANOMALY = 988;
4261
Jonathan Solnita4138162017-05-10 21:06:04 -07004262 // ACTION: Camera lift gesture
4263 // CATEGORY: GLOBAL_SYSTEM_UI
4264 // OS: O
4265 ACTION_CAMERA_LIFT_TRIGGER = 989;
4266
Maurice Lam76ae09c2017-05-05 12:03:49 -07004267 // OPEN: Choose screen lock dialog in Settings
4268 // CATEGORY: SETTINGS
4269 // OS: O DR
4270 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4271
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004272 // OPEN: Assist Gesture training intro in Settings
4273 // CATEGORY: SETTINGS
4274 // OS: O DR
4275 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4276
4277 // OPEN: Assist Gesture training enrolling in Settings
4278 // CATEGORY: SETTINGS
4279 // OS: O DR
4280 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4281
4282 // OPEN: Assist Gesture training finished in Settings
4283 // CATEGORY: SETTINGS
4284 // OS: O DR
4285 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4286
Fan Zhangc666a202017-05-18 17:50:20 -07004287 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4288 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4289
4290 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4291 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4292
Philip Quinn0f9566d2017-05-23 10:32:08 -07004293 // OPEN: Settings > System > Languages & input > Assist gesture
4294 // CATEGORY: SETTINGS
4295 // OS: O DR
4296 SETTINGS_ASSIST_GESTURE = 996;
4297
4298 // ACTION: Assist gesture released without triggering
4299 // CATEGORY: GLOBAL_SYSTEM_UI
4300 // OS: O DR
4301 ASSIST_GESTURE_RELEASED = 997;
4302
4303 // ACTION: Assist gesture primed
4304 // CATEGORY: GLOBAL_SYSTEM_UI
4305 // OS: O DR
4306 ASSIST_GESTURE_PRIMED = 998;
4307
4308 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004309 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004310 // CATEGORY: GLOBAL_SYSTEM_UI
4311 // OS: O DR
4312 ASSIST_GESTURE_TRIGGERED = 999;
4313
Fan Zhang238162b2017-05-25 14:01:41 -07004314 // ACTION: Update default app from Settings
4315 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4316
4317 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004318 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004319
4320 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004321 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004322
Adrian Roos1c81d772017-05-25 18:00:21 -07004323 // OPEN: Settings > Display > Ambient Display
4324 // CATEGORY: SETTINGS
4325 // OS: O DR
4326 AMBIENT_DISPLAY_SETTINGS = 1003;
4327
Hugo Benichi11da42b2017-05-31 11:11:37 +09004328 // ACTION: CaptivePortalLoginActivity starts
4329 // CATEGORY: GLOBAL_SYSTEM_UI
4330 // OS: O DR
4331 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4332
4333 // ACTION: CaptivePortalLoginActivity auto-closes
4334 // CATEGORY: GLOBAL_SYSTEM_UI
4335 // OS: O DR
4336 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4337
4338 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4339 // CATEGORY: GLOBAL_SYSTEM_UI
4340 // OS: O DR
4341 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4342
4343 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4344 // CATEGORY: GLOBAL_SYSTEM_UI
4345 // OS: O DR
4346 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4347
4348 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4349 // CATEGORY: SETTINGS
4350 // OS: O DR
4351 ACTION_WIFI_SIGNIN = 1008;
4352
Antony Sargentf3cc3172017-05-04 14:58:06 -07004353 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4354 // CATEGORY: SETTINGS
4355 // OS: O DR
4356 BLUETOOTH_DEVICE_DETAILS = 1009;
4357
fanzhang172255759d2017-06-05 21:43:47 -07004358 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4359 CONFIGURE_KEYGUARD_DIALOG = 1010;
4360
Fan Zhange33c70d2017-06-06 12:37:13 -07004361 // Open: Settings > Search > No Result View
4362 SETTINGS_SEARCH_NO_RESULT = 1011;
4363
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004364 // OPEN: Assist Gesture before training
4365 // CATEGORY: SETTINGS
4366 // OS: O DR
4367 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4368
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004369 // CaptivePortalLoginActivity displays SSL error page
4370 // CATEGORY: GLOBAL_SYSTEM_UI
4371 // OS: O DR
4372 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4373
Fan Zhang1a0fc992017-06-13 13:45:21 -07004374 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4375 WIFI_TETHER_SETTINGS = 1014;
4376
Antony Sargentc3b5da62017-06-16 11:50:13 -07004377 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4378 // -> Edit name button.
4379 // CATEGORY: SETTINGS
4380 // OS: O DR
4381 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4382
Fan Zhang543587d2017-06-19 12:32:14 -07004383 // ACTION: Settings > Notification Settings > Open application notification
4384 // CATEGORY: SETTINGS
4385 // OS: O DR
4386 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4387
4388 // ACTION: Settings > App Info > Open app settings
4389 // CATEGORY: SETTINGS
4390 // OS: O DR
4391 ACTION_OPEN_APP_SETTING = 1017;
4392
jackqdyulei2f1a3592017-06-19 13:11:05 -07004393 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4394 // CATEGORY: SETTINGS
4395 // OS: O DR
4396 BLUETOOTH_PAIRING = 1018;
4397
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004398 // ACTION: Collect PSD Signals
4399 // CATEGORY: SETTINGS
4400 // OS: O DR
4401 ACTION_PSD_LOADER = 1019;
4402
jackqdyulei602bcc92017-06-21 15:17:53 -07004403 // ACTION: Background check action on an app
4404 // CATEGORY: SETTINGS
4405 // OS: O DR
4406 ACTION_APP_BACKGROUND_CHECK = 1020;
4407
4408 // ACTION: Location check action on an app
4409 // CATEGORY: SETTINGS
4410 // OS: O DR
4411 ACTION_APP_LOCATION_CHECK = 1021;
4412
Charlie Wang15a36ed2017-06-14 14:46:39 -07004413 // Device headset status
4414 // CATEGORY: OTHER
4415 // SUBTYPE: 1 is DON, 2 is DOFF
4416 // OS: O DR
4417 ACTION_HEADSET_STATUS = 1022;
4418
4419 // Device Headset Plug status
4420 // CATEGORY: OTHER
4421 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4422 // OS: O DR
4423 ACTION_HEADSET_PLUG = 1023;
4424
4425 // Device Headset battery level on Plug
4426 // CATEGORY: OTHER
4427 // FIELD - The battery percentage when the user decided to plug in
4428 // Type: integer
4429 // OS: O DR
4430 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4431
Charlie Wang566ec702017-06-26 15:30:03 -07004432 // Device Headset battery level on Plug
4433 // CATEGORY: OTHER
4434 // FIELD - The battery percentage when the user decided to plug in
4435 // Type: integer
4436 // OS: O DR
4437 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4438
Charlie Wang15a36ed2017-06-14 14:46:39 -07004439 // Device Headset Pose status
4440 // CATEGORY: OTHER
4441 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4442 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004443 ACTION_HEADSET_POSE_STATUS = 1026;
4444
4445 // Device Headset Usage session time
4446 // CATEGORY: OTHER
4447 // FIELD - The time the headset was used in a session
4448 // OS: O DR
4449 FIELD_SESSION_TIME_MS = 1027;
4450
4451 // Device Headset Idle time
4452 // CATEGORY: OTHER
4453 // FIELD - The time in between each session
4454 // OS: O DR
4455 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4456
4457 // Device Headset charge session time
4458 // CATEGORY: OTHER
4459 // FIELD - The time taken for each charge
4460 // OS: O DR
4461 FIELD_TIME_OF_CHARGE_MS = 1029;
4462
4463 // Device Headset time between charge
4464 // CATEGORY: OTHER
4465 // FIELD - The time in between each charge
4466 // OS: O DR
4467 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004468
Antony Sargentca701a22017-07-05 17:02:00 -07004469 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4470 // -> Forget button.
4471 // CATEGORY: SETTINGS
4472 // OS: O DR
4473 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4474
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004475 // An event from the camera service
4476 // CATEGORY: OTHER
4477 // SUBTYPE: CameraEvent
4478 // OS: O DR
4479 ACTION_CAMERA_EVENT = 1032;
4480
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004481 // OPEN: Settings > Trampoline Intent > Settings page
4482 // CATEGORY: SETTINGS
4483 // OS: O DR
4484 TRAMPOLINE_SETTINGS_EVENT = 1033;
4485
Chris Wren9a4f2662017-06-29 10:10:02 -04004486 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4487
Malcolm Chen21062542017-06-20 11:36:01 -07004488 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4489 // CATEGORY: SETTINGS
4490 // OS: O MR
4491 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4492
4493 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4494 // CATEGORY: SETTINGS
4495 // OS: O MR
4496 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4497
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004498 // FIELD - State of asynchronous ranking when Settings search result is clicked
4499 // CATEGORY: SETTINGS
4500 // OS: O MR
4501 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4502
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004503 // ACTION: Settings > Connected devices > SMS Mirroring
4504 // CATEGORY: SETTINGS
4505 // OS: O MR
4506 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4507
Kang Li2c571892017-07-05 14:47:32 -07004508 // ACTION: Chooser picked a ranked target.
4509 // CATEGORY: GLOBAL_SYSTEM_UI
4510 // OS: O MR
4511 ACTION_TARGET_SELECTED = 1085;
4512
4513 // FIELD - is category used in Chooser: 1.
4514 // Type: int encoded boolean
4515 // CATEGORY: GLOBAL_SYSTEM_UI
4516 // OS: O MR
4517 FIELD_IS_CATEGORY_USED = 1086;
4518
4519 // FIELD - ranked position of selected target for Chooser.
4520 // CATEGORY: GLOBAL_SYSTEM_UI
4521 // OS: O MR
4522 FIELD_RANKED_POSITION = 1087;
4523
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004524 // OPEN: Settings > Data plan usage
4525 // CATEGORY: SETTINGS
4526 // OS: O MR
4527 DATA_PLAN_USAGE_SUMMARY = 1088;
4528
Doris Lingce007eb2017-08-09 13:59:46 -07004529 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4530 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4531
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004532 // ACTION: Logged when the app has notified that it has fully drawn. See
4533 // Activity.reportFullyDrawn().
4534 APP_TRANSITION_REPORTED_DRAWN = 1090;
4535
4536 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4537 // the app transition.
4538 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4539
Daniel Nishia86115f2017-08-23 10:27:08 -07004540 // OPEN: Settings > Storage > Photos & Videos
4541 // CATEGORY: SETTINGS
4542 // OS: O MR
4543 APPLICATIONS_STORAGE_PHOTOS = 1092;
4544
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004545 // ACTION: Logged when the status bar icons change.
4546 // OS: O MR
4547 STATUS_BAR_ICONS_CHANGED = 1093;
4548
4549 // FIELD: Bitfield indicating which icons are shown.
4550 // OS: O MR
4551 FIELD_STATUS_ICONS = 1094;
4552
4553 // FIELD: Number of status icons currently shown.
4554 // OS: O MR
4555 FIELD_NUM_STATUS_ICONS = 1095;
4556
Jack He4b605792017-09-01 11:48:30 -07004557 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4558 // CATEGORY: SETTINGS
4559 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004560 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004561
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004562 // FIELD - Whether smart suggestion ranking was enabled or not
4563 // Type: int encoded boolean
4564 // CATEGORY: SETTINGS
4565 // OS: O MR
4566 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4567
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004568 // ACTION: The device boots
4569 ACTION_BOOT = 1098;
4570
4571 // FIELD: A string value representing some state of the platform, e.g., boot reason
4572 FIELD_PLATFORM_REASON = 1099;
4573
Jan Althaus786a39d2017-09-15 10:41:16 +02004574 // CATEGORY: The category for all actions relating to selection session logging.
4575 // OS: O MR
4576 TEXT_SELECTION_SESSION = 1100;
4577
4578 // ACTION: A selection session started (i.e. the selection handles appeared)
4579 // CATEGORY: TEXT_SELECTION_SESSION
4580 // OS: O MR
4581 ACTION_TEXT_SELECTION_START = 1101;
4582
4583 // ACTION: The user modified the selection (e.g. by dragging the handles)
4584 // CATEGORY: TEXT_SELECTION_SESSION
4585 // OS: O MR
4586 ACTION_TEXT_SELECTION_MODIFY = 1102;
4587
4588 // ACTION: The user modified the selection by pressing the "select all" button.
4589 // CATEGORY: TEXT_SELECTION_SESSION
4590 // OS: O MR
4591 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4592
4593 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4594 // CATEGORY: TEXT_SELECTION_SESSION
4595 // OS: O MR
4596 ACTION_TEXT_SELECTION_RESET = 1104;
4597
4598 // ACTION: Smart selection made a single word prediction
4599 // CATEGORY: TEXT_SELECTION_SESSION
4600 // OS: O MR
4601 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4602
4603 // ACTION: Smart selection made a multi word prediction
4604 // CATEGORY: TEXT_SELECTION_SESSION
4605 // OS: O MR
4606 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4607
4608 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4609 // CATEGORY: TEXT_SELECTION_SESSION
4610 // OS: O MR
4611 ACTION_TEXT_SELECTION_AUTO = 1107;
4612
4613 // ACTION: A selection session ended with the user typing over the text
4614 // CATEGORY: TEXT_SELECTION_SESSION
4615 // OS: O MR
4616 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4617
4618 // ACTION: A selection session ended with the user copying the text
4619 // CATEGORY: TEXT_SELECTION_SESSION
4620 // OS: O MR
4621 ACTION_TEXT_SELECTION_COPY = 1109;
4622
4623 // ACTION: A selection session ended with the user pasting over the text
4624 // CATEGORY: TEXT_SELECTION_SESSION
4625 // OS: O MR
4626 ACTION_TEXT_SELECTION_PASTE = 1110;
4627
4628 // ACTION: A selection session ended with the user cutting the text
4629 // CATEGORY: TEXT_SELECTION_SESSION
4630 // OS: O MR
4631 ACTION_TEXT_SELECTION_CUT = 1111;
4632
4633 // ACTION: A selection session ended with the user pressing the share button
4634 // CATEGORY: TEXT_SELECTION_SESSION
4635 // OS: O MR
4636 ACTION_TEXT_SELECTION_SHARE = 1112;
4637
4638 // ACTION: A selection session ended with the user pressing the smart share button
4639 // CATEGORY: TEXT_SELECTION_SESSION
4640 // OS: O MR
4641 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4642
4643 // ACTION: A selection session ended with the user dragging the text
4644 // CATEGORY: TEXT_SELECTION_SESSION
4645 // OS: O MR
4646 ACTION_TEXT_SELECTION_DRAG = 1114;
4647
4648 // ACTION: A selection session ended with the user abandoning the selection
4649 // CATEGORY: TEXT_SELECTION_SESSION
4650 // OS: O MR
4651 ACTION_TEXT_SELECTION_ABANDON = 1115;
4652
4653 // ACTION: A selection session ended with the user picking an unhandled action bar item
4654 // CATEGORY: TEXT_SELECTION_SESSION
4655 // OS: O MR
4656 ACTION_TEXT_SELECTION_OTHER = 1116;
4657
4658 // FIELD: Time in milliseconds from the start of the session to this event
4659 // CATEGORY: TEXT_SELECTION_SESSION
4660 // OS: O MR
4661 FIELD_SELECTION_SINCE_START = 1117;
4662
4663 // FIELD: time in milliseconds between the last event in the session and this one
4664 // CATEGORY: TEXT_SELECTION_SESSION
4665 // OS: O MR
4666 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4667
4668 // FIELD: a random uid for a selection session (lasting from select start to end)
4669 // CATEGORY: TEXT_SELECTION_SESSION
4670 // OS: O MR
4671 FIELD_SELECTION_SESSION_ID = 1119;
4672
4673 // FIELD: the sequence number of the event in the session
4674 // CATEGORY: TEXT_SELECTION_SESSION
4675 // OS: O MR
4676 FIELD_SELECTION_SESSION_INDEX = 1120;
4677
4678 // FIELD: a concatenation of the widget type and ML model version.
4679 // CATEGORY: TEXT_SELECTION_SESSION
4680 // OS: O MR
4681 FIELD_SELECTION_VERSION_TAG = 1121;
4682
4683 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4684 // packed 16bit integers. (start in MSBs, end in LSBs)
4685 // CATEGORY: TEXT_SELECTION_SESSION
4686 // OS: O MR
4687 FIELD_SELECTION_RANGE = 1122;
4688
4689 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4690 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4691 // CATEGORY: TEXT_SELECTION_SESSION
4692 // OS: O MR
4693 FIELD_SELECTION_SMART_RANGE = 1123;
4694
Felipe Lemeb22d6352017-09-08 20:03:53 -07004695 // The value of an autofillable and savable view was reset
4696 // Package: Package of app that was autofilled
4697 // OS: O MR
4698 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4699 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004700 // NOTE: starting on OS P, it also added the following fields:
4701 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004702 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004703 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004704 AUTOFILL_VALUE_RESET = 1124;
4705
4706 // Tag of AUTOFILL_VALUE_RESET
4707 // OS: O MR
4708 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4709
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004710 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004711 // Package: Package of app that was autofilled
4712 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004713 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004714 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4715
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004716 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004717 // Package: Package of app that was autofilled
4718 // OS: O MR
4719 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004720 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004721 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4722
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004723 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004724 // Package: Package of app that was autofilled
4725 // OS: O MR
4726 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004727 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004728 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4729
Felipe Leme2c888422017-10-26 12:46:35 -07004730 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004731 // Package: Package of app that is autofilled
4732 // OS: O MR
4733 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4734 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004735 // NOTE: starting on OS P, it also added the following fields:
4736 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004737 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004738 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004739 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4740
4741 // FIELD - Type of save object passed by the service when the Save UI is shown
4742 // OS: O MR
4743 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4744
Felipe Leme2c888422017-10-26 12:46:35 -07004745 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004746 // Package: Package of app that is autofilled
4747 // OS: O MR
4748 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4749 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004750 // NOTE: starting on OS P, it also added the following fields:
4751 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004752 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004753 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004754 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4755
Felipe Leme2c888422017-10-26 12:46:35 -07004756 // 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 -07004757 // Package: Package of app that is autofilled
4758 // OS: O MR
4759 // Type TYPE_UNKNOWN: The link was not properly set by the service
4760 // Type TYPE_OPEN: The link launched an activity
4761 // Type TYPE_FAILURE: The link could not launc an activity
4762 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4763 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004764 // NOTE: starting on OS P, it also added the following fields:
4765 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004766 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004767 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004768 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4769
4770 // Result of the validation on save when an autofill service provided a validator
4771 // Package: Package of app that is autofilled
4772 // OS: O MR
4773 // Type TYPE_FAILURE: The validation could not be performed due to an error
4774 // Type TYPE_SUCCESS: The validation passed
4775 // Type TYPE_DISMISS: The validation failed
4776 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4777 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004778 // NOTE: starting on OS P, it also added the following fields:
4779 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004780 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004781 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004782 AUTOFILL_SAVE_VALIDATION = 1133;
4783
Felipe Leme2c888422017-10-26 12:46:35 -07004784 // 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 -07004785 // provided by the autofill service
4786 // Package: Package of app that is autofilled
4787 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004788 // Type TYPE_OPEN: The autofill save UI was restored
4789 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004790 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004791 // NOTE: starting on OS P, it also added the following fields:
4792 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004793 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004794 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004795 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4796
Felipe Leme9d414492017-09-20 13:55:28 -07004797 // Autofill service called API that disables itself
4798 // Package: Package of the autofill service
4799 // OS: O MR
4800 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4801
Felipe Leme21fb1a32018-05-21 11:18:46 -07004802 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004803 // Reports how long it took to show the autofill UI after a field was focused
4804 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004805 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4806 // Package: Package of the autofill service
4807 // OS: O MR
4808 AUTOFILL_UI_LATENCY = 1136;
4809
Chris Wren21a2e722017-10-02 17:44:53 -04004810 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4811 // OS: O MR
4812 NOTIFICATION_SNOOZE_CLICKED = 1137;
4813
4814 // Action: user selected a notification snooze duration from the drop down
4815 // OS: O MR
4816 NOTIFICATION_SELECT_SNOOZE = 1138;
4817
4818 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4819 // OS: O MR
4820 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4821
4822 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4823 // OS: O MR
4824 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4825
4826 // Action: user tapped undo on the notification snooze leave-behind
4827 // OS: O MR
4828 NOTIFICATION_UNDO_SNOOZE = 1141;
4829
4830 // Action: user togged the visibility of the notification snooze options drop down
4831 // OS: O MR
4832 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4833
Romain Guy62e8c172017-10-24 21:37:34 +01004834 // OPEN: Settings > Display > Colors
4835 // CATEGORY: SETTINGS
4836 // OS: O MR
4837 COLOR_MODE_SETTINGS = 1143;
4838
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004839 // Enclosing category for group of APP_TRANSITION_FOO events,
4840 // logged when we cancel an app transition.
4841 APP_TRANSITION_CANCELLED = 1144;
4842
Felipe Lemeb659adb2018-01-18 15:21:36 -08004843 // Tag of a field representing a duration on autofill-related metrics.
4844 FIELD_AUTOFILL_DURATION = 1145;
4845
Doris Lingce007eb2017-08-09 13:59:46 -07004846 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4847
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004848 // OPEN: Settings > Network & Internet > Mobile network
4849 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004850 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004851
4852 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4853 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004854 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004855
4856 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4857 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004858 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004859
4860 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4861 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004862 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004863
4864 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4865 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004866 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004867
4868 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4869 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004870 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004871
4872 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4873 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004874 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004875
4876 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4877 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004878 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004879
4880 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4881 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004882 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004883
4884 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4885 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004886 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004887
4888 // ACTION: Settings > Network & Internet > Mobile network > Network
4889 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004890 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004891
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004892 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004893 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004894
4895 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4896 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004897 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004898
4899 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4900 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004901 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004902
4903 // OPEN: Settings > Network & Internet > Mobile network > System select
4904 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004905 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004906
4907 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4908 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004909 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004910
4911 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4912 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004913 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004914
Fan Zhanga2f2c912017-08-15 17:20:37 -07004915 // OPEN: Settings > Developer Options > Experiment dashboard
4916 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004917 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004918
Julia Reynolds005c8b92017-08-24 10:35:53 -04004919 // OPEN: Settings > Notifications > [App] > Topic Notifications
4920 // CATEGORY: SETTINGS
4921 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004922 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004923
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004924 // OPEN: Settings > Developer options > Enable > Info dialog
4925 // CATEGORY: SETTINGS
4926 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004927 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004928
jeffreyhuang57359c02017-09-18 11:34:00 -07004929 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4930 // CATEGORY: SETTINGS
4931 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004932 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004933
Kevin Chyn60eea712017-09-26 16:03:05 -07004934 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4935 // CATEGORY: SETTINGS
4936 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004937 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004938
jeffreyhuang37c4b132017-09-21 14:09:20 -07004939 // OPEN: Settings > Developer options > USB debugging > Info dialog
4940 // CATEGORY: SETTINGS
4941 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004942 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004943
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004944 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4945 // CATEGORY: SETTINGS
4946 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004947 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004948
Fan Zhange5b34302017-10-09 15:58:38 -07004949 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004950 // CATEGORY: SETTINGS
4951 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004952 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4953
jeffreyhuang49de1252017-10-05 15:25:14 -07004954 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4955 // CATEGORY: SETTINGS
4956 // OS: P
4957 DIALOG_LOG_PERSIST = 1225;
4958
Beverly04216872017-09-28 10:55:32 -04004959 // ACTION: DND Settings > Priority only allows > Alarms toggle
4960 // SUBTYPE: 0 is off, 1 is on
4961 // CATEGORY: SETTINGS
4962 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004963 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004964
4965 // ACTION: DND Settings > Priority only allows > Media toggle
4966 // SUBTYPE: 0 is off, 1 is on
4967 // CATEGORY: SETTINGS
4968 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004969 ACTION_ZEN_ALLOW_MEDIA = 1227;
4970
4971 // An autofill service explicitly defined which view should commit the autofill context
4972 // Package: Package of app that is autofilled
4973 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07004974 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004975 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004976 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004977 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004978 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4979
4980 // The autofill context was commited when the user clicked a view explicitly marked by the
4981 // service as committing it
4982 // Package: Package of app that is autofilled
4983 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07004984 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004985 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004986 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004987 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004988
Malcolm Chen4f17b172017-10-19 13:54:07 -07004989 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4990 // CATEGORY: SETTINGS
4991 // OS: P
4992 WIFI_CALLING_FOR_SUB = 1230;
4993
Felipe Leme17292d12017-10-24 14:03:10 -07004994 // An autofill service asked to disable autofill for a given application.
4995 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004996 // OS: P
4997 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004998 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07004999 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005000 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005001 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5002
5003 // An autofill service asked to disable autofill for a given activity.
5004 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005005 // OS: P
5006 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5007 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005008 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005009 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005010 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005011 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5012
jackqdyuleide3b7af2017-10-24 16:32:58 -07005013 // ACTION: Stop an app and turn on background check
5014 // CATEGORY: SETTINGS
5015 // OS: P
5016 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5017
5018 // FIELD: The action type for each anomaly
5019 // CATEGORY: SETTINGS
5020 // OS: P
5021 FIELD_ANOMALY_ACTION_TYPE = 1234;
5022
5023 // OPEN: Settings -> Battery -> Wakelock anomaly
5024 // CATEGORY: SETTINGS
5025 // OS: P
5026 ANOMALY_TYPE_WAKELOCK = 1235;
5027
5028 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5029 // CATEGORY: SETTINGS
5030 // OS: P
5031 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5032
5033 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5034 // CATEGORY: SETTINGS
5035 // OS: P
5036 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5037
Fan Zhanga4a01722017-10-30 17:54:24 -07005038 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5039 // OS: P
5040 DIALOG_OEM_LOCK_INFO = 1238;
5041
jackqdyulei331fafb2017-11-01 14:01:24 -07005042 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5043 // CATEGORY: SETTINGS
5044 // OS: P
5045 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5046
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005047 // Open: Settings > System > About phone > IMEI
5048 // CATEGORY: SETTINGS
5049 // OS: P
5050 DIALOG_IMEI_INFO = 1240;
5051
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005052 // In permission action fields tagged like this reference the permission affected
5053 FIELD_PERMISSION = 1241;
5054
5055 // ACTION: An app requested a permission and we asked to user to approve the request
5056 // PACKAGE: The package name of the app requesting the permission
5057 // Tag FIELD_PERMISSION: Name of the permission requested
5058 ACTION_PERMISSION_REQUESTED = 1242;
5059
5060 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5061 // or automatically. In the second case there will not be an
5062 // ACTION_PERMISSION_REQUESTED.
5063 // PACKAGE: The package name of the app that was granted the permission
5064 // Tag FIELD_PERMISSION: Name of the permission granted
5065 ACTION_PERMISSION_GRANTED = 1243;
5066
5067 // ACTION: An app requested the a permission and the request was denied by the user or a device
5068 // policy
5069 // PACKAGE: The package name of the app requesting the permission
5070 // Tag FIELD_PERMISSION: Name of the permission denied
5071 ACTION_PERMISSION_DENIED = 1244;
5072
5073 // ACTION: A permission was revoked
5074 // PACKAGE: The package name of the app the permission was revoked for
5075 // Tag FIELD_PERMISSION: Name of the permission revoked
5076 ACTION_PERMISSION_REVOKED = 1245;
5077
jeffreyhuang594314c2017-11-01 10:26:15 -07005078 // OPEN: Settings > System > About Phone > Sim status
5079 // CATEGORY: SETTINGS
5080 // OS: P
5081 DIALOG_SIM_STATUS = 1246;
5082
jeffreyhuang3bd59782017-11-02 11:08:28 -07005083 // OPEN: Settings > System > About Phone > Android Version
5084 // CATEGORY: SETTINGS
5085 // OS: P
5086 DIALOG_FIRMWARE_VERSION = 1247;
5087
jackqdyulei8fe97542017-11-08 16:23:43 -08005088 // OPEN: Settings > Network & internet > Menu > Private DNS
5089 // CATEGORY: SETTINGS
5090 // OS: P
5091 DIALOG_PRIVATE_DNS = 1248;
5092
5093 // ACTION: A private dns mode been selected by user
5094 // CATEGORY: SETTINGS
5095 // OS: P
5096 ACTION_PRIVATE_DNS_MODE = 1249;
5097
Jan Althausae5eb832017-11-06 12:31:59 +01005098 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5099 // CATEGORY: TEXT_SELECTION_SESSION
5100 // OS: P
5101 FIELD_SELECTION_RANGE_START = 1250;
5102
5103 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5104 // CATEGORY: TEXT_SELECTION_SESSION
5105 // OS: P
5106 FIELD_SELECTION_RANGE_END = 1251;
5107
5108 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5109 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5110 // CATEGORY: TEXT_SELECTION_SESSION
5111 // OS: P
5112 FIELD_SELECTION_SMART_RANGE_START = 1252;
5113
5114 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5115 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5116 // CATEGORY: TEXT_SELECTION_SESSION
5117 // OS: P
5118 FIELD_SELECTION_SMART_RANGE_END = 1253;
5119
5120 // FIELD: the entity type of the text currently selected.
5121 // CATEGORY: TEXT_SELECTION_SESSION
5122 // OS: P
5123 FIELD_SELECTION_ENTITY_TYPE = 1254;
5124
5125 // FIELD: the type of widget the selection was made in.
5126 // CATEGORY: TEXT_SELECTION_SESSION
5127 // OS: P
5128 FIELD_SELECTION_WIDGET_TYPE = 1255;
5129
5130 // FIELD: the name of the text classifier model used.
5131 // CATEGORY: TEXT_SELECTION_SESSION
5132 // OS: P
5133 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5134
Beverly625442d2017-11-03 17:27:02 -04005135 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5136 // CATEGORY: SETTINGS
5137 // OS: P
5138 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5139
5140 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5141 // CATEGORY: SETTINGS
5142 // OS: P
5143 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5144
5145 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5146 // CATEGORY: SETTINGS
5147 // OS: P
5148 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5149
5150 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5151 // CATEGORY: SETTINGS
5152 // OS: P
5153 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5154
5155 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5156 // CATEGORY: SETTINGS
5157 // OS: P
5158 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5159
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005160 // FIELD: the version of the widget the selection was made in.
5161 // CATEGORY: TEXT_SELECTION_SESSION
5162 // OS: P
5163 FIELD_SELECTION_WIDGET_VERSION = 1262;
5164
jackqdyulei63193602017-11-27 13:46:48 -08005165 // OPEN: Settings > Battery(version 2)
5166 // CATEGORY: SETTINGS
5167 // OS: P
5168 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5169
jackqdyulei6139eab2017-11-29 14:38:32 -08005170 // OPEN: Settings > Connected devices > Connection preferences
5171 // CATEGORY: SETTINGS
5172 // OS: P
5173 CONNECTION_DEVICE_ADVANCED = 1264;
5174
Fan Zhang5235c052017-12-05 13:49:35 -08005175 // OPEN: Settings > Security > Screen lock gear icon
5176 // CATEGORY: SETTINGS
5177 // OS: P
5178 SCREEN_LOCK_SETTINGS = 1265;
5179
Beverlybf16c142017-11-27 16:21:34 -05005180 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5181 // CATEGORY: SETTINGS
5182 // OS: P
5183 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005184
Beverlybf16c142017-11-27 16:21:34 -05005185 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5186 // CATEGORY: SETTINGS
5187 // OS: P
5188 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5189
5190 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5191 // CATEGORY: SETTINGS
5192 // OS: P
5193 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5194
5195 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5196 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5197 // CATEGORY: SETTINGS
5198 // OS: P
5199 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5200
5201 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5202 // CATEGORY: SETTINGS
5203 // OS: P
5204 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5205
Felipe Leme5e047202017-12-05 16:30:06 -08005206 // Tag of a field for the number of ids in an autofill field classification request.
5207 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5208
5209 // An autofill service updated its user data
5210 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005211 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5212 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005213 // OS: P
5214 AUTOFILL_USERDATA_UPDATED = 1272;
5215
5216 // Some data entered by the user matched the field classification requested by the service.
5217 // Package: Package of app that is autofilled
5218 // Counter: number of matches found
5219 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005220 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005221 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5222 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005223 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005224 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005225 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5226
5227 // Tag used to report autofill field classification scores
5228 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5229
Jerry Zhang18be8db2017-12-15 15:24:41 -08005230 // ACTION: Usb config has been changed to charging
5231 // CATEGORY: SETTINGS
5232 // OS: P
5233 ACTION_USB_CONFIG_CHARGING = 1275;
5234
5235 // ACTION: Usb config has been changed to mtp (file transfer)
5236 // CATEGORY: SETTINGS
5237 // OS: P
5238 ACTION_USB_CONFIG_MTP = 1276;
5239
5240 // ACTION: Usb config has been changed to ptp (photo transfer)
5241 // CATEGORY: SETTINGS
5242 // OS: P
5243 ACTION_USB_CONFIG_PTP = 1277;
5244
5245 // ACTION: Usb config has been changed to rndis (usb tethering)
5246 // CATEGORY: SETTINGS
5247 // OS: P
5248 ACTION_USB_CONFIG_RNDIS = 1278;
5249
5250 // ACTION: Usb config has been changed to midi
5251 // CATEGORY: SETTINGS
5252 // OS: P
5253 ACTION_USB_CONFIG_MIDI = 1279;
5254
5255 // ACTION: Usb config has been changed to accessory
5256 // CATEGORY: SETTINGS
5257 // OS: P
5258 ACTION_USB_CONFIG_ACCESSORY = 1280;
5259
jackqdyuleie04138d2018-01-08 17:51:57 -08005260 // OPEN: Settings > Battery > Smart Battery
5261 // CATEGORY: SETTINGS
5262 // OS: P
5263 FUELGAUGE_SMART_BATTERY = 1281;
5264
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005265 // ACTION: User tapped Screenshot in the power menu.
5266 // CATEGORY: GLOBAL_SYSTEM_UI
5267 // OS: P
5268 ACTION_SCREENSHOT_POWER_MENU = 1282;
5269
Felipe Leme3e099112018-01-18 12:57:45 -08005270 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005271 // CATEGORY: SETTINGS
5272 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005273 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005274
Felipe Leme3e099112018-01-18 12:57:45 -08005275 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005276 // CATEGORY: SETTINGS
5277 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005278 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005279
jackqdyuleid9821242018-01-09 17:42:52 -08005280 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5281 // CATEGORY: SETTINGS
5282 // OS: P
5283 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5284
Beverly92c25682018-01-22 09:27:19 -05005285 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5286 // CATEGORY: SETTINGS
5287 // OS: P
5288 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5289
Mike Digmanc94759d2018-01-23 11:01:21 -08005290 // ACTION: Rotate suggestion accepted in rotation locked mode
5291 // CATEGORY: GLOBAL_SYSTEM_UI
5292 // OS: P
5293 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5294
5295 // OPEN: Rotation suggestion shown in rotation locked mode
5296 // CATEGORY: GLOBAL_SYSTEM_UI
5297 // OS: P
5298 ROTATION_SUGGESTION_SHOWN = 1288;
5299
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005300 // An autofill service was bound using an unofficial(but still supported) permission.
5301 // Package: Package of the autofill service
5302 // OS: P
5303 AUTOFILL_INVALID_PERMISSION = 1289;
5304
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005305 // OPEN: QS Alarm tile shown
5306 // ACTION: QS Alarm tile tapped
5307 // SUBTYPE: 0 is off, 1 is on
5308 // CATEGORY: QUICK_SETTINGS
5309 // OS: P
5310 QS_ALARM = 1290;
5311
Jerry Zhang79147972018-01-31 16:04:06 -08005312 // OPEN: Settings->Connected Devices->USB->(click on details link)
5313 // CATEGORY: SETTINGS
5314 // OS: P
5315 USB_DEVICE_DETAILS = 1291;
5316
Michael Wright98bdc512018-01-26 19:15:57 +00005317 // OPEN: Settings > Accessibility > Vibration
5318 // CATEGORY: SETTINGS
5319 // OS: P
5320 ACCESSIBILITY_VIBRATION = 1292;
5321
5322 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5323 // CATEGORY: SETTINGS
5324 // OS: P
5325 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5326
5327 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5328 // CATEGORY: SETTINGS
5329 // OS: P
5330 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5331
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005332 // OPEN: Volume panel > output chooser dialog
5333 // OS: P
5334 OUTPUT_CHOOSER = 1295;
5335
5336 // Action: Volume panel > output chooser dialog > tap on device
5337 // OS: P
5338 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5339
5340 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5341 // OS: P
5342 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5343
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005344 // OPEN: TV Settings > Home theater control
5345 // OS: P
5346 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5347
5348 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5349 // OS: P
5350 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5351
5352 // OPEN: TV Settings > Device
5353 // OS: P
5354 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5355
5356 // OPEN: TV Settings > Network > Proxy settings
5357 // OS: P
5358 DIALOG_TV_NETWORK_PROXY = 1301;
5359
Makoto Onuki698f7a02018-02-13 15:02:23 -08005360 // Events for battery saver turning on/off and/or the interactive state changes.
5361 // OS: P
5362 BATTERY_SAVER = 1302;
5363
5364 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5365 // OS: P
5366 FIELD_INTERACTIVE = 1303;
5367
5368 // Time spent in milliseconds in the current mode.
5369 // OS: P
5370 FIELD_DURATION_MILLIS = 1304;
5371
Chris Wren8f7a1442018-05-14 17:16:31 -04005372 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005373 // OS: P
5374 FIELD_START_BATTERY_UA = 1305;
5375
Chris Wren8f7a1442018-05-14 17:16:31 -04005376 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005377 // OS: P
5378 FIELD_END_BATTERY_UA = 1306;
5379
5380 // Battery level in % (0-100) when the current "mode" started.
5381 // OS: P
5382 FIELD_START_BATTERY_PERCENT = 1307;
5383
5384 // Battery level in % (0-100) when this event was created.
5385 // OS: P
5386 FIELD_END_BATTERY_PERCENT = 1308;
5387
Christine Frankse257e452018-01-18 11:06:54 -08005388 // ACTION: Settings > Display > Night Light
5389 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5390 // CATEGORY: SETTINGS
5391 // OS: P
5392 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5393
5394 // ACTION: Settings > Display > Night Light
5395 // CATEGORY: SETTINGS
5396 // SUBTYPE: 0 is starting time, 1 is ending time
5397 // OS: P
5398 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5399
5400 // FIELD: Current mode corresponding to a QS tile
5401 // CATEGORY: QUICK SETTINGS
5402 // OS: P
5403 FIELD_QS_MODE = 1311;
5404
Jerry Zhang92306d82018-02-12 18:12:41 -08005405 // OPEN: Settings->Developer Options->Default USB
5406 // CATEGORY: SETTINGS
5407 // OS: P
5408 USB_DEFAULT = 1312;
5409
Jan Althaus31efdc32018-02-19 22:23:13 +01005410 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5411 // OS: P
5412 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5413
5414 // FIELD: milliseconds spent generating links.
5415 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5416 // OS: P
5417 FIELD_LINKIFY_LATENCY = 1314;
5418
5419 // FIELD: length of the input text in characters.
5420 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5421 // OS: P
5422 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5423
5424 // FIELD: number of links detected.
5425 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5426 // OS: P
5427 FIELD_LINKIFY_NUM_LINKS = 1316;
5428
5429 // FIELD: length of all links in characters.
5430 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5431 // OS: P
5432 FIELD_LINKIFY_LINK_LENGTH = 1317;
5433
5434 // FIELD: the type of entity the stats are for.
5435 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5436 // OS: P
5437 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5438
5439 // FIELD: a random uid for a single call to generateLinks
5440 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5441 // OS: P
5442 FIELD_LINKIFY_CALL_ID = 1319;
5443
Calin Juravle759fbda2018-02-20 19:52:30 +00005444 // FIELD: The compiler filter used when when optimizing the package.
5445 // Logged together with app transition events.
5446 // OS: P
5447 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5448
5449 // FIELD: The reason for optimizing the package.
5450 // Logged together with app transition events.
5451 // OS: P
5452 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5453
Emilian Peev6bf0a552018-02-10 02:15:49 +00005454 // FIELD: The camera API level used.
5455 // CATEGORY: CAMERA
5456 // OS: P
5457 FIELD_CAMERA_API_LEVEL = 1322;
5458
jackqdyulei73e6b342018-02-26 14:44:50 -08005459 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5460 // CATEGORY: SETTINGS
5461 // OS: P
5462 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5463
jackqdyuleibb60ea22018-02-26 17:18:12 -08005464 // OPEN: Settings > Battery > Battery tip
5465 // CATEGORY: SETTINGS
5466 // OS: P
5467 ACTION_BATTERY_TIP_SHOWN = 1324;
5468
Maggieb9d76322018-02-16 18:00:30 -08005469 // OPEN: Settings > Security & Location > Location > See all
5470 // CATEGORY: SETTINGS
5471 // OS: P
5472 RECENT_LOCATION_REQUESTS_ALL = 1325;
5473
Evan Laird404a85c2018-02-28 15:31:29 -05005474 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5475 // CATEGORY: GLOBAL_SYSTEM_UI
5476 // OS: P
5477 FIELD_GESTURE_X_PERCENT = 1326;
5478
5479 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5480 // CATEGORY: GLOBAL_SYSTEM_UI
5481 // OS: P
5482 FIELD_GESTURE_Y_PERCENT = 1327;
5483
5484 // ACTION: Expand the notification panel while unlocked
5485 // CATEGORY: GLOBAL_SYSTEM_UI
5486 // OS: P
5487 ACTION_PANEL_VIEW_EXPAND = 1328;
5488
Evan Laird404a85c2018-02-28 15:31:29 -05005489 // FIELD: Rotation of the device
5490 // CATEGORY: GLOBAL_SYSTEM_UI
5491 // OS: P
5492 FIELD_DEVICE_ROTATION = 1329;
5493
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005494 // OPEN: TV Settings > Inputs > Input Options
5495 // CATEGORY: SETTINGS
5496 // OS: P
5497 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5498
5499 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5500 // CATEGORY: SETTINGS
5501 // OS: P
5502 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5503
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005504 // ACTION: DND Settings > What to block > full screen intents
5505 // SUBTYPE: false is allowed, true is blocked
5506 // CATEGORY: SETTINGS
5507 // OS: 6.0
5508 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5509
5510 // ACTION: DND Settings > What to block
5511 // SUBTYPE: false is allowed, true is blocked
5512 // OS: P
5513 ACTION_ZEN_BLOCK_LIGHT = 1333;
5514
5515 // ACTION: DND Settings > What to block
5516 // SUBTYPE: false is allowed, true is blocked
5517 // OS: P
5518 ACTION_ZEN_BLOCK_PEEK = 1334;
5519
5520 // ACTION: DND Settings > What to block
5521 // SUBTYPE: false is allowed, true is blocked
5522 // OS: P
5523 ACTION_ZEN_BLOCK_STATUS = 1335;
5524
5525 // ACTION: DND Settings > What to block
5526 // SUBTYPE: false is allowed, true is blocked
5527 // OS: P
5528 ACTION_ZEN_BLOCK_BADGE = 1336;
5529
5530 // ACTION: DND Settings > What to block
5531 // SUBTYPE: false is allowed, true is blocked
5532 // OS: P
5533 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5534
5535 // ACTION: DND Settings > What to block
5536 // SUBTYPE: false is allowed, true is blocked
5537 // OS: P
5538 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5539
5540 // OPEN: DND Settings > What to block
5541 // OS: P
5542 ZEN_WHAT_TO_BLOCK = 1339;
5543
Beverly8fe33ba2018-03-05 14:32:35 -05005544 // ACTION: DND Settings > Priority only allows > System toggle
5545 // SUBTYPE: 0 is off, 1 is on
5546 // CATEGORY: SETTINGS
5547 // OS: P
5548 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5549
5550 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5551 // CATEGORY: SETTINGS
5552 // OS: P
5553 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5554
5555 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5556 // CATEGORY: SETTINGS
5557 // OS: P
5558 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5559
5560 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5561 // CATEGORY: SETTINGS
5562 // OS: P
5563 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5564
5565 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5566 // CATEGORY: SETTINGS
5567 // OS: P
5568 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5569
Julia Reynolds8dff1862018-03-06 14:20:40 -05005570 // Notification Guts, active app ops variant
5571 // OS: P
5572 APP_OPS_GUTS = 1345;
5573
5574 // ACTION: Notification Guts, active app ops variant > Settings button
5575 // OS: P
5576 ACTION_OPS_GUTS_SETTINGS = 1346;
5577
Lei Yu5674d2d2018-03-08 10:19:43 -08005578 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5579 // OS: P
5580 ACTION_APP_RESTRICTION_TIP = 1347;
5581
5582 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5583 // OS: P
5584 ACTION_HIGH_USAGE_TIP = 1348;
5585
Lei Yue93e5602018-03-08 12:15:38 -08005586 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5587 // OS: P
5588 ACTION_SUMMARY_TIP = 1349;
5589
5590 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5591 // OS: P
5592 ACTION_SMART_BATTERY_TIP = 1350;
5593
5594 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5595 // OS: P
5596 ACTION_EARLY_WARNING_TIP = 1351;
5597
5598 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5599 // OS: P
5600 ACTION_LOW_BATTERY_TIP = 1352;
5601
5602 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5603 // OS: P
5604 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5605
5606 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5607 // OS: P
5608 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5609
Victor Chang76817b82018-03-09 17:22:52 +00005610 // OPEN: Settings > Date & time > Select time zone -> Region
5611 // CATEGORY: SETTINGS
5612 // OS: P
5613 SETTINGS_ZONE_PICKER_REGION = 1355;
5614
5615 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5616 // CATEGORY: SETTINGS
5617 // OS: P
5618 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5619
5620 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5621 // CATEGORY: SETTINGS
5622 // OS: P
5623 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5624
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005625 // Action: notification shade > manage notifications
5626 // OS: P
5627 ACTION_MANAGE_NOTIFICATIONS = 1358;
5628
Chris Wrenaa571c62018-03-14 12:16:04 -04005629 // This value should never appear in log outputs - it is reserved for
5630 // internal platform metrics use.
5631 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5632
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005633 // OPEN: Settings > Gestures > Prevent Ringing
5634 // OS: P
5635 SETTINGS_PREVENT_RINGING = 1360;
5636
Lei Yue92285a2018-03-12 11:28:40 -07005637 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5638 // CATEGORY: SETTINGS
5639 // OS: P
5640 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5641
5642 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5643 // CATEGORY: SETTINGS
5644 // OS: P
5645 ACTION_TIP_RESTRICT_APP = 1362;
5646
5647 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5648 // CATEGORY: SETTINGS
5649 // OS: P
5650 ACTION_TIP_UNRESTRICT_APP = 1363;
5651
5652 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5653 // CATEGORY: SETTINGS
5654 // OS: P
5655 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5656
5657 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5658 // CATEGORY: SETTINGS
5659 // OS: P
5660 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5661
5662 // FIELD: type of anomaly in settings app
5663 // CATEGORY: SETTINGS
5664 // OS: P
5665 FIELD_ANOMALY_TYPE = 1366;
5666
Lei Yu4f704772018-03-20 10:51:58 -07005667 // ACTION: Settings > Anomaly receiver > Anomaly received
5668 // CATEGORY: SETTINGS
5669 // OS: P
5670 ACTION_ANOMALY_TRIGGERED = 1367;
5671
Fan Zhanga85b4872018-03-26 16:52:53 -07005672 // ACTION: Settings > Condition > Device muted
5673 // CATEGORY: SETTINGS
5674 // OS: P
5675 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5676
5677 // ACTION: Settings > Condition > Device vibrate
5678 // CATEGORY: SETTINGS
5679 // OS: P
5680 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5681
hughchen226196b2018-03-27 12:04:59 +08005682 // OPEN: Settings > Connected devices > previously connected devices
5683 // CATEGORY: SETTINGS
5684 // OS: P
5685 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005686
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005687 // ACTION: A Settings Slice is requested
5688 // CATEGORY: SETTINGS
5689 // OS: P
5690 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5691
5692 // ACTION: A Settings Slice is updated with new value
5693 // CATEGORY: SETTINGS
5694 // OS: P
5695 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5696
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005697 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5698 // note: Wifi Scanning must be off for this dialog to show
5699 // CATEGORY: SETTINGS
5700 // OS: P
5701 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5702
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005703 // OPEN: Settings > System > Gestures > Swipe up gesture
5704 // CATEGORY: SETTINGS
5705 // OS: P
5706 SETTINGS_GESTURE_SWIPE_UP = 1374;
5707
Jeff Sharkey46270712018-04-02 09:53:21 -06005708 // OPEN: Settings > Storage > Dialog to format a storage volume
5709 // CATEGORY: SETTINGS
5710 // OS: P
5711 DIALOG_VOLUME_FORMAT = 1375;
5712
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005713 // OPEN: DND onboarding activity > screen on checkbox
5714 // CATEGORY: SETTINGS
5715 // OS: P
5716 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5717
5718 // OPEN: DND onboarding activity > screen off checkbox
5719 // CATEGORY: SETTINGS
5720 // OS: P
5721 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5722
5723 // OPEN: DND onboarding activity > Ok button
5724 // CATEGORY: SETTINGS
5725 // OS: P
5726 ACTION_ZEN_ONBOARDING_OK = 1378;
5727
5728 // OPEN: DND onboarding activity > Settings link
5729 // CATEGORY: SETTINGS
5730 // OS: P
5731 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5732
5733 // OPEN: DND onboarding activity
5734 // CATEGORY: SETTINGS
5735 // OS: P
5736 SETTINGS_ZEN_ONBOARDING = 1380;
5737
Fan Zhanga496b122018-04-10 12:57:56 -07005738 // OPEN: Settings > Display > Auto brightness
5739 // CATEGORY: SETTINGS
5740 // OS: P
5741 SETTINGS_AUTO_BRIGHTNESS = 1381;
5742
Kenny Guy23991102018-04-05 21:18:38 +01005743 // OPEN: Smart replies in a notification seen at least once
5744 // CATEGORY: NOTIFICATION
5745 // PACKAGE: App that posted the notification
5746 // SUBTYPE: Number of smart replies.
5747 // OS: P
5748 SMART_REPLY_VISIBLE = 1382;
5749
5750 // ACTION: Smart reply in a notification clicked.
5751 // CATEGORY: NOTIFICATION
5752 // PACKAGE: App that posted the notification
5753 // SUBTYPE: Index of smart reply clicked.
5754 // OS: P
5755 SMART_REPLY_ACTION = 1383;
5756
5757 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5758 // OS: P
5759 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5760
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005761 // Volume dialog > ringer toggle
5762 // OS: P
5763 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5764
5765 // Volume dialog > settings button
5766 // OS: P
5767 ACTION_VOLUME_SETTINGS = 1386;
5768
Lei Yufc59a572018-04-10 10:52:08 -07005769 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5770 // CATEGORY: SETTINGS
5771 // OS: P
5772 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005773
Lei Yu97a13212018-04-11 15:45:31 -07005774 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5775 // CATEGORY: SETTINGS
5776 // OS: P
5777 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5778
5779 // FIELD: the version code of an app
5780 // CATEGORY: SETTINGS
5781 // OS: P
5782 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005783
Salvador Martinez8e899682018-04-04 14:42:59 -07005784 // OPEN: Settings > Connected Devices > Bluetooth
5785 // CATEGORY: SETTINGS
5786 // OS: P
5787 BLUETOOTH_FRAGMENT = 1390;
5788
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005789 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5790 // an app uses a hidden API.
5791 ACTION_HIDDEN_API_ACCESSED = 1391;
5792
5793 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5794 // access; see enum HiddenApiAccessMethod
5795 // OS: P
5796 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5797
5798 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5799 // denied to the API.
5800 // OS: P
5801 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5802
5803 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5804 // API that was accessed.
5805 // OS: P
5806 FIELD_HIDDEN_API_SIGNATURE = 1394;
5807
Chris Wren8f7a1442018-05-14 17:16:31 -04005808 // The number of items in the shade when this notification event was logged.
5809 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005810 NOTIFICATION_SHADE_COUNT = 1395;
5811
Julia Reynolds5da746a2018-04-23 09:41:21 -04005812 // ACTION: DND Settings > What to block
5813 // OS: P
5814 ACTION_ZEN_SOUND_ONLY = 1396;
5815
5816 // ACTION: DND Settings > Notifications
5817 // OS: P
5818 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5819
5820 // ACTION: DND Settings > Notifications
5821 // OS: P
5822 ACTION_ZEN_SHOW_CUSTOM = 1398;
5823
5824 // ACTION: DND Settings > Notifications
5825 // OS: P
5826 ACTION_ZEN_CUSTOM = 1399;
5827
5828 // Screen: DND Settings > Notifications
5829 // OS: P
5830 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5831
Chris Wrend63dffd2018-04-19 11:12:46 -04005832 // An event category for slices.
5833 // OPEN: Slice became visible.
5834 // CLOSE: Slice became invisible.
5835 // ACTION: Slice was tapped.
5836 SLICE = 1401;
5837
5838 // The authority part of the slice URI
5839 FIELD_SLICE_AUTHORITY = 1402;
5840
5841 // The path part of the slice URI
5842 FIELD_SLICE_PATH = 1403;
5843
5844 // The authority part of the subslice URI
5845 FIELD_SUBSLICE_AUTHORITY = 1404;
5846
5847 // The path part of the subslice URI
5848 FIELD_SUBSLICE_PATH = 1405;
5849
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005850 // OPEN: DND onboarding activity > don't update button
5851 // CATEGORY: SETTINGS
5852 // OS: P
5853 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5854
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005855 // ACTION: Storage initialization wizard initialization choice of external/portable
5856 // CATEGORY: SETTINGS
5857 // OS: P
5858 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5859
5860 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5861 // CATEGORY: SETTINGS
5862 // OS: P
5863 ACTION_STORAGE_INIT_INTERNAL = 1408;
5864
5865 // ACTION: Storage initialization wizard benchmark fast choice of continue
5866 // CATEGORY: SETTINGS
5867 // OS: P
5868 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5869
5870 // ACTION: Storage initialization wizard benchmark slow choice of continue
5871 // CATEGORY: SETTINGS
5872 // OS: P
5873 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5874
5875 // ACTION: Storage initialization wizard benchmark slow choice of abort
5876 // CATEGORY: SETTINGS
5877 // OS: P
5878 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5879
5880 // ACTION: Storage initialization wizard migration choice of now
5881 // CATEGORY: SETTINGS
5882 // OS: P
5883 ACTION_STORAGE_MIGRATE_NOW = 1412;
5884
5885 // ACTION: Storage initialization wizard migration choice of later
5886 // CATEGORY: SETTINGS
5887 // OS: P
5888 ACTION_STORAGE_MIGRATE_LATER = 1413;
5889
Felipe Leme11166522018-05-07 10:18:47 -07005890 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005891 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005892 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5893
hughchen2bde4092018-05-10 18:04:25 +08005894 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005895 // CATEGORY: SETTINGS
5896 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005897 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5898
5899 // OPEN: Settings > Sound > Switch hfp devices dialog
5900 // CATEGORY: SETTINGS
5901 // OS: P
5902 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005903
Beverlyc4eb9342018-05-10 15:46:03 -04005904 // ACTION: User has started or ended charging
5905 // Type TYPE_DISMISS: Charging has ended
5906 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5907 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5908 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5909 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5910 // Tag FIELD_PLUG_TYPE: Charging plug type
5911 ACTION_CHARGE = 1417;
5912
5913 // Tag used to determine battery level when device started charging
5914 FIELD_BATTERY_LEVEL_START = 1418;
5915
5916 // Tag used to determine battery level when device ended charging
5917 FIELD_BATTERY_LEVEL_END = 1419;
5918
5919 // Tag used to determine length of charging
5920 FIELD_CHARGING_DURATION_MILLIS = 1420;
5921
5922 // Tag used to determine what type of charging was started/ended
5923 // 1 = Plugged AC
5924 // 2 = Plugged USB
Beverlyc47ba512018-09-24 14:02:23 -05005925 // 4 = Wireless
Beverlyc4eb9342018-05-10 15:46:03 -04005926 FIELD_PLUG_TYPE = 1421;
5927
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005928 // ACTION: USB-C Connector connected.
5929 // CATEGORY: OTHER
5930 // OS: P
5931 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5932
5933 // ACTION: USB-C Connector disconnected.
5934 // CATEGORY: OTHER
5935 // OS: P
5936 // uses FIELD_DURATION_MILLIS for connected duration
5937 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5938
5939 // ACTION: USB-C Audio device connected
5940 // CATEGORY: OTHER
5941 // OS: P
5942 ACTION_USB_AUDIO_CONNECTED = 1424;
5943
5944 // FIELD: VIDPID of connected USB Audio device
5945 // CATEGORY: OTHER
5946 // OS: P
5947 FIELD_USB_AUDIO_VIDPID = 1425;
5948
5949 // ACTION: USB-C Audio device disconnected
5950 // CATEGORY: OTHER
5951 // OS: P
5952 // use FIELD_DURATION_MILLIS for time
5953 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5954
5955 // ACTION: Hardware failure event
5956 // CATEGORY: OTHER
5957 // OS: P
5958 ACTION_HARDWARE_FAILED = 1427;
5959
5960 // FIELD: Hardware failure category
5961 // CATEGORY: OTHER
5962 // OS: P
5963 // Uses enum HardwareType
5964 FIELD_HARDWARE_TYPE = 1428;
5965
5966 // FIELD: Hardware failure category
5967 // CATEGORY: OTHER
5968 // OS: P
5969 // Uses enum HardwareFailureCode
5970 FIELD_HARDWARE_FAILURE_CODE = 1429;
5971
5972 // ACTION: Physical drop event
5973 // CATEGORY: OTHER
5974 // OS: P
5975 // use FIELD_DURATION_MILLIS for time
5976 ACTION_PHYSICAL_DROP = 1430;
5977
5978 // FIELD: Confidence in detection of drop, in integer percentage.
5979 // CATEGORY: OTHER
5980 // OS: P
5981 FIELD_CONFIDENCE_PERCENT = 1431;
5982
5983 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5984 // CATEGORY: OTHER
5985 // OS: P
5986 FIELD_ACCEL_MILLI_G = 1432;
5987
5988 // ACTION: Battery health snapshot
5989 // CATEGORY: OTHER
5990 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005991 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005992 ACTION_BATTERY_HEALTH = 1433;
5993
5994 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5995 // CATEGORY: OTHER
5996 // OS: P
5997 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5998
Andrew Chantc03bc632018-05-18 10:52:00 -07005999 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006000 // CATEGORY: OTHER
6001 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006002 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006003
Andrew Chantc03bc632018-05-18 10:52:00 -07006004 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006005 // CATEGORY: OTHER
6006 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006007 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006008
Andrew Chantc03bc632018-05-18 10:52:00 -07006009 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006010 // CATEGORY: OTHER
6011 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006012 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006013
Andrew Chantc03bc632018-05-18 10:52:00 -07006014 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006015 // fractional threshold of full capacity.
6016 // CATEGORY: OTHER
6017 // OS: P
6018 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6019
Andrew Chantc03bc632018-05-18 10:52:00 -07006020 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6021 // beyond a fractional threshold of full
6022 // capacity. A comma-separated string of
6023 // buckets. If there are eight buckets,
6024 // each bucket represents charging to n/8
6025 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006026 // CATEGORY: OTHER
6027 // OS: P
6028 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6029
Beverly019d6f62018-05-15 16:16:54 -04006030 // ACTION: Hush gesture - volume up + power button
6031 // CATEGORY: GLOBAL_SYSTEM_UI
6032 // OS: P
6033 ACTION_HUSH_GESTURE = 1440;
6034
Petri Gynther778facb2018-05-18 22:59:50 -07006035 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6036 // offload
6037 // CATEGORY: SETTINGS
6038 // OS: P
6039 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6040
Andrew Chantc03bc632018-05-18 10:52:00 -07006041 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6042 // reported aggregated per day when > 0.
6043 // CATEGORY: OTHER
6044 // OS: P
6045 ACTION_SLOW_IO = 1442;
6046
6047 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6048 // The value is an integer from the enum IoOperation.
6049 // CATEGORY: OTHER
6050 // OS: P
6051 FIELD_IO_OPERATION_TYPE = 1443;
6052
6053 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6054 // over the past 24hr (reported only if > 0).
6055 // CATEGORY: OTHER
6056 // OS: P
6057 FIELD_IO_OPERATION_COUNT = 1444;
6058
6059 // ACTION: Speaker Imedance - last recorded speaker impedance.
6060 // reported max once per 24hr.
6061 // CATEGORY: OTHER
6062 // OS: P
6063 ACTION_SPEAKER_IMPEDANCE = 1445;
6064
6065 // FIELD: Speaker Impedance in milliohms.
6066 // CATEGORY: OTHER
6067 // OS: P
6068 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6069
6070 // FIELD: Speaker Location - identifies one of several speakers on a device.
6071 // CATEGORY: OTHER
6072 // OS: P
6073 FIELD_SPEAKER_LOCATION = 1447;
6074
6075 // FIELD: Instantaneous battery resistance in microohms.
6076 // CATEGORY: OTHER
6077 // OS: P
6078 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6079
6080 // FIELD: Instantaneous battery current - in microamps.
6081 // CATEGORY: OTHER
6082 // OS: P
6083 FIELD_BATTERY_CURRENT_UA = 1449;
6084
6085 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6086 // board.
6087 // CATEGORY: OTHER
6088 // OS: P
6089 FIELD_HARDWARE_LOCATION = 1450;
6090
6091 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6092 // action is logged after the subsequent boot.
6093 // CATEGORY: OTHER
6094 // OS: P
6095 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6096
Felipe Leme21fb1a32018-05-21 11:18:46 -07006097 // FIELD: Flags used on autofill-related metrics
6098 // OS: P
6099 FIELD_AUTOFILL_FLAGS = 1452;
6100
6101 // Tag used when the service returned an authenticated dataset or response.
6102 // Used to replace the following individual metrics, which now are logged as the value of this
6103 // field in the AUTOFILL_REQUEST metric:
6104 // - AUTOFILL_AUTHENTICATED;
6105 // - AUTOFILL_DATASET_AUTHENTICATED
6106 // - AUTOFILL_INVALID_AUTHENTICATION
6107 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6108 // OS: P
6109 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6110
6111 // FIELD: Index of the autofill request inside of a session.
6112 // OS: P
6113 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6114
6115 // FIELD: Number of requests made to an autofill service during a session.
6116 // OS: P
6117 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6118
Felipe Leme833c99b2018-05-24 10:41:48 -07006119 // FIELD: Id of the autofill session associated with this metric.
6120 // OS: P
6121 FIELD_AUTOFILL_SESSION_ID = 1456;
6122
Chris Wren77781d32016-01-11 14:49:26 -05006123 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006124
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006125 // Time since this notification last interrupted (visibly or audible) the user
6126 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6127
6128 // OPEN: Notification interrupted the user, either audibly or visually.
6129 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6130 // CATEGORY: NOTIFICATION
6131 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006132
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006133 // OPEN: Settings
6134 // CATEGORY: SETTINGS
6135 // OS: Q
6136 SETTINGS_HOMEPAGE = 1502;
6137
Fan Zhang0b6bc412018-06-21 17:19:02 -07006138 // OPEN: Settings > Create shortcut(widget)
6139 // CATEGORY: SETTINGS
6140 // OS: Q
6141 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006142
6143 // ACTION: Authenticate using fingerprint
6144 // CATEGORY: SETTINGS
6145 // OS: Q
6146 ACTION_FACE_AUTH = 1504;
6147
6148 // ACTION: Add fingerprint > Enroll fingerprint
6149 // CATEGORY: SETTINGS
6150 // OS: Q
6151 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006152
6153 // OPEN: Face Enroll introduction
6154 // CATEGORY: SETTINGS
6155 // OS: Q
6156 FACE_ENROLL_INTRO = 1506;
6157
6158 // OPEN: Face Enroll introduction
6159 // CATEGORY: SETTINGS
6160 // OS: Q
6161 FACE_ENROLL_ENROLLING = 1507;
6162
6163 // OPEN: Face Enroll introduction
6164 // CATEGORY: SETTINGS
6165 // OS: Q
6166 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006167
6168 // OPEN: Face Enroll sidecar
6169 // CATEGORY: SETTINGS
6170 // OS: Q
6171 FACE_ENROLL_SIDECAR = 1509;
6172
6173 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006174 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006175 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006176
6177 // OPEN: Settings > Security > Face
6178 // CATEGORY: SETTINGS
6179 // OS: Q
6180 FACE = 1511;
6181
timhypeng8c6885d2018-07-30 16:44:36 +08006182 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6183 // CATEGORY: SETTINGS
6184 // OS: Q
6185 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6186
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006187 // ACTION: Activity start
6188 // CATEGORY: OTHER
6189 // OS: Q (will also ship in PQ1A)
6190 ACTION_ACTIVITY_START = 1513;
6191
6192 // Tagged data for ACTION_ACTIVITY_START.
6193 // FIELD: Calling UID
6194 // CATEGORY: OTHER
6195 // OS: Q (will also ship in PQ1A)
6196 FIELD_CALLING_UID = 1514;
6197
6198 // Tagged data for ACTION_ACTIVITY_START.
6199 // FIELD: Calling package name
6200 // CATEGORY: OTHER
6201 // OS: Q (will also ship in PQ1A)
6202 FIELD_CALLING_PACKAGE_NAME = 1515;
6203
6204 // Tagged data for ACTION_ACTIVITY_START.
6205 // FIELD: Calling UID proc state
6206 // CATEGORY: OTHER
6207 // OS: Q (will also ship in PQ1A)
6208 FIELD_CALLING_UID_PROC_STATE = 1516;
6209
6210 // Tagged data for ACTION_ACTIVITY_START.
6211 // FIELD: Calling UID has any visible window
6212 // CATEGORY: OTHER
6213 // OS: Q (will also ship in PQ1A)
6214 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6215
6216 // Tagged data for ACTION_ACTIVITY_START.
6217 // FIELD: Real calling UID
6218 // CATEGORY: OTHER
6219 // OS: Q (will also ship in PQ1A)
6220 FIELD_REAL_CALLING_UID = 1518;
6221
6222 // Tagged data for ACTION_ACTIVITY_START.
6223 // FIELD: Real calling UID proc state
6224 // CATEGORY: OTHER
6225 // OS: Q (will also ship in PQ1A)
6226 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6227
6228 // Tagged data for ACTION_ACTIVITY_START.
6229 // FIELD: Real calling UID has any visible window
6230 // CATEGORY: OTHER
6231 // OS: Q (will also ship in PQ1A)
6232 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6233
6234 // Tagged data for ACTION_ACTIVITY_START.
6235 // FIELD: Target UID
6236 // CATEGORY: OTHER
6237 // OS: Q (will also ship in PQ1A)
6238 FIELD_TARGET_UID = 1521;
6239
6240 // Tagged data for ACTION_ACTIVITY_START.
6241 // FIELD: Target UID package name
6242 // CATEGORY: OTHER
6243 // OS: Q (will also ship in PQ1A)
6244 FIELD_TARGET_PACKAGE_NAME = 1522;
6245
6246 // Tagged data for ACTION_ACTIVITY_START.
6247 // FIELD: Target UID proc state
6248 // CATEGORY: OTHER
6249 // OS: Q (will also ship in PQ1A)
6250 FIELD_TARGET_UID_PROC_STATE = 1523;
6251
6252 // Tagged data for ACTION_ACTIVITY_START.
6253 // FIELD: Target UID has any visible window
6254 // CATEGORY: OTHER
6255 // OS: Q (will also ship in PQ1A)
6256 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6257
6258 // Tagged data for ACTION_ACTIVITY_START.
6259 // FIELD: Target doze whitelist tag
6260 // CATEGORY: OTHER
6261 // OS: Q (will also ship in PQ1A)
6262 FIELD_TARGET_WHITELIST_TAG = 1525;
6263
6264 // Tagged data for ACTION_ACTIVITY_START.
6265 // FIELD: Target short component name
6266 // CATEGORY: OTHER
6267 // OS: Q (will also ship in PQ1A)
6268 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6269
6270 // Tagged data for ACTION_ACTIVITY_START.
6271 // FIELD: Coming from pending intent
6272 // CATEGORY: OTHER
6273 // OS: Q (will also ship in PQ1A)
6274 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6275
6276 // Tagged data for ACTION_ACTIVITY_START.
6277 // FIELD: Intent action
6278 // CATEGORY: OTHER
6279 // OS: Q (will also ship in PQ1A)
6280 FIELD_INTENT_ACTION = 1528;
6281
6282 // Tagged data for ACTION_ACTIVITY_START.
6283 // FIELD: Caller app process record process name
6284 // CATEGORY: OTHER
6285 // OS: Q (will also ship in PQ1A)
6286 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6287
6288 // Tagged data for ACTION_ACTIVITY_START.
6289 // FIELD: Caller app process record current proc state
6290 // CATEGORY: OTHER
6291 // OS: Q (will also ship in PQ1A)
6292 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6293
6294 // Tagged data for ACTION_ACTIVITY_START.
6295 // FIELD: Caller app process record has client activities
6296 // CATEGORY: OTHER
6297 // OS: Q (will also ship in PQ1A)
6298 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6299
6300 // Tagged data for ACTION_ACTIVITY_START.
6301 // FIELD: Caller app process record has foreground services
6302 // CATEGORY: OTHER
6303 // OS: Q (will also ship in PQ1A)
6304 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6305
6306 // Tagged data for ACTION_ACTIVITY_START.
6307 // FIELD: Caller app process record has foreground activities
6308 // CATEGORY: OTHER
6309 // OS: Q (will also ship in PQ1A)
6310 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6311
6312 // Tagged data for ACTION_ACTIVITY_START.
6313 // FIELD: Caller app process record has top UI
6314 // CATEGORY: OTHER
6315 // OS: Q (will also ship in PQ1A)
6316 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6317
6318 // Tagged data for ACTION_ACTIVITY_START.
6319 // FIELD: Caller app process record has overlay UI
6320 // CATEGORY: OTHER
6321 // OS: Q (will also ship in PQ1A)
6322 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6323
6324 // Tagged data for ACTION_ACTIVITY_START.
6325 // FIELD: Caller app process record pending UI clean
6326 // CATEGORY: OTHER
6327 // OS: Q (will also ship in PQ1A)
6328 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6329
6330 // Tagged data for ACTION_ACTIVITY_START.
6331 // FIELD: Millis since caller app's process record last interaction event
6332 // CATEGORY: OTHER
6333 // OS: Q (will also ship in PQ1A)
6334 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6335
6336 // Tagged data for ACTION_ACTIVITY_START.
6337 // FIELD: Millis since caller app's process record fg interaction
6338 // CATEGORY: OTHER
6339 // OS: Q (will also ship in PQ1A)
6340 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6341
6342 // Tagged data for ACTION_ACTIVITY_START.
6343 // FIELD: Millis since caller app's process record last became unimportant
6344 // CATEGORY: OTHER
6345 // OS: Q (will also ship in PQ1A)
6346 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6347
6348 // Tagged data for ACTION_ACTIVITY_START.
6349 // FIELD: Activity record launch mode
6350 // CATEGORY: OTHER
6351 // OS: Q (will also ship in PQ1A)
6352 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6353
6354 // Tagged data for ACTION_ACTIVITY_START.
6355 // FIELD: Activity record target activity
6356 // CATEGORY: OTHER
6357 // OS: Q (will also ship in PQ1A)
6358 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6359
6360 // Tagged data for ACTION_ACTIVITY_START.
6361 // FIELD: Activity record flags
6362 // CATEGORY: OTHER
6363 // OS: Q (will also ship in PQ1A)
6364 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6365
6366 // Tagged data for ACTION_ACTIVITY_START.
6367 // FIELD: Activity record real activity
6368 // CATEGORY: OTHER
6369 // OS: Q (will also ship in PQ1A)
6370 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6371
6372 // Tagged data for ACTION_ACTIVITY_START.
6373 // FIELD: Activity record short component name
6374 // CATEGORY: OTHER
6375 // OS: Q (will also ship in PQ1A)
6376 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6377
6378 // Tagged data for ACTION_ACTIVITY_START.
6379 // FIELD: Activity record process name
6380 // CATEGORY: OTHER
6381 // OS: Q (will also ship in PQ1A)
6382 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6383
6384 // Tagged data for ACTION_ACTIVITY_START.
6385 // FIELD: Activity record is fullscreen
6386 // CATEGORY: OTHER
6387 // OS: Q (will also ship in PQ1A)
6388 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6389
6390 // Tagged data for ACTION_ACTIVITY_START.
6391 // FIELD: Activity record is no display
6392 // CATEGORY: OTHER
6393 // OS: Q (will also ship in PQ1A)
6394 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6395
6396 // Tagged data for ACTION_ACTIVITY_START.
6397 // FIELD: Millis since activity was last visible
6398 // CATEGORY: OTHER
6399 // OS: Q (will also ship in PQ1A)
6400 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6401
6402 // Tagged data for ACTION_ACTIVITY_START.
6403 // FIELD: Activity record's resultTo packageName
6404 // CATEGORY: OTHER
6405 // OS: Q (will also ship in PQ1A)
6406 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6407
6408 // Tagged data for ACTION_ACTIVITY_START.
6409 // FIELD: Activity record's resultTo shortComponentName
6410 // CATEGORY: OTHER
6411 // OS: Q (will also ship in PQ1A)
6412 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6413
6414 // Tagged data for ACTION_ACTIVITY_START.
6415 // FIELD: Activity record is visible
6416 // CATEGORY: OTHER
6417 // OS: Q (will also ship in PQ1A)
6418 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6419
6420 // Tagged data for ACTION_ACTIVITY_START.
6421 // FIELD: Activity record is visible ignoring keyguard
6422 // CATEGORY: OTHER
6423 // OS: Q (will also ship in PQ1A)
6424 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6425
6426 // Tagged data for ACTION_ACTIVITY_START.
6427 // FIELD: Millis since activity's last launch
6428 // CATEGORY: OTHER
6429 // OS: Q (will also ship in PQ1A)
6430 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006431
Kevin Chyn2c94a292018-08-09 15:00:06 -07006432 // OPEN: Settings > Add face
6433 // OS: Q
6434 FACE_ENROLL_PREVIEW = 1554;
6435
Felipe Lemec9f32592018-08-02 14:57:11 -07006436 // Field used to indicate whether a save request was used to update existing user data.
6437 FIELD_AUTOFILL_UPDATE = 1555;
6438
tmfangf391da12018-08-15 17:01:40 +08006439 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6440 // CATEGORY: SETTINGS
6441 // OS: Q
6442 SETTINGS_WIFI_ADD_NETWORK = 1556;
6443
Lucas Dupinc81702e2018-08-09 15:41:55 -07006444 // OPEN: Settings > System > Input & Gesture > Reach up gesture
6445 // OS: Q
6446 SETTINGS_GESTURE_REACH = 1557;
6447
Shaotang Li4187f7a62018-07-04 14:03:25 +08006448 // OPEN: Emergency dialer opened
6449 // CLOSE: Emergency dialer closed
6450 // SUBTYPE: The entry type that user opened emergency dialer
6451 // CATEGORY: EMERGENCY_DIALER
6452 // OS: Q
6453 EMERGENCY_DIALER = 1558;
6454
6455 // FIELD: The screen is currently locked
6456 // CATEGORY: EMERGENCY_DIALER
6457 // OS: Q
6458 FIELD_EMERGENCY_DIALER_IS_SCREEN_LOCKED = 1559;
6459
6460 // FIELD: Bit flag indicating the actions performed by user
6461 // CATEGORY: EMERGENCY_DIALER
6462 // OS: Q
6463 FIELD_EMERGENCY_DIALER_USER_ACTIONS = 1560;
6464
6465 // FIELD: The duration user stayed at emergency dialer
6466 // CATEGORY: EMERGENCY_DIALER
6467 // OS: Q
6468 FIELD_EMERGENCY_DIALER_DURATION_MS = 1561;
6469
6470 // ACTION: Making call via emergency dialer
6471 // SUBTYPE: The UI that user made phone call
6472 // CATEGORY: EMERGENCY_DIALER
6473 // OS: Q
6474 EMERGENCY_DIALER_MAKE_CALL = 1562;
6475
6476 // FIELD: The phone number type of a call user made
6477 // CATEGORY: EMERGENCY_DIALER
6478 // OS: Q
6479 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_TYPE = 1563;
6480
6481 // FIELD: There is a shortcut for the phone number
6482 // CATEGORY: EMERGENCY_DIALER
6483 // OS: Q
6484 FIELD_EMERGENCY_DIALER_PHONE_NUMBER_HAS_SHORTCUT = 1564;
6485
6486 // FIELD: The phone is in pocket while using emergency dialer
6487 // CATEGORY: EMERGENCY_DIALER
6488 // OS: Q
6489 FIELD_EMERGENCY_DIALER_IN_POCKET = 1565;
6490
6491 // ACTION: The second tap on emergency shortcut to make a phone call
6492 // CATEGORY: EMERGENCY_DIALER
6493 // OS: Q
6494 EMERGENCY_DIALER_SHORTCUT_CONFIRM_TAP = 1566;
6495
6496 // FIELD: The time in milliseconds of second tap on shortcut since first tap
6497 // CATEGORY: EMERGENCY_DIALER
6498 // OS: Q
6499 FIELD_EMERGENCY_DIALER_SHORTCUT_TAPS_INTERVAL = 1567;
6500
Shaotang Li786da902018-08-02 11:18:00 +08006501 // OPEN: Power menu is opened
6502 // CATEGORY: GLOBAL_SYSTEM_UI
6503 // OS: Q
6504 POWER_MENU = 1568;
6505
6506 // ACTION: User tapped emergency dialer icon in the power menu.
6507 // CATEGORY: GLOBAL_SYSTEM_UI
6508 // OS: Q
6509 ACTION_EMERGENCY_DIALER_FROM_POWER_MENU = 1569;
6510
Lucas Dupin323f9ff2018-08-27 16:55:56 -07006511 // OPEN: Settings > System > Input & Gesture > Wake screen
6512 // OS: Q
6513 SETTINGS_GESTURE_WAKE_SCREEN = 1570;
6514
jackqdyulei2cc9b4b2018-09-07 13:12:43 -07006515 // OPEN: Settings > Network & internet > Mobile network
6516 // CATEGORY: SETTINGS
6517 // OS: Q
6518 MOBILE_NETWORK = 1571;
6519
Chris Wren6c109522018-03-12 10:00:12 -04006520 // ---- End Q Constants, all Q constants go above this line ----
6521
Chris Wren77781d32016-01-11 14:49:26 -05006522 // Add new aosp constants above this line.
6523 // END OF AOSP CONSTANTS
6524 }
6525}