blob: cc789e206484fdbad33598454a44612b640c6cf2 [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
2222 ACTION_AMBIENT_GESTURE = 411;
2223
Jason Monk9fa5f822016-05-11 10:26:31 -04002224 // ---- End N Constants, all N constants go above this line ----
2225
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002226 // ------- Begin N App Disambig Shade -----
2227 // Application disambig shade opened or closed with a featured app.
2228 // These are actually visibility events, but visible/hidden doesn't
2229 // take a package, so these are being logged as actions.
2230 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002231 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2232 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002233
2234 // Application disambig shade opened or closed without a featured app.
2235 // These are actually visibility events, but visible/hidden doesn't
2236 // take a package, so these are being logged as actions.
2237 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002238 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2239 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002240
2241 // User opens in an app by pressing “Always” in the application disambig shade.
2242 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002243 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002244
2245 // User opens in an app by pressing “Just Once” in the application disambig shade.
2246 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002247 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002248
2249 // User opens in an app by tapping on its name in the application disambig shade.
2250 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002251 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002252
Daniel Nishi010aa492016-05-11 09:42:24 -07002253 // OPEN: Settings > Internal storage > Storage manager
2254 // CATEGORY: SETTINGS
2255 STORAGE_MANAGER_SETTINGS = 458;
2256
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002257 // OPEN: Settings -> Gestures
2258 // CATEGORY: SETTINGS
2259 SETTINGS_GESTURES = 459;
2260
Daniel Nishi597e67f2016-05-18 13:56:13 -07002261 // ------ Begin Deletion Helper ------
2262 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2263 // SUBTYPE: false is off, true is on
2264 // CATEGORY: SETTINGS
2265 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002266
Daniel Nishi597e67f2016-05-18 13:56:13 -07002267 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2268 // SUBTYPE: false is off, true is on
2269 // CATEGORY: SETTINGS
2270 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2271
2272 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2273 // CATEGORY: SETTINGS
2274 // PACKAGE: Unchecked app
2275 ACTION_DELETION_SELECTION_APP_ON = 462;
2276
2277 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2278 // CATEGORY: SETTINGS
2279 // PACKAGE: Checked app
2280 ACTION_DELETION_SELECTION_APP_OFF = 463;
2281
2282 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2283 // SUBTYPE: false is expanded, true is collapsed
2284 // CATEGORY: SETTINGS
2285 ACTION_DELETION_APPS_COLLAPSED = 464;
2286
2287 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2288 // SUBTYPE: false is off, true is on
2289 // CATEGORY: SETTINGS
2290 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2291
2292 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2293 // SUBTYPE: false is expanded, true is collapsed
2294 // CATEGORY: SETTINGS
2295 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2296
2297 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2298 // CATEGORY: SETTINGS
2299 ACTION_DELETION_HELPER_CLEAR = 467;
2300
2301 // ACTION: Settings > Storage > Free Up Space > Cancel
2302 // CATEGORY: SETTINGS
2303 ACTION_DELETION_HELPER_CANCEL = 468;
2304
2305 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2306 // CATEGORY: SETTINGS
2307 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2308
2309 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2310 // CATEGORY: SETTINGS
2311 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2312
2313 // Deletion helper encountered an error during package deletion.
2314 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2315
2316 // Deletion helper encountered an error during downloads folder deletion.
2317 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2318
2319 // Deletion helper encountered an error during photo and video deletion.
2320 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2321
Fan Zhang5e956e82016-05-06 10:51:47 -07002322 // OPEN: Settings (root page if there are multiple tabs)
2323 // CATEGORY: SETTINGS
2324 DASHBOARD_CONTAINER = 474;
2325
2326 // OPEN: Settings -> SUPPORT TAB
2327 // CATEGORY: SETTINGS
2328 SUPPORT_FRAGMENT = 475;
2329
2330 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002331 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002332 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002333
2334 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002335 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002336 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2337
Fan Zhanga1985502016-06-16 16:48:38 -07002338 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002339 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002340 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2341
2342 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002343 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002344 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2345
2346 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002347 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002348 ACTION_SUPPORT_SIGN_IN = 480;
2349
2350 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002351 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002352 ACTION_SUPPORT_PHONE = 481;
2353
2354 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002355 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002356 ACTION_SUPPORT_CHAT = 482;
2357
2358 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002359 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002360 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2361
2362 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002363 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002364 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2365
Fan Zhang80807212016-06-30 12:26:55 -07002366 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002367 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002368 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2369
2370 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002371 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002372 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2373
2374 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002375 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002376 ACTION_SUPPORT_DIAL_TOLLED = 487;
2377
Justin Klaassen19494272016-07-18 21:38:24 -07002378 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002379 // CATEGORY: SETTINGS
2380 NIGHT_DISPLAY_SETTINGS = 488;
2381
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002382 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002383 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002384 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2385
Jason Monk484fd362016-07-13 15:24:32 -04002386 // Settings launched from collapsed quick settings.
2387 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2388
Justin Klaassen19494272016-07-18 21:38:24 -07002389 // OPEN: QS Night Light tile shown
2390 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002391 // SUBTYPE: 0 is off, 1 is on
2392 // CATEGORY: QUICK_SETTINGS
2393 QS_NIGHT_DISPLAY = 491;
2394
Justin Klaassen19494272016-07-18 21:38:24 -07002395 // Night Light on
2396 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2397
Doris Ling3c00afb2016-07-19 17:04:21 -07002398 // System navigation key up.
2399 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2400
2401 // System navigation key down.
2402 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2403
Doris Ling6dd3e462016-08-04 13:17:27 -07002404 // OPEN: Settings > Display -> Ambient Display
2405 // CATEGORY: SETTINGS
2406 ACTION_AMBIENT_DISPLAY = 495;
2407
Adrian Roos159ef7b2016-02-25 11:58:32 -08002408 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2409
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002410 // ACTION: The lockscreen gets shown because the SIM card was removed
2411 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2412 // CATEGORY: GLOBAL_SYSTEM_UI
2413 // OS: N-MR2
2414 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2415
2416 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2417
Clara Bayarric17a5982016-04-15 12:26:47 +01002418 // ------- Begin N Keyboard Shortcuts Helper -----
2419 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002420 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002421
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002422 // OPEN: Print Preview screen
2423 // Package: Package of app where print job is from
2424 PRINT_PREVIEW = 501;
2425
2426 // OPEN: User expands full print job options shade in print preview.
2427 PRINT_JOB_OPTIONS = 502;
2428
2429 // OPEN: “All Printers” screen for selecting printer
2430 // Subtype: # of printers listed
2431 PRINT_ALL_PRINTERS = 503;
2432
2433 // OPEN: “Add Printers” screen for adding printers
2434 // Subtype: # of enabled print service listed
2435 PRINT_ADD_PRINTERS = 504;
2436
2437 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2438 // Package: Package of print service.
2439 ACTION_PRINT = 505;
2440
2441 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2442 // Count all ACTION_PRINTER_SELECT_ALL actions.
2443 // Package: Package of print service tied to printer
2444 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2445
2446 // ACTION: User selects a printer from the “All printers” screen.
2447 // Package: Package of print service tied to printer
2448 ACTION_PRINTER_SELECT_ALL = 507;
2449
2450 // ACTION: User changes an option for the print job from print preview.
2451 // Subtype: 1: Copies
2452 // 2: Color mode
2453 // 3: Duplex mode
2454 // 4: Media (==Paper) size
2455 // 5: Orientation
2456 // 6: Page range
2457 // Package: Package of print service tied to printer
2458 ACTION_PRINT_JOB_OPTIONS = 508;
2459
2460 // ACTION: User searches for printer from All Printers
2461 ACTION_PRINTER_SEARCH = 509;
2462
2463 // ACTION: User selects “Add print service” button from All Printers
2464 ACTION_PRINT_SERVICE_ADD = 510;
2465
2466 // ACTION: User Enables/Disables Print Service via any means.
2467 // Subtype: 0: Enabled
2468 // 1: Disabled
2469 ACTION_PRINT_SERVICE_TOGGLE = 511;
2470
2471 // ACTION: User installs print recommended print service
2472 // Package: Package of print service
2473 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2474
Doris Ling88a6b162016-08-08 16:17:43 -07002475 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2476 // SUBTYPE: sub settings classname
2477 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2478
Fan Zhang92c60382016-08-08 14:03:53 -07002479 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2480 USER_DICTIONARY_SETTINGS = 514;
2481
2482 // OPEN: Settings > Date & time > Select time zone
2483 ZONE_PICKER = 515;
2484
2485 // OPEN: Settings > Security > Device administrators
2486 DEVICE_ADMIN_SETTINGS = 516;
2487
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002488 // ACTION: Managed provisioning was launched to set this package as DPC app.
2489 // PACKAGE: DPC's package name.
2490 PROVISIONING_DPC_PACKAGE_NAME = 517;
2491
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002492 // ACTION: Managed provisioning triggered DPC installation.
2493 // PACKAGE: Package name of package which installed DPC.
2494 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2495
2496 // ACTION: Logged when provisioning activity finishes.
2497 // TIME: Indicates time taken by provisioning activity to finish in MS.
2498 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2499
2500 // ACTION: Logged when preprovisioning activity finishes.
2501 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2502 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2503
2504 // ACTION: Logged when encrypt device activity finishes.
2505 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2506 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2507
2508 // ACTION: Logged when web activity finishes.
2509 // TIME: Indicates total time taken by web activity to finish in MS.
2510 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2511
2512 // ACTION: Logged when trampoline activity finishes.
2513 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2514 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2515
2516 // ACTION: Logged when encryption activity finishes.
2517 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2518 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2519
2520 // ACTION: Logged when finalization activity finishes.
2521 // TIME: Indicates time taken by finalization activity to finish in MS.
2522 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002523
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002524 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002525 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002526
Fan Zhang95094182016-08-24 18:14:16 -07002527 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002528 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002529
2530 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002531 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002532
2533 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002534 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002535
2536 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002537 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002538
2539 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002540 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002541
Fan Zhangc1352ae2016-09-16 12:46:11 -07002542 // OPEN: Settings > Security > Use one lock dialog
2543 DIALOG_UNIFICATION_CONFIRMATION = 532;
2544
2545 // OPEN: Settings > Security > User Credential
2546 DIALOG_USER_CREDENTIAL = 533;
2547
2548 // OPEN: Settings > Accounts > Remove account
2549 DIALOG_REMOVE_USER = 534;
2550
2551 // OPEN: Settings > Accounts > Confirm auto sync dialog
2552 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2553
2554 // OPEN: Settings > Apps > Dialog for running service details
2555 DIALOG_RUNNIGN_SERVICE = 536;
2556
2557 // OPEN: Settings > Dialog for hiding home settings
2558 DIALOG_NO_HOME = 537;
2559
2560 // OPEN: Settings > Bluetooth > Rename this device
2561 DIALOG_BLUETOOTH_RENAME = 538;
2562
2563 // OPEN: Settings > Bluetooth > Paired device profile
2564 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2565
2566 // OPEN: Settings > Battery optimization > details for app
2567 DIALOG_HIGH_POWER_DETAILS = 540;
2568
2569 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2570 DIALOG_KEYBOARD_LAYOUT = 541;
2571
2572 // OPEN: Settings > Wifi > WPS Setup dialog
2573 DIALOG_WPS_SETUP = 542;
2574
2575 // OPEN: Settings > WIFI Scan permission dialog
2576 DIALOG_WIFI_SCAN_MODE = 543;
2577
2578 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2579 DIALOG_WIFI_SKIP = 544;
2580
2581 // OPEN: Settings > Wireless > VPN > Config dialog
2582 DIALOG_LEGACY_VPN_CONFIG = 545;
2583
2584 // OPEN: Settings > Wireless > VPN > Config dialog for app
2585 DIALOG_VPN_APP_CONFIG = 546;
2586
2587 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2588 DIALOG_VPN_CANNOT_CONNECT = 547;
2589
2590 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2591 DIALOG_VPN_REPLACE_EXISTING = 548;
2592
2593 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2594 DIALOG_BILLING_CYCLE = 549;
2595
2596 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2597 DIALOG_BILLING_BYTE_LIMIT = 550;
2598
2599 // OPEN: Settings > Billing cycle > turn on data limit dialog
2600 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2601
2602 // OPEN: Settings > Service > Turn off notification access dialog
2603 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2604
2605 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2606 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2607
2608 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2609 DIALOG_ZEN_ACCESS_GRANT = 554;
2610
2611 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2612 DIALOG_ZEN_ACCESS_REVOKE = 555;
2613
2614 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2615 DIALOG_ZEN_TIMEPICKER = 556;
2616
2617 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2618 DIALOG_SERVICE_ACCESS_WARNING = 557;
2619
2620 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2621 DIALOG_APP_INFO_ACTION = 558;
2622
2623 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2624 DIALOG_VOLUME_FORGET = 559;
2625
2626 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2627 DIALOG_VOLUME_SLOW_WARNING = 560;
2628
2629 // OPEN: Settings > Storage > Dialog for initializing a volume
2630 DIALOG_VOLUME_INIT = 561;
2631
2632 // OPEN: Settings > Storage > Dialog for unmounting a volume
2633 DIALOG_VOLUME_UNMOUNT = 562;
2634
2635 // OPEN: Settings > Storage > Dialog for renaming a volume
2636 DIALOG_VOLUME_RENAME = 563;
2637
2638 // OPEN: Settings > Storage > Dialog for clear cache
2639 DIALOG_STORAGE_CLEAR_CACHE = 564;
2640
2641 // OPEN: Settings > Storage > Dialog for system info
2642 DIALOG_STORAGE_SYSTEM_INFO = 565;
2643
2644 // OPEN: Settings > Storage > Dialog for other info
2645 DIALOG_STORAGE_OTHER_INFO = 566;
2646
2647 // OPEN: Settings > Storage > Dialog for user info
2648 DIALOG_STORAGE_USER_INFO = 567;
2649
2650 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2651 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2652
2653 // OPEN: Settings > Add fingerprint > Error dialog
2654 DIALOG_FINGERPINT_ERROR = 569;
2655
2656 // OPEN: Settings > Fingerprint > Rename or delete dialog
2657 DIALOG_FINGERPINT_EDIT = 570;
2658
2659 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2660 DIALOG_FINGERPINT_DELETE_LAST = 571;
2661
2662 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2663 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2664
2665 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2666 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2667
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002668 // OPEN: Settings > Proxy Selector error dialog
2669 DIALOG_PROXY_SELECTOR_ERROR = 574;
2670
2671 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2672 DIALOG_WIFI_P2P_DISCONNECT = 575;
2673
2674 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2675 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2676
2677 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2678 DIALOG_WIFI_P2P_RENAME = 577;
2679
2680 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2681 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2682
2683 // OPEN: Settings > APN > Restore default dialog
2684 DIALOG_APN_RESTORE_DEFAULT = 579;
2685
2686 // OPEN: Settings > Dream > When to dream dialog
2687 DIALOG_DREAM_START_DELAY = 580;
2688
2689 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2690 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2691
2692 // OPEN: Settings > Tether > AP setting dialog
2693 DIALOG_AP_SETTINGS = 582;
2694
2695 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2696 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2697
2698 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2699 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2700
2701 // OPEN: Settings > Account > Remove account dialog
2702 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2703
2704 // OPEN: Settings > Account > Remove account failed dialog
2705 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2706
2707 // OPEN: Settings > Account > Cannot do onetime sync dialog
2708 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2709
2710 // OPEN: Settings > Display > Night light > Set start time dialog
2711 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2712
2713 // OPEN: Settings > Display > Night light > Set end time dialog
2714 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2715
2716 // OPEN: Settings > User > Edit info dialog
2717 DIALOG_USER_EDIT = 590;
2718
2719 // OPEN: Settings > User > Confirm remove dialog
2720 DIALOG_USER_REMOVE = 591;
2721
2722 // OPEN: Settings > User > Enable calling dialog
2723 DIALOG_USER_ENABLE_CALLING = 592;
2724
2725 // OPEN: Settings > User > Enable calling and sms dialog
2726 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2727
2728 // OPEN: Settings > User > Cannot manage device message dialog
2729 DIALOG_USER_CANNOT_MANAGE = 594;
2730
2731 // OPEN: Settings > User > Add user dialog
2732 DIALOG_USER_ADD = 595;
2733
2734 // OPEN: Settings > User > Setup user dialog
2735 DIALOG_USER_SETUP = 596;
2736
2737 // OPEN: Settings > User > Setup profile dialog
2738 DIALOG_USER_SETUP_PROFILE = 597;
2739
2740 // OPEN: Settings > User > Choose user type dialog
2741 DIALOG_USER_CHOOSE_TYPE = 598;
2742
2743 // OPEN: Settings > User > Need lockscreen dialog
2744 DIALOG_USER_NEED_LOCKSCREEN = 599;
2745
2746 // OPEN: Settings > User > Confirm exit guest mode dialog
2747 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2748
2749 // OPEN: Settings > User > Edit user profile dialog
2750 DIALOG_USER_EDIT_PROFILE = 601;
2751
2752 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2753 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2754
2755 // OPEN: Settings > Wifi > Edit AP dialog
2756 DIALOG_WIFI_AP_EDIT = 603;
2757
2758 // OPEN: Settings > Wifi > PBC Config dialog
2759 DIALOG_WIFI_PBC = 604;
2760
2761 // OPEN: Settings > Wifi > Display pin dialog
2762 DIALOG_WIFI_PIN = 605;
2763
2764 // OPEN: Settings > Wifi > Write config to NFC dialog
2765 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002766 // OPEN: Settings > Date > Date picker dialog
2767 DIALOG_DATE_PICKER = 607;
2768
2769 // OPEN: Settings > Date > Time picker dialog
2770 DIALOG_TIME_PICKER = 608;
2771
2772 // OPEN: Settings > Wireless > Manage wireless plan dialog
2773 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002774
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002775 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002776 PROVISIONING_NETWORK_TYPE = 610;
2777
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002778 // ACTION: Logs action which triggered provisioning.
2779 PROVISIONING_ACTION = 611;
2780
Mahaver Chopraab282072016-10-06 19:19:23 +01002781 // ACTION: Logs extra passed by the dpc while provisioning.
2782 PROVISIONING_EXTRA = 612;
2783
Salvador Martinez64867c12016-10-14 15:25:09 -07002784 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2785 BLUETOOTH_DIALOG_FRAGMENT = 613;
2786
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002787 // ACTION: Logs provisioning started by zero touch.
2788 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2789
2790 // ACTION: Logs provisioning started by NFC bump.
2791 PROVISIONING_ENTRY_POINT_NFC = 615;
2792
2793 // ACTION: Logs provisioning started using QR code.
2794 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2795
2796 // ACTION: Logs provisioning started using adb.
2797 PROVISIONING_ENTRY_POINT_ADB = 617;
2798
2799 // ACTION: Logs provisioning started by trusted source.
2800 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2801
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002802 // ACTION: Logged when copy account task finishes.
2803 // TIME: Indicates time taken by copy account task to finish in MS.
2804 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2805
2806 // ACTION: Logged when create profile task finishes.
2807 // TIME: Indicates time taken by create profile task to finish in MS.
2808 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2809
2810 // ACTION: Logged when start profile task finishes.
2811 // TIME: Indicates time taken by start profile task to finish in MS.
2812 PROVISIONING_START_PROFILE_TASK_MS = 621;
2813
2814 // ACTION: Logged when download package task finishes.
2815 // TIME: Indicates time taken by download package task to finish in MS.
2816 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2817
2818 // ACTION: Logged when install package task finishes.
2819 // TIME: Indicates time taken by install package task to finish in MS.
2820 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2821
2822 // ACTION: User cancelled provisioning.
2823 PROVISIONING_CANCELLED = 624;
2824
2825 // ACTION: Logged when provisioning throws an error.
2826 PROVISIONING_ERROR = 625;
2827
2828 // ACTION: Logs the status of copying user account during provisioning.
2829 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2830
2831 // ACTION: Logs the end to end time taken by all provisioning tasks.
2832 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2833
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002834 // OPEN: Settings > Privacy
2835 // CATEGORY: SETTINGS
2836 // OS: O
2837 ENTERPRISE_PRIVACY_SETTINGS = 628;
2838
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002839 // ACTION: Longpress on a TextView.
2840 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2841 // CATEGORY: TEXT_CONTROLS
2842 // OS: O
2843 TEXT_LONGPRESS = 629;
2844
Chris Wren3824c392017-11-27 12:54:14 -05002845 // ACTION: An app requested an unknown permission
2846 // PACKAGE: The package name of the app requesting the permission
2847 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002848 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2849
Chris Wren3824c392017-11-27 12:54:14 -05002850 // ACTION: An app was granted an unknown permission
2851 // PACKAGE: The package name of the app that was granted the permission
2852 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002853 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2854
Chris Wren3824c392017-11-27 12:54:14 -05002855 // ACTION: An app requested an unknown permission and the request was denied
2856 // PACKAGE: The package name of the app requesting the permission
2857 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002858 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2859
Chris Wren3824c392017-11-27 12:54:14 -05002860 // ACTION: An unknown permission was revoked for an app
2861 // PACKAGE: The package name of the app the permission was revoked for
2862 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002863 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2864
Chris Wren3824c392017-11-27 12:54:14 -05002865 // ACTION: An app requested the permission READ_CALENDAR
2866 // PACKAGE: The package name of the app requesting the permission
2867 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002868 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2869
Chris Wren3824c392017-11-27 12:54:14 -05002870 // ACTION: An app was granted the permission READ_CALENDAR
2871 // PACKAGE: The package name of the app that was granted the permission
2872 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002873 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2874
Chris Wren3824c392017-11-27 12:54:14 -05002875 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2876 // PACKAGE: The package name of the app requesting the permission
2877 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002878 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2879
Chris Wren3824c392017-11-27 12:54:14 -05002880 // ACTION: The permission READ_CALENDAR was revoked for an app
2881 // PACKAGE: The package name of the app the permission was revoked for
2882 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002883 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2884
Chris Wren3824c392017-11-27 12:54:14 -05002885 // ACTION: An app requested the permission WRITE_CALENDAR
2886 // PACKAGE: The package name of the app requesting the permission
2887 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002888 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2889
Chris Wren3824c392017-11-27 12:54:14 -05002890 // ACTION: An app was granted the permission WRITE_CALENDAR
2891 // PACKAGE: The package name of the app that was granted the permission
2892 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002893 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2894
Chris Wren3824c392017-11-27 12:54:14 -05002895 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2896 // PACKAGE: The package name of the app requesting the permission
2897 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002898 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2899
Chris Wren3824c392017-11-27 12:54:14 -05002900 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2901 // PACKAGE: The package name of the app the permission was revoked for
2902 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002903 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2904
Chris Wren3824c392017-11-27 12:54:14 -05002905 // ACTION: An app requested the permission CAMERA
2906 // PACKAGE: The package name of the app requesting the permission
2907 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002908 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2909
Chris Wren3824c392017-11-27 12:54:14 -05002910 // ACTION: An app was granted the permission CAMERA
2911 // PACKAGE: The package name of the app that was granted the permission
2912 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002913 ACTION_PERMISSION_GRANT_CAMERA = 643;
2914
Chris Wren3824c392017-11-27 12:54:14 -05002915 // ACTION: An app requested the permission CAMERA and the request was denied
2916 // PACKAGE: The package name of the app requesting the permission
2917 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002918 ACTION_PERMISSION_DENIED_CAMERA = 644;
2919
Chris Wren3824c392017-11-27 12:54:14 -05002920 // ACTION: The permission CAMERA was revoked for an app
2921 // PACKAGE: The package name of the app the permission was revoked for
2922 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002923 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2924
Chris Wren3824c392017-11-27 12:54:14 -05002925 // ACTION: An app requested the permission READ_CONTACTS
2926 // PACKAGE: The package name of the app requesting the permission
2927 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002928 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2929
Chris Wren3824c392017-11-27 12:54:14 -05002930 // ACTION: An app was granted the permission READ_CONTACTS
2931 // PACKAGE: The package name of the app that was granted the permission
2932 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002933 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2934
Chris Wren3824c392017-11-27 12:54:14 -05002935 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2936 // PACKAGE: The package name of the app requesting the permission
2937 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002938 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2939
Chris Wren3824c392017-11-27 12:54:14 -05002940 // ACTION: The permission READ_CONTACTS was revoked for an app
2941 // PACKAGE: The package name of the app the permission was revoked for
2942 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002943 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2944
Chris Wren3824c392017-11-27 12:54:14 -05002945 // ACTION: An app requested the permission WRITE_CONTACTS
2946 // PACKAGE: The package name of the app requesting the permission
2947 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002948 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2949
Chris Wren3824c392017-11-27 12:54:14 -05002950 // ACTION: An app was granted the permission WRITE_CONTACTS
2951 // PACKAGE: The package name of the app that was granted the permission
2952 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002953 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2954
Chris Wren3824c392017-11-27 12:54:14 -05002955 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2956 // PACKAGE: The package name of the app requesting the permission
2957 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002958 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2959
Chris Wren3824c392017-11-27 12:54:14 -05002960 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2961 // PACKAGE: The package name of the app the permission was revoked for
2962 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002963 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2964
Chris Wren3824c392017-11-27 12:54:14 -05002965 // ACTION: An app requested the permission GET_ACCOUNTS
2966 // PACKAGE: The package name of the app requesting the permission
2967 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002968 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2969
Chris Wren3824c392017-11-27 12:54:14 -05002970 // ACTION: An app was granted the permission GET_ACCOUNTS
2971 // PACKAGE: The package name of the app that was granted the permission
2972 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002973 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2974
Chris Wren3824c392017-11-27 12:54:14 -05002975 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2976 // PACKAGE: The package name of the app requesting the permission
2977 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002978 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2979
Chris Wren3824c392017-11-27 12:54:14 -05002980 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2981 // PACKAGE: The package name of the app the permission was revoked for
2982 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002983 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2984
Chris Wren3824c392017-11-27 12:54:14 -05002985 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2986 // PACKAGE: The package name of the app requesting the permission
2987 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002988 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2989
Chris Wren3824c392017-11-27 12:54:14 -05002990 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2991 // PACKAGE: The package name of the app that was granted the permission
2992 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002993 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2994
Chris Wren3824c392017-11-27 12:54:14 -05002995 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2996 // PACKAGE: The package name of the app requesting the permission
2997 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002998 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2999
Chris Wren3824c392017-11-27 12:54:14 -05003000 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
3001 // PACKAGE: The package name of the app the permission was revoked for
3002 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003003 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
3004
Chris Wren3824c392017-11-27 12:54:14 -05003005 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
3006 // PACKAGE: The package name of the app requesting the permission
3007 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003008 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3009
Chris Wren3824c392017-11-27 12:54:14 -05003010 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3011 // PACKAGE: The package name of the app that was granted the permission
3012 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003013 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3014
Chris Wren3824c392017-11-27 12:54:14 -05003015 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3016 // PACKAGE: The package name of the app requesting the permission
3017 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003018 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3019
Chris Wren3824c392017-11-27 12:54:14 -05003020 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3021 // PACKAGE: The package name of the app the permission was revoked for
3022 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003023 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3024
Chris Wren3824c392017-11-27 12:54:14 -05003025 // ACTION: An app requested the permission RECORD_AUDIO
3026 // PACKAGE: The package name of the app requesting the permission
3027 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003028 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3029
Chris Wren3824c392017-11-27 12:54:14 -05003030 // ACTION: An app was granted the permission RECORD_AUDIO
3031 // PACKAGE: The package name of the app that was granted the permission
3032 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003033 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3034
Chris Wren3824c392017-11-27 12:54:14 -05003035 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3036 // PACKAGE: The package name of the app requesting the permission
3037 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003038 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3039
Chris Wren3824c392017-11-27 12:54:14 -05003040 // ACTION: The permission RECORD_AUDIO was revoked for an app
3041 // PACKAGE: The package name of the app the permission was revoked for
3042 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003043 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3044
Chris Wren3824c392017-11-27 12:54:14 -05003045 // ACTION: An app requested the permission READ_PHONE_STATE
3046 // PACKAGE: The package name of the app requesting the permission
3047 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003048 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3049
Chris Wren3824c392017-11-27 12:54:14 -05003050 // ACTION: An app was granted the permission READ_PHONE_STATE
3051 // PACKAGE: The package name of the app that was granted the permission
3052 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003053 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3054
Chris Wren3824c392017-11-27 12:54:14 -05003055 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3056 // PACKAGE: The package name of the app requesting the permission
3057 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003058 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3059
Chris Wren3824c392017-11-27 12:54:14 -05003060 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3061 // PACKAGE: The package name of the app the permission was revoked for
3062 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003063 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3064
Chris Wren3824c392017-11-27 12:54:14 -05003065 // ACTION: An app requested the permission CALL_PHONE
3066 // PACKAGE: The package name of the app requesting the permission
3067 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003068 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3069
Chris Wren3824c392017-11-27 12:54:14 -05003070 // ACTION: An app was granted the permission CALL_PHONE
3071 // PACKAGE: The package name of the app that was granted the permission
3072 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003073 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3074
Chris Wren3824c392017-11-27 12:54:14 -05003075 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3076 // PACKAGE: The package name of the app requesting the permission
3077 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003078 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3079
Chris Wren3824c392017-11-27 12:54:14 -05003080 // ACTION: The permission CALL_PHONE was revoked for an app
3081 // PACKAGE: The package name of the app the permission was revoked for
3082 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003083 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3084
Chris Wren3824c392017-11-27 12:54:14 -05003085 // ACTION: An app requested the permission READ_CALL_LOG
3086 // PACKAGE: The package name of the app requesting the permission
3087 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003088 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3089
Chris Wren3824c392017-11-27 12:54:14 -05003090 // ACTION: An app was granted the permission READ_CALL_LOG
3091 // PACKAGE: The package name of the app that was granted the permission
3092 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003093 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3094
Chris Wren3824c392017-11-27 12:54:14 -05003095 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3096 // PACKAGE: The package name of the app requesting the permission
3097 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003098 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3099
Chris Wren3824c392017-11-27 12:54:14 -05003100 // ACTION: The permission READ_CALL_LOG was revoked for an app
3101 // PACKAGE: The package name of the app the permission was revoked for
3102 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003103 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3104
Chris Wren3824c392017-11-27 12:54:14 -05003105 // ACTION: An app requested the permission WRITE_CALL_LOG
3106 // PACKAGE: The package name of the app requesting the permission
3107 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003108 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3109
Chris Wren3824c392017-11-27 12:54:14 -05003110 // ACTION: An app was granted the permission WRITE_CALL_LOG
3111 // PACKAGE: The package name of the app that was granted the permission
3112 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003113 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3114
Chris Wren3824c392017-11-27 12:54:14 -05003115 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3116 // PACKAGE: The package name of the app requesting the permission
3117 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003118 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3119
Chris Wren3824c392017-11-27 12:54:14 -05003120 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3121 // PACKAGE: The package name of the app the permission was revoked for
3122 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003123 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3124
Chris Wren3824c392017-11-27 12:54:14 -05003125 // ACTION: An app requested the permission ADD_VOICEMAIL
3126 // PACKAGE: The package name of the app requesting the permission
3127 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003128 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3129
Chris Wren3824c392017-11-27 12:54:14 -05003130 // ACTION: An app was granted the permission ADD_VOICEMAIL
3131 // PACKAGE: The package name of the app that was granted the permission
3132 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003133 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3134
Chris Wren3824c392017-11-27 12:54:14 -05003135 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3136 // PACKAGE: The package name of the app requesting the permission
3137 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003138 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3139
Chris Wren3824c392017-11-27 12:54:14 -05003140 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3141 // PACKAGE: The package name of the app the permission was revoked for
3142 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003143 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3144
Chris Wren3824c392017-11-27 12:54:14 -05003145 // ACTION: An app requested the permission USE_SIP
3146 // PACKAGE: The package name of the app requesting the permission
3147 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003148 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3149
Chris Wren3824c392017-11-27 12:54:14 -05003150 // ACTION: An app was granted the permission USE_SIP
3151 // PACKAGE: The package name of the app that was granted the permission
3152 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003153 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3154
Chris Wren3824c392017-11-27 12:54:14 -05003155 // ACTION: An app requested the permission USE_SIP and the request was denied
3156 // PACKAGE: The package name of the app requesting the permission
3157 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003158 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3159
Chris Wren3824c392017-11-27 12:54:14 -05003160 // ACTION: The permission USE_SIP was revoked for an app
3161 // PACKAGE: The package name of the app the permission was revoked for
3162 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003163 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3164
Chris Wren3824c392017-11-27 12:54:14 -05003165 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3166 // PACKAGE: The package name of the app requesting the permission
3167 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003168 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3169
Chris Wren3824c392017-11-27 12:54:14 -05003170 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3171 // PACKAGE: The package name of the app that was granted the permission
3172 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003173 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3174
Chris Wren3824c392017-11-27 12:54:14 -05003175 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3176 // PACKAGE: The package name of the app requesting the permission
3177 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003178 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3179
Chris Wren3824c392017-11-27 12:54:14 -05003180 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3181 // PACKAGE: The package name of the app the permission was revoked for
3182 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003183 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3184
Chris Wren3824c392017-11-27 12:54:14 -05003185 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3186 // PACKAGE: The package name of the app requesting the permission
3187 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003188 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3189
Chris Wren3824c392017-11-27 12:54:14 -05003190 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3191 // PACKAGE: The package name of the app that was granted the permission
3192 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003193 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3194
Chris Wren3824c392017-11-27 12:54:14 -05003195 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3196 // PACKAGE: The package name of the app requesting the permission
3197 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003198 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3199
Chris Wren3824c392017-11-27 12:54:14 -05003200 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3201 // PACKAGE: The package name of the app the permission was revoked for
3202 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003203 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3204
Chris Wren3824c392017-11-27 12:54:14 -05003205 // ACTION: An app requested the permission BODY_SENSORS
3206 // PACKAGE: The package name of the app requesting the permission
3207 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003208 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3209
Chris Wren3824c392017-11-27 12:54:14 -05003210 // ACTION: An app was granted the permission BODY_SENSORS
3211 // PACKAGE: The package name of the app that was granted the permission
3212 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003213 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3214
Chris Wren3824c392017-11-27 12:54:14 -05003215 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3216 // PACKAGE: The package name of the app requesting the permission
3217 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003218 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3219
Chris Wren3824c392017-11-27 12:54:14 -05003220 // ACTION: The permission BODY_SENSORS was revoked for an app
3221 // PACKAGE: The package name of the app the permission was revoked for
3222 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003223 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3224
Chris Wren3824c392017-11-27 12:54:14 -05003225 // ACTION: An app requested the permission SEND_SMS
3226 // PACKAGE: The package name of the app requesting the permission
3227 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003228 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3229
Chris Wren3824c392017-11-27 12:54:14 -05003230 // ACTION: An app was granted the permission SEND_SMS
3231 // PACKAGE: The package name of the app that was granted the permission
3232 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003233 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3234
Chris Wren3824c392017-11-27 12:54:14 -05003235 // ACTION: An app requested the permission SEND_SMS and the request was denied
3236 // PACKAGE: The package name of the app requesting the permission
3237 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003238 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3239
Chris Wren3824c392017-11-27 12:54:14 -05003240 // ACTION: The permission SEND_SMS was revoked for an app
3241 // PACKAGE: The package name of the app the permission was revoked for
3242 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003243 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3244
Chris Wren3824c392017-11-27 12:54:14 -05003245 // ACTION: An app requested the permission RECEIVE_SMS
3246 // PACKAGE: The package name of the app requesting the permission
3247 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003248 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3249
Chris Wren3824c392017-11-27 12:54:14 -05003250 // ACTION: An app was granted the permission RECEIVE_SMS
3251 // PACKAGE: The package name of the app that was granted the permission
3252 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003253 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3254
Chris Wren3824c392017-11-27 12:54:14 -05003255 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3256 // PACKAGE: The package name of the app requesting the permission
3257 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003258 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3259
Chris Wren3824c392017-11-27 12:54:14 -05003260 // ACTION: The permission RECEIVE_SMS was revoked for an app
3261 // PACKAGE: The package name of the app the permission was revoked for
3262 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003263 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3264
Chris Wren3824c392017-11-27 12:54:14 -05003265 // ACTION: An app requested the permission READ_SMS
3266 // PACKAGE: The package name of the app requesting the permission
3267 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003268 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3269
Chris Wren3824c392017-11-27 12:54:14 -05003270 // ACTION: An app was granted the permission READ_SMS
3271 // PACKAGE: The package name of the app that was granted the permission
3272 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003273 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3274
Chris Wren3824c392017-11-27 12:54:14 -05003275 // ACTION: An app requested the permission READ_SMS and the request was denied
3276 // PACKAGE: The package name of the app requesting the permission
3277 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003278 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3279
Chris Wren3824c392017-11-27 12:54:14 -05003280 // ACTION: The permission READ_SMS was revoked for an app
3281 // PACKAGE: The package name of the app the permission was revoked for
3282 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003283 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3284
Chris Wren3824c392017-11-27 12:54:14 -05003285 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3286 // PACKAGE: The package name of the app requesting the permission
3287 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003288 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3289
Chris Wren3824c392017-11-27 12:54:14 -05003290 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3291 // PACKAGE: The package name of the app that was granted the permission
3292 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003293 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3294
Chris Wren3824c392017-11-27 12:54:14 -05003295 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3296 // PACKAGE: The package name of the app requesting the permission
3297 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003298 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3299
Chris Wren3824c392017-11-27 12:54:14 -05003300 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3301 // PACKAGE: The package name of the app the permission was revoked for
3302 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003303 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3304
Chris Wren3824c392017-11-27 12:54:14 -05003305 // ACTION: An app requested the permission RECEIVE_MMS
3306 // PACKAGE: The package name of the app requesting the permission
3307 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003308 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3309
Chris Wren3824c392017-11-27 12:54:14 -05003310 // ACTION: An app was granted the permission RECEIVE_MMS
3311 // PACKAGE: The package name of the app that was granted the permission
3312 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003313 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3314
Chris Wren3824c392017-11-27 12:54:14 -05003315 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3316 // PACKAGE: The package name of the app requesting the permission
3317 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003318 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3319
Chris Wren3824c392017-11-27 12:54:14 -05003320 // ACTION: The permission RECEIVE_MMS was revoked for an app
3321 // PACKAGE: The package name of the app the permission was revoked for
3322 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003323 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3324
Chris Wren3824c392017-11-27 12:54:14 -05003325 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3326 // PACKAGE: The package name of the app requesting the permission
3327 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003328 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3329
Chris Wren3824c392017-11-27 12:54:14 -05003330 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3331 // PACKAGE: The package name of the app that was granted the permission
3332 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003333 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3334
Chris Wren3824c392017-11-27 12:54:14 -05003335 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3336 // PACKAGE: The package name of the app requesting the permission
3337 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003338 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3339
Chris Wren3824c392017-11-27 12:54:14 -05003340 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3341 // PACKAGE: The package name of the app the permission was revoked for
3342 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003343 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3344
Chris Wren3824c392017-11-27 12:54:14 -05003345 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3346 // PACKAGE: The package name of the app requesting the permission
3347 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003348 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3349
Chris Wren3824c392017-11-27 12:54:14 -05003350 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3351 // PACKAGE: The package name of the app that was granted the permission
3352 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003353 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3354
Chris Wren3824c392017-11-27 12:54:14 -05003355 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3356 // PACKAGE: The package name of the app requesting the permission
3357 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003358 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3359
Chris Wren3824c392017-11-27 12:54:14 -05003360 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3361 // PACKAGE: The package name of the app the permission was revoked for
3362 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003363 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3364
Mahaverfa6566e2016-11-29 21:08:14 +00003365 // ACTION: Logged when a provisioning session has started
3366 PROVISIONING_SESSION_STARTED = 734;
3367
3368 // ACTION: Logged when a provisioning session has completed
3369 PROVISIONING_SESSION_COMPLETED = 735;
3370
Chris Wren3824c392017-11-27 12:54:14 -05003371 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3372 // PACKAGE: The package name of the app requesting the permission
3373 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003374 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003375
Chris Wren3824c392017-11-27 12:54:14 -05003376 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3377 // PACKAGE: The package name of the app that was granted the permission
3378 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003379 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003380
Chris Wren3824c392017-11-27 12:54:14 -05003381 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3382 // PACKAGE: The package name of the app requesting the permission
3383 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003384 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003385
Chris Wren3824c392017-11-27 12:54:14 -05003386 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3387 // PACKAGE: The package name of the app the permission was revoked for
3388 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003389 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003390
Santos Cordon3107d292016-09-20 15:50:35 -07003391 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3392 // SUBTYPE: slider value
3393 // CATEGORY: QUICK_SETTINGS
3394 // OS: 6.0
3395 ACTION_BRIGHTNESS_FOR_VR = 498;
3396
Hugo Benichie1cbf152016-12-08 09:36:52 +09003397 // ACTION: A captive portal was detected during network validation
3398 // CATEGORY: NOTIFICATION
3399 // OS: N-MR2
3400 NOTIFICATION_NETWORK_SIGN_IN = 740;
3401
3402 // ACTION: An unvalidated network without Internet was selected by the user
3403 // CATEGORY: NOTIFICATION
3404 // OS: N-MR2
3405 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3406
3407 // ACTION: A validated network failed revalidation and lost Internet access
3408 // CATEGORY: NOTIFICATION
3409 // OS: N-MR2
3410 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3411
3412 // ACTION: The system default network switched to a different network
3413 // CATEGORY: NOTIFICATION
3414 // OS: N-MR2
3415 NOTIFICATION_NETWORK_SWITCH = 743;
3416
Fan Zhang074c4cb2016-12-21 12:10:33 -08003417 // OPEN: Settings > System
3418 SETTINGS_SYSTEM_CATEGORY = 744;
3419
3420 // OPEN: Settings > Storage
3421 SETTINGS_STORAGE_CATEGORY = 745;
3422
3423 // OPEN: Settings > Network & Internet
3424 SETTINGS_NETWORK_CATEGORY = 746;
3425
3426 // OPEN: Settings > Connected Device
3427 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3428
3429 // OPEN: Settings > App & Notification
3430 SETTINGS_APP_NOTIF_CATEGORY = 748;
3431
3432 // OPEN: Settings > System > Input & Gesture
3433 SETTINGS_INPUT_CATEGORY = 749;
3434
3435 // OPEN: Settings > System > Language & Region
3436 SETTINGS_LANGUAGE_CATEGORY = 750;
3437
3438 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3439 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3440
3441 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3442 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3443
3444 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3445 SETTINGS_GESTURE_PICKUP = 753;
3446
3447 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3448 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3449
3450 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3451 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3452
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003453 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3454 // CATEGORY: Settings
3455 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3456
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003457 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003458 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003459 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3460 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3461 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003462
Salvador Martinezc43ab062016-12-21 11:09:11 -08003463 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3464 // user accepted
3465 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003466
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003467 // Enclosing category for group of APP_TRANSITION_FOO events,
3468 // logged when we execute an app transition.
3469 APP_TRANSITION = 761;
3470
Fan Zhang945deea2017-01-11 16:37:49 -08003471 // ACTION: User leaves Settings search UI without entering any query.
3472 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3473
3474 // ACTION: Clicking on any search result in Settings.
3475 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003476
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003477 // ACTION: Allow Battery optimization for an app
3478 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3479
3480 // ACTION: Deny Battery optimization for an app
3481 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3482
3483 // ACTION: Enable Device Admin app
3484 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3485
3486 // ACTION: Disable Device Admin app
3487 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3488
3489 // ACTION: Allow "Do Not Disturb access" for an app
3490 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3491
3492 // ACTION: Deny "Do Not Disturb access" for an app
3493 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3494
3495 // ACTION: Allow "Draw over other apps" for an app
3496 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3497
Christine Franks47175c32017-03-14 10:21:25 -07003498 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003499 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3500
3501 // ACTION: Allow "VR helper services" for an app
3502 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3503
3504 // ACTION: Deny "VR helper services" for an app
3505 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3506
3507 // ACTION: Allow "Modify system settings" for an app
3508 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3509
3510 // ACTION: Deny "Modify system settings" for an app
3511 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3512
3513 // ACTION: Allow "Notification access" for an app
3514 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3515
3516 // ACTION: Deny "Notification access" for an app
3517 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3518
3519 // ACTION: "Premium SMS access" for an app - "ask user" option
3520 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3521
3522 // ACTION: "Premium SMS access" for an app - "never allow" option
3523 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3524
3525 // ACTION: "Premium SMS access" for an app - "always allow" option
3526 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3527
3528 // ACTION: Allow "Unrestricted data access" for an app
3529 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3530
3531 // ACTION: Deny "Unrestricted data access" for an app
3532 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3533
3534 // ACTION: Allow "Usage access" for an app
3535 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3536
3537 // ACTION: Deny "Usage access" for an app
3538 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3539
Fan Zhangad5dacc2017-01-18 14:18:54 -08003540 // OPEN: Settings > Apps > Default Apps > Default browser
3541 DEFAULT_BROWSER_PICKER = 785;
3542
3543 // OPEN: Settings > Apps > Default Apps > Default emergency app
3544 DEFAULT_EMERGENCY_APP_PICKER = 786;
3545
3546 // OPEN: Settings > Apps > Default Apps > Default home
3547 DEFAULT_HOME_PICKER = 787;
3548
3549 // OPEN: Settings > Apps > Default Apps > Default phone
3550 DEFAULT_PHONE_PICKER = 788;
3551
3552 // OPEN: Settings > Apps > Default Apps > Default sms
3553 DEFAULT_SMS_PICKER = 789;
3554
3555 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3556 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3557
3558 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3559 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3560
Jason Long1b51da62017-01-24 11:35:31 -08003561 // OPEN: Settings > Apps > Default Apps > Default autofill app
3562 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003563
Chris Wren26ca65d2016-11-29 10:43:28 -05003564 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003565 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003566 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3567 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3568 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3569 NOTIFICATION_ID = 796;
3570 NOTIFICATION_TAG = 797;
3571 NOTIFICATION_SHADE_INDEX = 798;
3572 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003573
Anas Karbilaf7648f42016-12-11 00:55:02 +01003574 // OPEN: QS NFC tile shown
3575 // ACTION: QS NFC tile tapped
3576 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003577 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003578
Chris Wren26ca65d2016-11-29 10:43:28 -05003579 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003580 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003581 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3582 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3583 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3584 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3585 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3586 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3587
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003588 // ACTION: "Force stop" action on an app
3589 ACTION_APP_FORCE_STOP = 807;
3590
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003591 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3592 // CATEGORY: SETTINGS
3593 // OS: 8.0
3594 MANAGE_EXTERNAL_SOURCES = 808;
3595
Mahaver6cd47162017-01-23 09:59:33 +00003596 // ACTION: Logged when terms activity finishes.
3597 // TIME: Indicates time taken by terms activity to finish in MS.
3598 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3599
3600 // Indicates number of terms displayed on the terms screen.
3601 PROVISIONING_TERMS_COUNT = 810;
3602
3603 // Indicates number of terms read on the terms screen.
3604 PROVISIONING_TERMS_READ = 811;
3605
Winson Chung59fda9e2017-01-20 16:14:51 -08003606 // Logs that the user has edited the picture-in-picture settings.
3607 // CATEGORY: SETTINGS
3608 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3609
Winson Chungf4ac0632017-03-17 12:34:12 -07003610 // ACTION: Allow "Enable picture-in-picture" for an app
3611 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003612
Winson Chungf4ac0632017-03-17 12:34:12 -07003613 // ACTION: Deny "Enable picture-in-picture" for an app
3614 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003615
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003616 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3617 // CATEGORY: SETTINGS
3618 // OS: 8.0
3619 TTS_SLIDERS = 815;
3620
Jason Monk524fb402017-01-25 10:33:31 -05003621 // ACTION: Settings -> Display -> Theme
3622 ACTION_THEME = 816;
3623
chchaob8e253a2017-01-25 12:12:09 -08003624 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3625 // ACTION: Select to Speak configuration is chosen
3626 // SUBTYPE: 0 is off, 1 is on
3627 // CATEGORY: SETTINGS
3628 // OS: N
3629 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3630
Anton Philippov95a553e2017-01-27 00:08:24 +00003631 // OPEN: Settings > System > Backup
3632 // CATEGORY: SETTINGS
3633 // OS: O
3634 BACKUP_SETTINGS = 818;
3635
Winson Chung14fbe142016-12-19 16:18:24 -08003636 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003637 // VALUE: true if it was entered while hiding as a result of moving to
3638 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003639 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3640
3641 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3642 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3643 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3644
3645 // ACTION: The activity currently in picture-in-picture was minimized
3646 // VALUE: True if the PiP was minimized, false otherwise
3647 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3648
3649 // ACTION: Picture-in-picture was dismissed via the dismiss button
3650 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3651 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3652
3653 // ACTION: The visibility of the picture-in-picture meny
3654 // VALUE: Whether or not the menu is visible
3655 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3656
3657 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3658 // logged when the aspect ratio changes
3659 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3660
3661 // The current aspect ratio of the PiP, logged when it changes.
3662 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3663
Chris Wren27a52fa2017-02-01 14:21:43 -05003664 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3665 // CATEGORY: GLOBAL_SYSTEM_UI
3666 // OS: O
3667 FIELD_GESTURE_LENGTH = 826;
3668
3669 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3670 // CATEGORY: GLOBAL_SYSTEM_UI
3671 // OS: O
3672 FIELD_GESTURE_VELOCITY = 827;
3673
Christine Franks27fde392017-02-07 10:21:55 -08003674 // OPEN: Carrier demo mode password dialog
3675 CARRIER_DEMO_MODE_PASSWORD = 828;
3676
Fan Zhang70967f32017-02-13 16:02:24 -08003677 // ACTION: Create a Settings shortcut item.
3678 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3679
3680 // ACTION: A tile in Settings information architecture is clicked
3681 ACTION_SETTINGS_TILE_CLICK = 830;
3682
Julia Reynolds520df6e2017-02-13 09:05:10 -05003683 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3684 // updated
3685 // CATEGORY: NOTIFICATION
3686 // OS: O
3687 NOTIFICATION_SNOOZED = 831;
3688
3689 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3690 // OS: O
3691 NOTIFICATION_SNOOZED_CRITERIA = 832;
3692
Fan Zhang65899432017-02-14 13:36:53 -08003693 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003694 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003695 FIELD_CONTEXT = 833;
3696
Fan Zhangd95dcb42017-02-14 13:48:09 -08003697 // ACTION: Settings advanced button is expanded
3698 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3699
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003700 // ACTION: Logs the number of times the saved network evaluator was used to
3701 // recommend a wifi network
3702 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3703
3704 // ACTION: Logs the number of times the recommended network evaluator was
3705 // used to recommend a wifi network
3706 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3707
3708 // ACTION: Logs the number of times a recommended network was resulted in a
3709 // successful connection
3710 // VALUE: true if the connection was successful, false if the connection failed
3711 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3712
Daniel Nishic581bfc2017-02-08 10:18:19 -08003713 // OPEN: Settings > Storage > Games
3714 // CATEGORY: SETTINGS
3715 // OS: O
3716 APPLICATIONS_STORAGE_GAMES = 838;
3717
3718 // OPEN: Settings > Storage > Audio and Music
3719 // CATEGORY: SETTINGS
3720 // OS: O
3721 APPLICATIONS_STORAGE_MUSIC = 839;
3722
3723 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3724 // CATEGORY: SETTINGS
3725 // OS: O
3726 STORAGE_FREE_UP_SPACE_NOW = 840;
3727
3728 // ACTION: Settings > Storage > Files to open the File Manager
3729 // CATEGORY: SETTINGS
3730 // OS: O
3731 STORAGE_FILES = 841;
3732
Fan Zhangb1d49222017-02-15 17:12:58 -08003733 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003734 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003735
Fan Zhang7f2cace2017-02-17 12:05:48 -08003736 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3737 DEFAULT_ASSIST_PICKER = 843;
3738
3739 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3740 DEFAULT_VOICE_INPUT_PICKER = 844;
3741
Daniel Nishi4058a842017-02-21 17:11:35 -08003742 // OPEN: Settings > Storage > [Profile]
3743 SETTINGS_STORAGE_PROFILE = 845;
3744
Doris Lingedb84c32017-02-23 10:56:01 -08003745 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3746 // CATEGORY: SETTINGS
3747 // OS: O
3748 ENCRYPTION_AND_CREDENTIAL = 846;
3749
Fan Zhangb66e5422017-02-24 14:37:45 -08003750 // ACTION: Settings > About device > Build number
3751 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3752
3753 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3754 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3755
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003756 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3757 // CATEGORY: SETTINGS
3758 // OS: O
3759 WIFI_NETWORK_DETAILS = 849;
3760
jackqdyuleia2a14342017-02-28 16:20:48 -08003761 // ACTION: Settings > Battery > Menu > Usage Alerts
3762 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3763
3764 // ACTION: Settings > Battery > Menu > Optimization
3765 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3766
3767 // ACTION: Settings > Battery > Menu > Apps Toggle
3768 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3769
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003770 // ACTION: Settings > Any preference is changed
3771 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3772
3773 // FIELD: The name of preference when it is changed in Settings
3774 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3775
3776 // FIELD: The new value of preference when it is changed in Settings
3777 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3778
Julia Reynoldsd373d782017-03-03 13:32:57 -05003779 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3780 // channel updated
3781 // PACKAGE: the package the channel belongs too
3782 // CATEGORY: NOTIFICATION
3783 // OS: O
3784 ACTION_NOTIFICATION_CHANNEL = 856;
3785
3786 // Tagged data for notification channel. String.
3787 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3788
3789 // Tagged data for notification channel. int.
3790 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3791
3792 // OPEN: Notification channel group created.
3793 // PACKAGE: the package the group belongs to
3794 // CATEGORY: NOTIFICATION
3795 // OS: O
3796 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3797
3798 // Tagged data for notification channel group. String.
3799 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3800
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003801 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3802 // CATEGORY: SETTINGS
3803 // OS: O
3804 SETTINGS_NETWORK_SCORER = 861;
3805
Fan Zhang99861312017-03-07 14:32:38 -08003806 // OPEN: Settings > About device > Model > Hardware info dialog
3807 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3808
mariagpuyol0f5512e2017-03-01 12:09:56 -08003809 // ACTION: Checks whether a contact's phone still exists
3810 // Value 0: It doesn't exist anymore
3811 // Value 1: It still exists
3812 // Value 2: A SecurityException was thrown
3813 // CATEGORY: SETTINGS
3814 // OS: N
3815 ACTION_PHONE_EXISTS = 863;
3816
3817 // ACTION: Retrieves a contact from CP2
3818 // Value 0: Contact retrieved without issues
3819 // Value 1: An IllegalArgumentException was thrown
3820 // CATEGORY: SETTINGS
3821 // OS: N
3822 ACTION_GET_CONTACT = 864;
3823
Chris Wren4d6b54d2017-04-27 16:56:54 -04003824 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003825 // internal platform metrics use.
3826 RESERVED_FOR_LOGBUILDER_PID = 865;
3827
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003828 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3829 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3830
3831 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3832 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3833
3834 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3835 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3836
3837 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3838 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3839
3840 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3841 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3842
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003843 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003844 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003845
Fan Zhang082d21c2017-03-13 15:25:54 -07003846 // ACTION: Settings > App detail > Uninstall
3847 ACTION_SETTINGS_UNINSTALL_APP = 872;
3848
3849 // ACTION: Settings > App detail > Uninstall Device admin app
3850 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3851
3852 // ACTION: Settings > App detail > Disable app
3853 ACTION_SETTINGS_DISABLE_APP = 874;
3854
3855 // ACTION: Settings > App detail > Enable app
3856 ACTION_SETTINGS_ENABLE_APP = 875;
3857
3858 // ACTION: Settings > App detail > Clear data
3859 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3860
3861 // ACTION: Settings > App detail > Clear cache
3862 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3863
3864 // ACTION: Clicking on any search result in Settings.
3865 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3866
3867 // FIELD: Settings inline search result name
3868 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3869
3870 // FIELD: Settings inline search result value
3871 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3872
Fan Zhang53797932017-03-13 17:46:24 -07003873 // ACTION: Settings > Search > Click saved queries
3874 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3875
Doris Lingbf8d9de2017-03-15 11:52:50 -07003876 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3877 // CATEGORY: SETTINGS
3878 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3879
Chris Wren3824c392017-11-27 12:54:14 -05003880 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3881 // PACKAGE: The package name of the app requesting the permission
3882 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003883 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3884
Chris Wren3824c392017-11-27 12:54:14 -05003885 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3886 // PACKAGE: The package name of the app that was granted the permission
3887 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003888 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3889
Chris Wren3824c392017-11-27 12:54:14 -05003890 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3891 // PACKAGE: The package name of the app requesting the permission
3892 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003893 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3894
Chris Wren3824c392017-11-27 12:54:14 -05003895 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3896 // PACKAGE: The package name of the app the permission was revoked for
3897 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003898 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3899
Chris Wren3824c392017-11-27 12:54:14 -05003900 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3901 // PACKAGE: The package name of the app requesting the permission
3902 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003903 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3904
Chris Wren3824c392017-11-27 12:54:14 -05003905 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3906 // PACKAGE: The package name of the app that was granted the permission
3907 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003908 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3909
Chris Wren3824c392017-11-27 12:54:14 -05003910 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3911 // PACKAGE: The package name of the app requesting the permission
3912 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003913 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3914
Chris Wren3824c392017-11-27 12:54:14 -05003915 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3916 // PACKAGE: The package name of the app the permission was revoked for
3917 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003918 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3919
Chris Wren3824c392017-11-27 12:54:14 -05003920 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3921 // PACKAGE: The package name of the app requesting the permission
3922 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003923 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3924
Chris Wren3824c392017-11-27 12:54:14 -05003925 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3926 // PACKAGE: The package name of the app that was granted the permission
3927 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003928 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3929
Chris Wren3824c392017-11-27 12:54:14 -05003930 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3931 // PACKAGE: The package name of the app requesting the permission
3932 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003933 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3934
Chris Wren3824c392017-11-27 12:54:14 -05003935 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3936 // PACKAGE: The package name of the app the permission was revoked for
3937 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003938 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3939
Chris Wren3824c392017-11-27 12:54:14 -05003940 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3941 // PACKAGE: The package name of the app requesting the permission
3942 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003943 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3944
Chris Wren3824c392017-11-27 12:54:14 -05003945 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3946 // PACKAGE: The package name of the app that was granted the permission
3947 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003948 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3949
Chris Wren3824c392017-11-27 12:54:14 -05003950 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3951 // PACKAGE: The package name of the app requesting the permission
3952 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003953 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3954
Chris Wren3824c392017-11-27 12:54:14 -05003955 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3956 // PACKAGE: The package name of the app the permission was revoked for
3957 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003958 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3959
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003960 // ACTION: Phase 1 of instant application resolution occurred
3961 // OS: O
3962 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3963
3964 // ACTION: Phase 2 of instant application resolution occurred
3965 // OS: O
3966 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3967
3968 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3969 // OS: O
3970 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3971
3972 // FIELD: The status of an ephemeral resolution phase
3973 // Value 0: success
3974 // Value 1: no full hash match
3975 // OS: O
3976 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3977
3978 // FIELD - A token to identify all events that are part of the same instant application launch
3979 // OS: O
3980 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3981
3982 // FIELD - The name of the package responsible for launching the activity
3983 // OS: O
3984 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3985
3986 // FIELD - Whether or not the launched activity is part of an instant application
3987 // OS: O
3988 APP_TRANSITION_IS_EPHEMERAL = 905;
3989
Felipe Leme21fb1a32018-05-21 11:18:46 -07003990 // An autofill session was started.
3991 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003992 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003993 // NOTE: starting on OS MR1, it also added the following field:
3994 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3995 // NOTE: starting on OS P, it also added the following field:
Felipe Lemeb838a092018-05-22 14:56:15 -07003996 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07003997 // Tag FIELD_AUTOFIL_FLAGS: flags used to start the session.
3998 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session started.
3999 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004000 AUTOFILL_SESSION_STARTED = 906;
4001
4002 // An autofill request was processed by a service
Felipe Leme21fb1a32018-05-21 11:18:46 -07004003 // Type TYPE_SUCCESS: service called FillCalback.onSuccess()
4004 // Type TYPE_FAILURE: service called FillCallback.onFailure()
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004005 // Package: Package of app that is autofilled
4006 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07004007 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
Felipe Leme21fb1a32018-05-21 11:18:46 -07004008 // the service returned a null response
4009 // NOTE: starting on OS P, it also added the following fields:
4010 // TYPE_CLOSE: request timed out before service called a FillCallback method
Felipe Lemeb838a092018-05-22 14:56:15 -07004011 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004012 // Tag FIELD_AUTOFILL_REQUEST_ORDINAL: sequence number of the request inside a session; starts
4013 // with 1.
4014 // Tag FIELD_AUTOFILL_FLAGS: flags used to request autofill
4015 // Tag FIELD_AUTOFILL_DURATION: how long it took (in ms) to show the autofill UI after a field
4016 // was focused.
4017 // Tag FIELD_AUTOFILL_AUTHENTICATION_STATUS: status of authenticated datasets or responses.
Felipe Leme5e047202017-12-05 16:30:06 -08004018 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
Felipe Leme21fb1a32018-05-21 11:18:46 -07004019 // number of entries field ids in the request.
Felipe Leme833c99b2018-05-24 10:41:48 -07004020 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004021 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4022 // NOTE: Prior to P, some of the fields above were logged by 5 different metrics:
4023 // - AUTOFILL_UI_LATENCY
4024 // - AUTOFILL_AUTHENTICATED;
4025 // - AUTOFILL_DATASET_AUTHENTICATED
4026 // - AUTOFILL_INVALID_AUTHENTICATION
4027 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004028 AUTOFILL_REQUEST = 907;
4029
4030 // Tag of a field for a package of an autofill service
4031 FIELD_AUTOFILL_SERVICE = 908;
4032
4033 // Tag of a field for the number of datasets
4034 FIELD_AUTOFILL_NUM_DATASETS = 909;
4035
4036 // An autofill dataset selection UI was shown
4037 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4038 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4039 // Type TYPE_ACTION: dataset was selected
4040 // Type TYPE_DETAIL: authentication was selected
4041 // Package: Package of app that was autofilled
4042 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4043 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Lemeb838a092018-05-22 14:56:15 -07004044 // NOTE: starting on OS P, it also added the following fields:
4045 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004046 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004047 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004048 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004049 AUTOFILL_FILL_UI = 910;
4050
4051 // Tag of a field for the length of the filter text
4052 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4053
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004054 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004055 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004056 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004057 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004058 AUTOFILL_AUTHENTICATED = 912;
4059
4060 // An activity was autofilled and all values could be applied
4061 // Package: Package of app that is autofilled
4062 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4063 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Lemeb838a092018-05-22 14:56:15 -07004064 // NOTE: starting on OS P, it also added the following fields:
4065 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004066 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004067 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004068 AUTOFILL_DATASET_APPLIED = 913;
4069
4070 // Tag of a field for the number values to be filled in
4071 FIELD_AUTOFILL_NUM_VALUES = 914;
4072
4073 // Tag of a field for the number of views that were filled
4074 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4075
4076 // An autofill save UI was shown
4077 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4078 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4079 // Type TYPE_ACTION: data was saved
4080 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004081 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
Felipe Lemeb838a092018-05-22 14:56:15 -07004082 // NOTE: starting on OS P, it also added the following fields:
4083 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme6ef61b82018-02-15 16:26:02 -08004084 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004085 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004086 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec9f32592018-08-02 14:57:11 -07004087 // NOTE: starting on OS Q, it also added the following fields:
4088 // FIELD_AUTOFILL_UPDATE: Whether the UI displayed "UPDATE" instead of "SAVE"
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004089 AUTOFILL_SAVE_UI = 916;
4090
4091 // Tag of a field for the number of saveable ids
4092 FIELD_AUTOFILL_NUM_IDS = 917;
4093
Felipe Leme21fb1a32018-05-21 11:18:46 -07004094 // ACTION: An autofill service was requested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004095 // Type TYPE_SUCCESS: The request succeeded right away
4096 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004097 // Type TYPE_FAILURE: The request failed
4098 // Package: Package of app that was autofilled
4099 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Lemeb838a092018-05-22 14:56:15 -07004100 // NOTE: starting on OS P, it also added the following fields:
4101 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004102 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004103 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004104 AUTOFILL_DATA_SAVE_REQUEST = 918;
4105
4106 // An auto-fill session was finished
Felipe Leme21fb1a32018-05-21 11:18:46 -07004107 // OS: O
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004108 // Package: Package of app that was autofilled
Felipe Leme21fb1a32018-05-21 11:18:46 -07004109 // NOTE: starting on OS P, it also added the following fields:
4110 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004111 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004112 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
4113 // Tag FIELD_AUTOFILL_NUMBER_REQUESTS: number of requests made to the service (each request
4114 // is logged by a separate AUTOFILL_REQUEST metric)
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004115 AUTOFILL_SESSION_FINISHED = 919;
4116
Chris Wren148805582017-03-17 17:18:11 -04004117 // meta-event: a reader has checkpointed the log here.
4118 METRICS_CHECKPOINT = 920;
4119
Fan Zhanged1845f2017-03-23 14:46:59 -07004120 // OPEN: Settings -> Display -> When in VR Mode
4121 VR_DISPLAY_PREFERENCE = 921;
4122
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004123 // OPEN: Settings > Accessibility > Magnification
4124 // CATEGORY: SETTINGS
4125 // OS: O
4126 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004127
4128 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4129 // app.
4130 // VALUE: The package name of the app
4131 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4132
Fan Zhang1a34e752017-03-24 13:44:51 -07004133 // OPEN: Settings -> System -> Reset options
4134 RESET_DASHBOARD = 924;
4135
Jason Monk8c09ac72017-03-16 11:53:40 -04004136 // ACTION: QS -> Tile clicked
4137 ACTION_QS_CLICK = 925;
4138
4139 // ACTION: QS -> Secondary click
4140 ACTION_QS_SECONDARY_CLICK = 926;
4141
4142 // FIELD: Position info in QS clicks
4143 FIELD_QS_POSITION = 927;
4144
4145 // FIELD: The value of a QS tile when clicked (if applicable)
4146 FIELD_QS_VALUE = 928;
4147
4148 // ACTION: QS -> Detail panel -> more settings
4149 ACTION_QS_MORE_SETTINGS = 929;
4150
4151 // ACTION: QS -> Click date
4152 ACTION_QS_DATE = 930;
4153
Jason Monk1b775652017-03-31 15:42:27 -04004154 // ACTION: Event on nav button
4155 ACTION_NAV_BUTTON_EVENT = 931;
4156
4157 // FIELD: Flags for a nav button event
4158 FIELD_FLAGS = 932;
4159
4160 // FIELD: Action for a nav button event
4161 FIELD_NAV_ACTION = 933;
4162
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004163 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4164 // CATEGORY: SETTINGS
4165 // OS: O
4166 FINGERPRINT_REMOVE_SIDECAR = 934;
4167
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004168 // OPEN: Settings > Storage > Movies & TV
4169 // CATEGORY: SETTINGS
4170 // OS: O
4171 APPLICATIONS_STORAGE_MOVIES = 935;
4172
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004173 // OPEN: Text selection "assist" menu item shown.
4174 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4175 // CATEGORY: TEXT_CONTROLS
4176 // OS: O
4177 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4178
4179 // ACTION: Text selection "assist" menu item clicked.
4180 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4181 // CATEGORY: TEXT_CONTROLS
4182 // OS: O
4183 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4184
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004185 // OPEN: Settings > Security > Managed Device Info > Apps installed
4186 // CATEGORY: SETTINGS
4187 // OS: O
4188 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4189
4190 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4191 // CATEGORY: SETTINGS
4192 // OS: O
4193 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4194
4195 // OPEN: Settings > Security > Managed Device Info > Default apps
4196 // CATEGORY: SETTINGS
4197 // OS: O
4198 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4199
Julia Reynolds80b18072017-04-23 12:27:07 -04004200 // OPEN: Settings > Notifications > An app > A channel > Importance
4201 // CATEGORY: SETTINGS
4202 // OS: O
4203 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4204
4205 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4206 // CATEGORY: SETTINGS
4207 // OS: O
4208 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4209
Chris Wren4d6b54d2017-04-27 16:56:54 -04004210 // This value should never appear in log outputs - it is reserved for
4211 // internal platform metrics use.
4212 RESERVED_FOR_LOGBUILDER_UID = 943;
4213
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004214 // OPEN: Running background apps notification > List of background apps
4215 // CATEGORY: GLOBAL_SYSTEM_UI
4216 // OS: O
4217 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4218
Jorim Jaggi515dd682017-05-05 15:05:07 +02004219 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4220 // client.
4221 // OS: O
4222 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4223
Chris Wrenb3921792017-06-01 13:34:46 -04004224 // FIELD - The group ID of a notification.
4225 // Type: string
4226 // OS: O
4227 FIELD_NOTIFICATION_GROUP_ID = 946;
4228
4229 // FIELD - If the notification is a group summary: 1.
4230 // Type: int encoded boolean
4231 // OS: O
4232 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4233
Felipe Leme637e05e2017-12-06 12:09:37 -08004234 // An app attempted to forge a different component name in the AssisStructure that would be
4235 // passed to the autofill service.
4236 // OS: O (security patch)
4237 // Package: Real package of the app being autofilled
4238 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4239 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004240 // NOTE: starting on OS P, it also added the following field:
Felipe Leme21fb1a32018-05-21 11:18:46 -07004241 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004242 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4243
4244 // FIELD - The component that an app tried tro forged.
4245 // Type: string
4246 // OS: O (security patch)
4247 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4248
Chris Wren26ca65d2016-11-29 10:43:28 -05004249 // ---- End O Constants, all O constants go above this line ----
4250
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004251 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4252 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4253
jackqdyulei92e492e2017-04-28 13:04:42 -07004254 // OPEN: Settings > Battery > High Usage > Abnormal app page
4255 // CATEGORY: SETTINGS
4256 FUELGAUGE_ANOMALY_DETAIL = 987;
4257
4258 // OPEN: Settings > Battery > High Usage
4259 DIALOG_HANDLE_ANOMALY = 988;
4260
Jonathan Solnita4138162017-05-10 21:06:04 -07004261 // ACTION: Camera lift gesture
4262 // CATEGORY: GLOBAL_SYSTEM_UI
4263 // OS: O
4264 ACTION_CAMERA_LIFT_TRIGGER = 989;
4265
Maurice Lam76ae09c2017-05-05 12:03:49 -07004266 // OPEN: Choose screen lock dialog in Settings
4267 // CATEGORY: SETTINGS
4268 // OS: O DR
4269 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4270
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004271 // OPEN: Assist Gesture training intro in Settings
4272 // CATEGORY: SETTINGS
4273 // OS: O DR
4274 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4275
4276 // OPEN: Assist Gesture training enrolling in Settings
4277 // CATEGORY: SETTINGS
4278 // OS: O DR
4279 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4280
4281 // OPEN: Assist Gesture training finished in Settings
4282 // CATEGORY: SETTINGS
4283 // OS: O DR
4284 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4285
Fan Zhangc666a202017-05-18 17:50:20 -07004286 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4287 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4288
4289 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4290 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4291
Philip Quinn0f9566d2017-05-23 10:32:08 -07004292 // OPEN: Settings > System > Languages & input > Assist gesture
4293 // CATEGORY: SETTINGS
4294 // OS: O DR
4295 SETTINGS_ASSIST_GESTURE = 996;
4296
4297 // ACTION: Assist gesture released without triggering
4298 // CATEGORY: GLOBAL_SYSTEM_UI
4299 // OS: O DR
4300 ASSIST_GESTURE_RELEASED = 997;
4301
4302 // ACTION: Assist gesture primed
4303 // CATEGORY: GLOBAL_SYSTEM_UI
4304 // OS: O DR
4305 ASSIST_GESTURE_PRIMED = 998;
4306
4307 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004308 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004309 // CATEGORY: GLOBAL_SYSTEM_UI
4310 // OS: O DR
4311 ASSIST_GESTURE_TRIGGERED = 999;
4312
Fan Zhang238162b2017-05-25 14:01:41 -07004313 // ACTION: Update default app from Settings
4314 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4315
4316 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004317 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004318
4319 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004320 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004321
Adrian Roos1c81d772017-05-25 18:00:21 -07004322 // OPEN: Settings > Display > Ambient Display
4323 // CATEGORY: SETTINGS
4324 // OS: O DR
4325 AMBIENT_DISPLAY_SETTINGS = 1003;
4326
Hugo Benichi11da42b2017-05-31 11:11:37 +09004327 // ACTION: CaptivePortalLoginActivity starts
4328 // CATEGORY: GLOBAL_SYSTEM_UI
4329 // OS: O DR
4330 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4331
4332 // ACTION: CaptivePortalLoginActivity auto-closes
4333 // CATEGORY: GLOBAL_SYSTEM_UI
4334 // OS: O DR
4335 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4336
4337 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4338 // CATEGORY: GLOBAL_SYSTEM_UI
4339 // OS: O DR
4340 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4341
4342 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4343 // CATEGORY: GLOBAL_SYSTEM_UI
4344 // OS: O DR
4345 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4346
4347 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4348 // CATEGORY: SETTINGS
4349 // OS: O DR
4350 ACTION_WIFI_SIGNIN = 1008;
4351
Antony Sargentf3cc3172017-05-04 14:58:06 -07004352 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4353 // CATEGORY: SETTINGS
4354 // OS: O DR
4355 BLUETOOTH_DEVICE_DETAILS = 1009;
4356
fanzhang172255759d2017-06-05 21:43:47 -07004357 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4358 CONFIGURE_KEYGUARD_DIALOG = 1010;
4359
Fan Zhange33c70d2017-06-06 12:37:13 -07004360 // Open: Settings > Search > No Result View
4361 SETTINGS_SEARCH_NO_RESULT = 1011;
4362
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004363 // OPEN: Assist Gesture before training
4364 // CATEGORY: SETTINGS
4365 // OS: O DR
4366 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4367
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004368 // CaptivePortalLoginActivity displays SSL error page
4369 // CATEGORY: GLOBAL_SYSTEM_UI
4370 // OS: O DR
4371 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4372
Fan Zhang1a0fc992017-06-13 13:45:21 -07004373 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4374 WIFI_TETHER_SETTINGS = 1014;
4375
Antony Sargentc3b5da62017-06-16 11:50:13 -07004376 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4377 // -> Edit name button.
4378 // CATEGORY: SETTINGS
4379 // OS: O DR
4380 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4381
Fan Zhang543587d2017-06-19 12:32:14 -07004382 // ACTION: Settings > Notification Settings > Open application notification
4383 // CATEGORY: SETTINGS
4384 // OS: O DR
4385 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4386
4387 // ACTION: Settings > App Info > Open app settings
4388 // CATEGORY: SETTINGS
4389 // OS: O DR
4390 ACTION_OPEN_APP_SETTING = 1017;
4391
jackqdyulei2f1a3592017-06-19 13:11:05 -07004392 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4393 // CATEGORY: SETTINGS
4394 // OS: O DR
4395 BLUETOOTH_PAIRING = 1018;
4396
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004397 // ACTION: Collect PSD Signals
4398 // CATEGORY: SETTINGS
4399 // OS: O DR
4400 ACTION_PSD_LOADER = 1019;
4401
jackqdyulei602bcc92017-06-21 15:17:53 -07004402 // ACTION: Background check action on an app
4403 // CATEGORY: SETTINGS
4404 // OS: O DR
4405 ACTION_APP_BACKGROUND_CHECK = 1020;
4406
4407 // ACTION: Location check action on an app
4408 // CATEGORY: SETTINGS
4409 // OS: O DR
4410 ACTION_APP_LOCATION_CHECK = 1021;
4411
Charlie Wang15a36ed2017-06-14 14:46:39 -07004412 // Device headset status
4413 // CATEGORY: OTHER
4414 // SUBTYPE: 1 is DON, 2 is DOFF
4415 // OS: O DR
4416 ACTION_HEADSET_STATUS = 1022;
4417
4418 // Device Headset Plug status
4419 // CATEGORY: OTHER
4420 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4421 // OS: O DR
4422 ACTION_HEADSET_PLUG = 1023;
4423
4424 // Device Headset battery level on Plug
4425 // CATEGORY: OTHER
4426 // FIELD - The battery percentage when the user decided to plug in
4427 // Type: integer
4428 // OS: O DR
4429 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4430
Charlie Wang566ec702017-06-26 15:30:03 -07004431 // Device Headset battery level on Plug
4432 // CATEGORY: OTHER
4433 // FIELD - The battery percentage when the user decided to plug in
4434 // Type: integer
4435 // OS: O DR
4436 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4437
Charlie Wang15a36ed2017-06-14 14:46:39 -07004438 // Device Headset Pose status
4439 // CATEGORY: OTHER
4440 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4441 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004442 ACTION_HEADSET_POSE_STATUS = 1026;
4443
4444 // Device Headset Usage session time
4445 // CATEGORY: OTHER
4446 // FIELD - The time the headset was used in a session
4447 // OS: O DR
4448 FIELD_SESSION_TIME_MS = 1027;
4449
4450 // Device Headset Idle time
4451 // CATEGORY: OTHER
4452 // FIELD - The time in between each session
4453 // OS: O DR
4454 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4455
4456 // Device Headset charge session time
4457 // CATEGORY: OTHER
4458 // FIELD - The time taken for each charge
4459 // OS: O DR
4460 FIELD_TIME_OF_CHARGE_MS = 1029;
4461
4462 // Device Headset time between charge
4463 // CATEGORY: OTHER
4464 // FIELD - The time in between each charge
4465 // OS: O DR
4466 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004467
Antony Sargentca701a22017-07-05 17:02:00 -07004468 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4469 // -> Forget button.
4470 // CATEGORY: SETTINGS
4471 // OS: O DR
4472 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4473
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004474 // An event from the camera service
4475 // CATEGORY: OTHER
4476 // SUBTYPE: CameraEvent
4477 // OS: O DR
4478 ACTION_CAMERA_EVENT = 1032;
4479
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004480 // OPEN: Settings > Trampoline Intent > Settings page
4481 // CATEGORY: SETTINGS
4482 // OS: O DR
4483 TRAMPOLINE_SETTINGS_EVENT = 1033;
4484
Chris Wren9a4f2662017-06-29 10:10:02 -04004485 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4486
Malcolm Chen21062542017-06-20 11:36:01 -07004487 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4488 // CATEGORY: SETTINGS
4489 // OS: O MR
4490 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4491
4492 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4493 // CATEGORY: SETTINGS
4494 // OS: O MR
4495 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4496
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004497 // FIELD - State of asynchronous ranking when Settings search result is clicked
4498 // CATEGORY: SETTINGS
4499 // OS: O MR
4500 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4501
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004502 // ACTION: Settings > Connected devices > SMS Mirroring
4503 // CATEGORY: SETTINGS
4504 // OS: O MR
4505 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4506
Kang Li2c571892017-07-05 14:47:32 -07004507 // ACTION: Chooser picked a ranked target.
4508 // CATEGORY: GLOBAL_SYSTEM_UI
4509 // OS: O MR
4510 ACTION_TARGET_SELECTED = 1085;
4511
4512 // FIELD - is category used in Chooser: 1.
4513 // Type: int encoded boolean
4514 // CATEGORY: GLOBAL_SYSTEM_UI
4515 // OS: O MR
4516 FIELD_IS_CATEGORY_USED = 1086;
4517
4518 // FIELD - ranked position of selected target for Chooser.
4519 // CATEGORY: GLOBAL_SYSTEM_UI
4520 // OS: O MR
4521 FIELD_RANKED_POSITION = 1087;
4522
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004523 // OPEN: Settings > Data plan usage
4524 // CATEGORY: SETTINGS
4525 // OS: O MR
4526 DATA_PLAN_USAGE_SUMMARY = 1088;
4527
Doris Lingce007eb2017-08-09 13:59:46 -07004528 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4529 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4530
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004531 // ACTION: Logged when the app has notified that it has fully drawn. See
4532 // Activity.reportFullyDrawn().
4533 APP_TRANSITION_REPORTED_DRAWN = 1090;
4534
4535 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4536 // the app transition.
4537 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4538
Daniel Nishia86115f2017-08-23 10:27:08 -07004539 // OPEN: Settings > Storage > Photos & Videos
4540 // CATEGORY: SETTINGS
4541 // OS: O MR
4542 APPLICATIONS_STORAGE_PHOTOS = 1092;
4543
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004544 // ACTION: Logged when the status bar icons change.
4545 // OS: O MR
4546 STATUS_BAR_ICONS_CHANGED = 1093;
4547
4548 // FIELD: Bitfield indicating which icons are shown.
4549 // OS: O MR
4550 FIELD_STATUS_ICONS = 1094;
4551
4552 // FIELD: Number of status icons currently shown.
4553 // OS: O MR
4554 FIELD_NUM_STATUS_ICONS = 1095;
4555
Jack He4b605792017-09-01 11:48:30 -07004556 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4557 // CATEGORY: SETTINGS
4558 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004559 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004560
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004561 // FIELD - Whether smart suggestion ranking was enabled or not
4562 // Type: int encoded boolean
4563 // CATEGORY: SETTINGS
4564 // OS: O MR
4565 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4566
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004567 // ACTION: The device boots
4568 ACTION_BOOT = 1098;
4569
4570 // FIELD: A string value representing some state of the platform, e.g., boot reason
4571 FIELD_PLATFORM_REASON = 1099;
4572
Jan Althaus786a39d2017-09-15 10:41:16 +02004573 // CATEGORY: The category for all actions relating to selection session logging.
4574 // OS: O MR
4575 TEXT_SELECTION_SESSION = 1100;
4576
4577 // ACTION: A selection session started (i.e. the selection handles appeared)
4578 // CATEGORY: TEXT_SELECTION_SESSION
4579 // OS: O MR
4580 ACTION_TEXT_SELECTION_START = 1101;
4581
4582 // ACTION: The user modified the selection (e.g. by dragging the handles)
4583 // CATEGORY: TEXT_SELECTION_SESSION
4584 // OS: O MR
4585 ACTION_TEXT_SELECTION_MODIFY = 1102;
4586
4587 // ACTION: The user modified the selection by pressing the "select all" button.
4588 // CATEGORY: TEXT_SELECTION_SESSION
4589 // OS: O MR
4590 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4591
4592 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4593 // CATEGORY: TEXT_SELECTION_SESSION
4594 // OS: O MR
4595 ACTION_TEXT_SELECTION_RESET = 1104;
4596
4597 // ACTION: Smart selection made a single word prediction
4598 // CATEGORY: TEXT_SELECTION_SESSION
4599 // OS: O MR
4600 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4601
4602 // ACTION: Smart selection made a multi word prediction
4603 // CATEGORY: TEXT_SELECTION_SESSION
4604 // OS: O MR
4605 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4606
4607 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4608 // CATEGORY: TEXT_SELECTION_SESSION
4609 // OS: O MR
4610 ACTION_TEXT_SELECTION_AUTO = 1107;
4611
4612 // ACTION: A selection session ended with the user typing over the text
4613 // CATEGORY: TEXT_SELECTION_SESSION
4614 // OS: O MR
4615 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4616
4617 // ACTION: A selection session ended with the user copying the text
4618 // CATEGORY: TEXT_SELECTION_SESSION
4619 // OS: O MR
4620 ACTION_TEXT_SELECTION_COPY = 1109;
4621
4622 // ACTION: A selection session ended with the user pasting over the text
4623 // CATEGORY: TEXT_SELECTION_SESSION
4624 // OS: O MR
4625 ACTION_TEXT_SELECTION_PASTE = 1110;
4626
4627 // ACTION: A selection session ended with the user cutting the text
4628 // CATEGORY: TEXT_SELECTION_SESSION
4629 // OS: O MR
4630 ACTION_TEXT_SELECTION_CUT = 1111;
4631
4632 // ACTION: A selection session ended with the user pressing the share button
4633 // CATEGORY: TEXT_SELECTION_SESSION
4634 // OS: O MR
4635 ACTION_TEXT_SELECTION_SHARE = 1112;
4636
4637 // ACTION: A selection session ended with the user pressing the smart share button
4638 // CATEGORY: TEXT_SELECTION_SESSION
4639 // OS: O MR
4640 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4641
4642 // ACTION: A selection session ended with the user dragging the text
4643 // CATEGORY: TEXT_SELECTION_SESSION
4644 // OS: O MR
4645 ACTION_TEXT_SELECTION_DRAG = 1114;
4646
4647 // ACTION: A selection session ended with the user abandoning the selection
4648 // CATEGORY: TEXT_SELECTION_SESSION
4649 // OS: O MR
4650 ACTION_TEXT_SELECTION_ABANDON = 1115;
4651
4652 // ACTION: A selection session ended with the user picking an unhandled action bar item
4653 // CATEGORY: TEXT_SELECTION_SESSION
4654 // OS: O MR
4655 ACTION_TEXT_SELECTION_OTHER = 1116;
4656
4657 // FIELD: Time in milliseconds from the start of the session to this event
4658 // CATEGORY: TEXT_SELECTION_SESSION
4659 // OS: O MR
4660 FIELD_SELECTION_SINCE_START = 1117;
4661
4662 // FIELD: time in milliseconds between the last event in the session and this one
4663 // CATEGORY: TEXT_SELECTION_SESSION
4664 // OS: O MR
4665 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4666
4667 // FIELD: a random uid for a selection session (lasting from select start to end)
4668 // CATEGORY: TEXT_SELECTION_SESSION
4669 // OS: O MR
4670 FIELD_SELECTION_SESSION_ID = 1119;
4671
4672 // FIELD: the sequence number of the event in the session
4673 // CATEGORY: TEXT_SELECTION_SESSION
4674 // OS: O MR
4675 FIELD_SELECTION_SESSION_INDEX = 1120;
4676
4677 // FIELD: a concatenation of the widget type and ML model version.
4678 // CATEGORY: TEXT_SELECTION_SESSION
4679 // OS: O MR
4680 FIELD_SELECTION_VERSION_TAG = 1121;
4681
4682 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4683 // packed 16bit integers. (start in MSBs, end in LSBs)
4684 // CATEGORY: TEXT_SELECTION_SESSION
4685 // OS: O MR
4686 FIELD_SELECTION_RANGE = 1122;
4687
4688 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4689 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4690 // CATEGORY: TEXT_SELECTION_SESSION
4691 // OS: O MR
4692 FIELD_SELECTION_SMART_RANGE = 1123;
4693
Felipe Lemeb22d6352017-09-08 20:03:53 -07004694 // The value of an autofillable and savable view was reset
4695 // Package: Package of app that was autofilled
4696 // OS: O MR
4697 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4698 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Lemeb838a092018-05-22 14:56:15 -07004699 // NOTE: starting on OS P, it also added the following fields:
4700 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004701 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004702 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004703 AUTOFILL_VALUE_RESET = 1124;
4704
4705 // Tag of AUTOFILL_VALUE_RESET
4706 // OS: O MR
4707 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4708
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004709 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004710 // Package: Package of app that was autofilled
4711 // OS: O MR
Felipe Leme21fb1a32018-05-21 11:18:46 -07004712 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004713 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4714
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004715 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004716 // Package: Package of app that was autofilled
4717 // OS: O MR
4718 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004719 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004720 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4721
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004722 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004723 // Package: Package of app that was autofilled
4724 // OS: O MR
4725 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme21fb1a32018-05-21 11:18:46 -07004726 // NOTE: starting on OS P, this metric became a value for FIELD_AUTOFILL_AUTHENTICATION_STATUS
Felipe Lemeb22d6352017-09-08 20:03:53 -07004727 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4728
Felipe Leme2c888422017-10-26 12:46:35 -07004729 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004730 // Package: Package of app that is autofilled
4731 // OS: O MR
4732 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4733 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004734 // NOTE: starting on OS P, it also added the following fields:
4735 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004736 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004737 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004738 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4739
4740 // FIELD - Type of save object passed by the service when the Save UI is shown
4741 // OS: O MR
4742 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4743
Felipe Leme2c888422017-10-26 12:46:35 -07004744 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004745 // Package: Package of app that is autofilled
4746 // OS: O MR
4747 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4748 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004749 // NOTE: starting on OS P, it also added the following fields:
4750 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004751 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004752 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004753 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4754
Felipe Leme2c888422017-10-26 12:46:35 -07004755 // 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 -07004756 // Package: Package of app that is autofilled
4757 // OS: O MR
4758 // Type TYPE_UNKNOWN: The link was not properly set by the service
4759 // Type TYPE_OPEN: The link launched an activity
4760 // Type TYPE_FAILURE: The link could not launc an activity
4761 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4762 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004763 // NOTE: starting on OS P, it also added the following fields:
4764 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004765 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004766 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004767 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4768
4769 // Result of the validation on save when an autofill service provided a validator
4770 // Package: Package of app that is autofilled
4771 // OS: O MR
4772 // Type TYPE_FAILURE: The validation could not be performed due to an error
4773 // Type TYPE_SUCCESS: The validation passed
4774 // Type TYPE_DISMISS: The validation failed
4775 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4776 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Lemeb838a092018-05-22 14:56:15 -07004777 // NOTE: starting on OS P, it also added the following fields:
4778 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004779 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004780 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004781 AUTOFILL_SAVE_VALIDATION = 1133;
4782
Felipe Leme2c888422017-10-26 12:46:35 -07004783 // 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 -07004784 // provided by the autofill service
4785 // Package: Package of app that is autofilled
4786 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004787 // Type TYPE_OPEN: The autofill save UI was restored
4788 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004789 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Lemeb838a092018-05-22 14:56:15 -07004790 // NOTE: starting on OS P, it also added the following fields:
4791 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004792 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004793 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004794 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4795
Felipe Leme9d414492017-09-20 13:55:28 -07004796 // Autofill service called API that disables itself
4797 // Package: Package of the autofill service
4798 // OS: O MR
4799 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4800
Felipe Leme21fb1a32018-05-21 11:18:46 -07004801 // DEPRECATED - on P it was merged with AUTOFILL_REQUEST
Felipe Lemeb659adb2018-01-18 15:21:36 -08004802 // Reports how long it took to show the autofill UI after a field was focused
4803 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004804 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4805 // Package: Package of the autofill service
4806 // OS: O MR
4807 AUTOFILL_UI_LATENCY = 1136;
4808
Chris Wren21a2e722017-10-02 17:44:53 -04004809 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4810 // OS: O MR
4811 NOTIFICATION_SNOOZE_CLICKED = 1137;
4812
4813 // Action: user selected a notification snooze duration from the drop down
4814 // OS: O MR
4815 NOTIFICATION_SELECT_SNOOZE = 1138;
4816
4817 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4818 // OS: O MR
4819 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4820
4821 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4822 // OS: O MR
4823 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4824
4825 // Action: user tapped undo on the notification snooze leave-behind
4826 // OS: O MR
4827 NOTIFICATION_UNDO_SNOOZE = 1141;
4828
4829 // Action: user togged the visibility of the notification snooze options drop down
4830 // OS: O MR
4831 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4832
Romain Guy62e8c172017-10-24 21:37:34 +01004833 // OPEN: Settings > Display > Colors
4834 // CATEGORY: SETTINGS
4835 // OS: O MR
4836 COLOR_MODE_SETTINGS = 1143;
4837
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004838 // Enclosing category for group of APP_TRANSITION_FOO events,
4839 // logged when we cancel an app transition.
4840 APP_TRANSITION_CANCELLED = 1144;
4841
Felipe Lemeb659adb2018-01-18 15:21:36 -08004842 // Tag of a field representing a duration on autofill-related metrics.
4843 FIELD_AUTOFILL_DURATION = 1145;
4844
Doris Lingce007eb2017-08-09 13:59:46 -07004845 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4846
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004847 // OPEN: Settings > Network & Internet > Mobile network
4848 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004849 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004850
4851 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4852 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004853 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004854
4855 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4856 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004857 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004858
4859 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4860 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004861 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004862
4863 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4864 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004865 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004866
4867 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4868 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004869 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004870
4871 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4872 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004873 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004874
4875 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4876 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004877 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004878
4879 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4880 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004881 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004882
4883 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4884 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004885 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004886
4887 // ACTION: Settings > Network & Internet > Mobile network > Network
4888 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004889 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004890
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004891 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004892 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004893
4894 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4895 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004896 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004897
4898 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4899 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004900 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004901
4902 // OPEN: Settings > Network & Internet > Mobile network > System select
4903 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004904 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004905
4906 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4907 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004908 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004909
4910 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4911 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004912 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004913
Fan Zhanga2f2c912017-08-15 17:20:37 -07004914 // OPEN: Settings > Developer Options > Experiment dashboard
4915 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004916 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004917
Julia Reynolds005c8b92017-08-24 10:35:53 -04004918 // OPEN: Settings > Notifications > [App] > Topic Notifications
4919 // CATEGORY: SETTINGS
4920 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004921 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004922
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004923 // OPEN: Settings > Developer options > Enable > Info dialog
4924 // CATEGORY: SETTINGS
4925 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004926 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004927
jeffreyhuang57359c02017-09-18 11:34:00 -07004928 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4929 // CATEGORY: SETTINGS
4930 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004931 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004932
Kevin Chyn60eea712017-09-26 16:03:05 -07004933 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4934 // CATEGORY: SETTINGS
4935 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004936 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004937
jeffreyhuang37c4b132017-09-21 14:09:20 -07004938 // OPEN: Settings > Developer options > USB debugging > Info dialog
4939 // CATEGORY: SETTINGS
4940 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004941 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004942
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004943 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4944 // CATEGORY: SETTINGS
4945 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004946 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004947
Fan Zhange5b34302017-10-09 15:58:38 -07004948 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004949 // CATEGORY: SETTINGS
4950 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004951 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4952
jeffreyhuang49de1252017-10-05 15:25:14 -07004953 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4954 // CATEGORY: SETTINGS
4955 // OS: P
4956 DIALOG_LOG_PERSIST = 1225;
4957
Beverly04216872017-09-28 10:55:32 -04004958 // ACTION: DND Settings > Priority only allows > Alarms toggle
4959 // SUBTYPE: 0 is off, 1 is on
4960 // CATEGORY: SETTINGS
4961 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004962 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004963
4964 // ACTION: DND Settings > Priority only allows > Media toggle
4965 // SUBTYPE: 0 is off, 1 is on
4966 // CATEGORY: SETTINGS
4967 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004968 ACTION_ZEN_ALLOW_MEDIA = 1227;
4969
4970 // An autofill service explicitly defined which view should commit the autofill context
4971 // Package: Package of app that is autofilled
4972 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07004973 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004974 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme833c99b2018-05-24 10:41:48 -07004975 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004976 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004977 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4978
4979 // The autofill context was commited when the user clicked a view explicitly marked by the
4980 // service as committing it
4981 // Package: Package of app that is autofilled
4982 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07004983 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme833c99b2018-05-24 10:41:48 -07004984 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004985 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004986 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004987
Malcolm Chen4f17b172017-10-19 13:54:07 -07004988 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4989 // CATEGORY: SETTINGS
4990 // OS: P
4991 WIFI_CALLING_FOR_SUB = 1230;
4992
Felipe Leme17292d12017-10-24 14:03:10 -07004993 // An autofill service asked to disable autofill for a given application.
4994 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004995 // OS: P
4996 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004997 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07004998 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07004999 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005000 AUTOFILL_SERVICE_DISABLED_APP = 1231;
5001
5002 // An autofill service asked to disable autofill for a given activity.
5003 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07005004 // OS: P
5005 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5006 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08005007 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme833c99b2018-05-24 10:41:48 -07005008 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005009 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07005010 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
5011
jackqdyuleide3b7af2017-10-24 16:32:58 -07005012 // ACTION: Stop an app and turn on background check
5013 // CATEGORY: SETTINGS
5014 // OS: P
5015 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
5016
5017 // FIELD: The action type for each anomaly
5018 // CATEGORY: SETTINGS
5019 // OS: P
5020 FIELD_ANOMALY_ACTION_TYPE = 1234;
5021
5022 // OPEN: Settings -> Battery -> Wakelock anomaly
5023 // CATEGORY: SETTINGS
5024 // OS: P
5025 ANOMALY_TYPE_WAKELOCK = 1235;
5026
5027 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
5028 // CATEGORY: SETTINGS
5029 // OS: P
5030 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
5031
5032 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
5033 // CATEGORY: SETTINGS
5034 // OS: P
5035 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
5036
Fan Zhanga4a01722017-10-30 17:54:24 -07005037 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
5038 // OS: P
5039 DIALOG_OEM_LOCK_INFO = 1238;
5040
jackqdyulei331fafb2017-11-01 14:01:24 -07005041 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
5042 // CATEGORY: SETTINGS
5043 // OS: P
5044 ACTION_WIFI_AUTO_SIGN_IN = 1239;
5045
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07005046 // Open: Settings > System > About phone > IMEI
5047 // CATEGORY: SETTINGS
5048 // OS: P
5049 DIALOG_IMEI_INFO = 1240;
5050
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07005051 // In permission action fields tagged like this reference the permission affected
5052 FIELD_PERMISSION = 1241;
5053
5054 // ACTION: An app requested a permission and we asked to user to approve the request
5055 // PACKAGE: The package name of the app requesting the permission
5056 // Tag FIELD_PERMISSION: Name of the permission requested
5057 ACTION_PERMISSION_REQUESTED = 1242;
5058
5059 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5060 // or automatically. In the second case there will not be an
5061 // ACTION_PERMISSION_REQUESTED.
5062 // PACKAGE: The package name of the app that was granted the permission
5063 // Tag FIELD_PERMISSION: Name of the permission granted
5064 ACTION_PERMISSION_GRANTED = 1243;
5065
5066 // ACTION: An app requested the a permission and the request was denied by the user or a device
5067 // policy
5068 // PACKAGE: The package name of the app requesting the permission
5069 // Tag FIELD_PERMISSION: Name of the permission denied
5070 ACTION_PERMISSION_DENIED = 1244;
5071
5072 // ACTION: A permission was revoked
5073 // PACKAGE: The package name of the app the permission was revoked for
5074 // Tag FIELD_PERMISSION: Name of the permission revoked
5075 ACTION_PERMISSION_REVOKED = 1245;
5076
jeffreyhuang594314c2017-11-01 10:26:15 -07005077 // OPEN: Settings > System > About Phone > Sim status
5078 // CATEGORY: SETTINGS
5079 // OS: P
5080 DIALOG_SIM_STATUS = 1246;
5081
jeffreyhuang3bd59782017-11-02 11:08:28 -07005082 // OPEN: Settings > System > About Phone > Android Version
5083 // CATEGORY: SETTINGS
5084 // OS: P
5085 DIALOG_FIRMWARE_VERSION = 1247;
5086
jackqdyulei8fe97542017-11-08 16:23:43 -08005087 // OPEN: Settings > Network & internet > Menu > Private DNS
5088 // CATEGORY: SETTINGS
5089 // OS: P
5090 DIALOG_PRIVATE_DNS = 1248;
5091
5092 // ACTION: A private dns mode been selected by user
5093 // CATEGORY: SETTINGS
5094 // OS: P
5095 ACTION_PRIVATE_DNS_MODE = 1249;
5096
Jan Althausae5eb832017-11-06 12:31:59 +01005097 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5098 // CATEGORY: TEXT_SELECTION_SESSION
5099 // OS: P
5100 FIELD_SELECTION_RANGE_START = 1250;
5101
5102 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5103 // CATEGORY: TEXT_SELECTION_SESSION
5104 // OS: P
5105 FIELD_SELECTION_RANGE_END = 1251;
5106
5107 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5108 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5109 // CATEGORY: TEXT_SELECTION_SESSION
5110 // OS: P
5111 FIELD_SELECTION_SMART_RANGE_START = 1252;
5112
5113 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5114 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5115 // CATEGORY: TEXT_SELECTION_SESSION
5116 // OS: P
5117 FIELD_SELECTION_SMART_RANGE_END = 1253;
5118
5119 // FIELD: the entity type of the text currently selected.
5120 // CATEGORY: TEXT_SELECTION_SESSION
5121 // OS: P
5122 FIELD_SELECTION_ENTITY_TYPE = 1254;
5123
5124 // FIELD: the type of widget the selection was made in.
5125 // CATEGORY: TEXT_SELECTION_SESSION
5126 // OS: P
5127 FIELD_SELECTION_WIDGET_TYPE = 1255;
5128
5129 // FIELD: the name of the text classifier model used.
5130 // CATEGORY: TEXT_SELECTION_SESSION
5131 // OS: P
5132 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5133
Beverly625442d2017-11-03 17:27:02 -04005134 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5135 // CATEGORY: SETTINGS
5136 // OS: P
5137 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5138
5139 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5140 // CATEGORY: SETTINGS
5141 // OS: P
5142 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5143
5144 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5145 // CATEGORY: SETTINGS
5146 // OS: P
5147 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5148
5149 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5150 // CATEGORY: SETTINGS
5151 // OS: P
5152 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5153
5154 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5155 // CATEGORY: SETTINGS
5156 // OS: P
5157 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5158
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005159 // FIELD: the version of the widget the selection was made in.
5160 // CATEGORY: TEXT_SELECTION_SESSION
5161 // OS: P
5162 FIELD_SELECTION_WIDGET_VERSION = 1262;
5163
jackqdyulei63193602017-11-27 13:46:48 -08005164 // OPEN: Settings > Battery(version 2)
5165 // CATEGORY: SETTINGS
5166 // OS: P
5167 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5168
jackqdyulei6139eab2017-11-29 14:38:32 -08005169 // OPEN: Settings > Connected devices > Connection preferences
5170 // CATEGORY: SETTINGS
5171 // OS: P
5172 CONNECTION_DEVICE_ADVANCED = 1264;
5173
Fan Zhang5235c052017-12-05 13:49:35 -08005174 // OPEN: Settings > Security > Screen lock gear icon
5175 // CATEGORY: SETTINGS
5176 // OS: P
5177 SCREEN_LOCK_SETTINGS = 1265;
5178
Beverlybf16c142017-11-27 16:21:34 -05005179 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5180 // CATEGORY: SETTINGS
5181 // OS: P
5182 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005183
Beverlybf16c142017-11-27 16:21:34 -05005184 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5185 // CATEGORY: SETTINGS
5186 // OS: P
5187 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5188
5189 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5190 // CATEGORY: SETTINGS
5191 // OS: P
5192 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5193
5194 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5195 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5196 // CATEGORY: SETTINGS
5197 // OS: P
5198 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5199
5200 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5201 // CATEGORY: SETTINGS
5202 // OS: P
5203 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5204
Felipe Leme5e047202017-12-05 16:30:06 -08005205 // Tag of a field for the number of ids in an autofill field classification request.
5206 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5207
5208 // An autofill service updated its user data
5209 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005210 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5211 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005212 // OS: P
5213 AUTOFILL_USERDATA_UPDATED = 1272;
5214
5215 // Some data entered by the user matched the field classification requested by the service.
5216 // Package: Package of app that is autofilled
5217 // Counter: number of matches found
5218 // OS: P
Felipe Lemeb838a092018-05-22 14:56:15 -07005219 // Tag FIELD_CLASS_NAME: Class name of the activity that is autofilled.
Felipe Leme5e047202017-12-05 16:30:06 -08005220 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5221 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme833c99b2018-05-24 10:41:48 -07005222 // Tag FIELD_AUTOFILL_SESSION_ID: id of the autofill session associated with this metric.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005223 // Tag FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005224 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5225
5226 // Tag used to report autofill field classification scores
5227 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5228
Jerry Zhang18be8db2017-12-15 15:24:41 -08005229 // ACTION: Usb config has been changed to charging
5230 // CATEGORY: SETTINGS
5231 // OS: P
5232 ACTION_USB_CONFIG_CHARGING = 1275;
5233
5234 // ACTION: Usb config has been changed to mtp (file transfer)
5235 // CATEGORY: SETTINGS
5236 // OS: P
5237 ACTION_USB_CONFIG_MTP = 1276;
5238
5239 // ACTION: Usb config has been changed to ptp (photo transfer)
5240 // CATEGORY: SETTINGS
5241 // OS: P
5242 ACTION_USB_CONFIG_PTP = 1277;
5243
5244 // ACTION: Usb config has been changed to rndis (usb tethering)
5245 // CATEGORY: SETTINGS
5246 // OS: P
5247 ACTION_USB_CONFIG_RNDIS = 1278;
5248
5249 // ACTION: Usb config has been changed to midi
5250 // CATEGORY: SETTINGS
5251 // OS: P
5252 ACTION_USB_CONFIG_MIDI = 1279;
5253
5254 // ACTION: Usb config has been changed to accessory
5255 // CATEGORY: SETTINGS
5256 // OS: P
5257 ACTION_USB_CONFIG_ACCESSORY = 1280;
5258
jackqdyuleie04138d2018-01-08 17:51:57 -08005259 // OPEN: Settings > Battery > Smart Battery
5260 // CATEGORY: SETTINGS
5261 // OS: P
5262 FUELGAUGE_SMART_BATTERY = 1281;
5263
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005264 // ACTION: User tapped Screenshot in the power menu.
5265 // CATEGORY: GLOBAL_SYSTEM_UI
5266 // OS: P
5267 ACTION_SCREENSHOT_POWER_MENU = 1282;
5268
Felipe Leme3e099112018-01-18 12:57:45 -08005269 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005270 // CATEGORY: SETTINGS
5271 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005272 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005273
Felipe Leme3e099112018-01-18 12:57:45 -08005274 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005275 // CATEGORY: SETTINGS
5276 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005277 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005278
jackqdyuleid9821242018-01-09 17:42:52 -08005279 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5280 // CATEGORY: SETTINGS
5281 // OS: P
5282 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5283
Beverly92c25682018-01-22 09:27:19 -05005284 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5285 // CATEGORY: SETTINGS
5286 // OS: P
5287 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5288
Mike Digmanc94759d2018-01-23 11:01:21 -08005289 // ACTION: Rotate suggestion accepted in rotation locked mode
5290 // CATEGORY: GLOBAL_SYSTEM_UI
5291 // OS: P
5292 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5293
5294 // OPEN: Rotation suggestion shown in rotation locked mode
5295 // CATEGORY: GLOBAL_SYSTEM_UI
5296 // OS: P
5297 ROTATION_SUGGESTION_SHOWN = 1288;
5298
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005299 // An autofill service was bound using an unofficial(but still supported) permission.
5300 // Package: Package of the autofill service
5301 // OS: P
5302 AUTOFILL_INVALID_PERMISSION = 1289;
5303
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005304 // OPEN: QS Alarm tile shown
5305 // ACTION: QS Alarm tile tapped
5306 // SUBTYPE: 0 is off, 1 is on
5307 // CATEGORY: QUICK_SETTINGS
5308 // OS: P
5309 QS_ALARM = 1290;
5310
Jerry Zhang79147972018-01-31 16:04:06 -08005311 // OPEN: Settings->Connected Devices->USB->(click on details link)
5312 // CATEGORY: SETTINGS
5313 // OS: P
5314 USB_DEVICE_DETAILS = 1291;
5315
Michael Wright98bdc512018-01-26 19:15:57 +00005316 // OPEN: Settings > Accessibility > Vibration
5317 // CATEGORY: SETTINGS
5318 // OS: P
5319 ACCESSIBILITY_VIBRATION = 1292;
5320
5321 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5322 // CATEGORY: SETTINGS
5323 // OS: P
5324 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5325
5326 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5327 // CATEGORY: SETTINGS
5328 // OS: P
5329 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5330
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005331 // OPEN: Volume panel > output chooser dialog
5332 // OS: P
5333 OUTPUT_CHOOSER = 1295;
5334
5335 // Action: Volume panel > output chooser dialog > tap on device
5336 // OS: P
5337 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5338
5339 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5340 // OS: P
5341 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5342
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005343 // OPEN: TV Settings > Home theater control
5344 // OS: P
5345 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5346
5347 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5348 // OS: P
5349 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5350
5351 // OPEN: TV Settings > Device
5352 // OS: P
5353 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5354
5355 // OPEN: TV Settings > Network > Proxy settings
5356 // OS: P
5357 DIALOG_TV_NETWORK_PROXY = 1301;
5358
Makoto Onuki698f7a02018-02-13 15:02:23 -08005359 // Events for battery saver turning on/off and/or the interactive state changes.
5360 // OS: P
5361 BATTERY_SAVER = 1302;
5362
5363 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5364 // OS: P
5365 FIELD_INTERACTIVE = 1303;
5366
5367 // Time spent in milliseconds in the current mode.
5368 // OS: P
5369 FIELD_DURATION_MILLIS = 1304;
5370
Chris Wren8f7a1442018-05-14 17:16:31 -04005371 // Battery level in uAh (0 - ~3,000,000 depending on device) when the current "mode" started.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005372 // OS: P
5373 FIELD_START_BATTERY_UA = 1305;
5374
Chris Wren8f7a1442018-05-14 17:16:31 -04005375 // Battery level in uAh (0 - ~3,000,000 depending on device) when this event was created.
Makoto Onuki698f7a02018-02-13 15:02:23 -08005376 // OS: P
5377 FIELD_END_BATTERY_UA = 1306;
5378
5379 // Battery level in % (0-100) when the current "mode" started.
5380 // OS: P
5381 FIELD_START_BATTERY_PERCENT = 1307;
5382
5383 // Battery level in % (0-100) when this event was created.
5384 // OS: P
5385 FIELD_END_BATTERY_PERCENT = 1308;
5386
Christine Frankse257e452018-01-18 11:06:54 -08005387 // ACTION: Settings > Display > Night Light
5388 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5389 // CATEGORY: SETTINGS
5390 // OS: P
5391 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5392
5393 // ACTION: Settings > Display > Night Light
5394 // CATEGORY: SETTINGS
5395 // SUBTYPE: 0 is starting time, 1 is ending time
5396 // OS: P
5397 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5398
5399 // FIELD: Current mode corresponding to a QS tile
5400 // CATEGORY: QUICK SETTINGS
5401 // OS: P
5402 FIELD_QS_MODE = 1311;
5403
Jerry Zhang92306d82018-02-12 18:12:41 -08005404 // OPEN: Settings->Developer Options->Default USB
5405 // CATEGORY: SETTINGS
5406 // OS: P
5407 USB_DEFAULT = 1312;
5408
Jan Althaus31efdc32018-02-19 22:23:13 +01005409 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5410 // OS: P
5411 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5412
5413 // FIELD: milliseconds spent generating links.
5414 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5415 // OS: P
5416 FIELD_LINKIFY_LATENCY = 1314;
5417
5418 // FIELD: length of the input text in characters.
5419 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5420 // OS: P
5421 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5422
5423 // FIELD: number of links detected.
5424 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5425 // OS: P
5426 FIELD_LINKIFY_NUM_LINKS = 1316;
5427
5428 // FIELD: length of all links in characters.
5429 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5430 // OS: P
5431 FIELD_LINKIFY_LINK_LENGTH = 1317;
5432
5433 // FIELD: the type of entity the stats are for.
5434 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5435 // OS: P
5436 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5437
5438 // FIELD: a random uid for a single call to generateLinks
5439 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5440 // OS: P
5441 FIELD_LINKIFY_CALL_ID = 1319;
5442
Calin Juravle759fbda2018-02-20 19:52:30 +00005443 // FIELD: The compiler filter used when when optimizing the package.
5444 // Logged together with app transition events.
5445 // OS: P
5446 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5447
5448 // FIELD: The reason for optimizing the package.
5449 // Logged together with app transition events.
5450 // OS: P
5451 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5452
Emilian Peev6bf0a552018-02-10 02:15:49 +00005453 // FIELD: The camera API level used.
5454 // CATEGORY: CAMERA
5455 // OS: P
5456 FIELD_CAMERA_API_LEVEL = 1322;
5457
jackqdyulei73e6b342018-02-26 14:44:50 -08005458 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5459 // CATEGORY: SETTINGS
5460 // OS: P
5461 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5462
jackqdyuleibb60ea22018-02-26 17:18:12 -08005463 // OPEN: Settings > Battery > Battery tip
5464 // CATEGORY: SETTINGS
5465 // OS: P
5466 ACTION_BATTERY_TIP_SHOWN = 1324;
5467
Maggieb9d76322018-02-16 18:00:30 -08005468 // OPEN: Settings > Security & Location > Location > See all
5469 // CATEGORY: SETTINGS
5470 // OS: P
5471 RECENT_LOCATION_REQUESTS_ALL = 1325;
5472
Evan Laird404a85c2018-02-28 15:31:29 -05005473 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5474 // CATEGORY: GLOBAL_SYSTEM_UI
5475 // OS: P
5476 FIELD_GESTURE_X_PERCENT = 1326;
5477
5478 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5479 // CATEGORY: GLOBAL_SYSTEM_UI
5480 // OS: P
5481 FIELD_GESTURE_Y_PERCENT = 1327;
5482
5483 // ACTION: Expand the notification panel while unlocked
5484 // CATEGORY: GLOBAL_SYSTEM_UI
5485 // OS: P
5486 ACTION_PANEL_VIEW_EXPAND = 1328;
5487
Evan Laird404a85c2018-02-28 15:31:29 -05005488 // FIELD: Rotation of the device
5489 // CATEGORY: GLOBAL_SYSTEM_UI
5490 // OS: P
5491 FIELD_DEVICE_ROTATION = 1329;
5492
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005493 // OPEN: TV Settings > Inputs > Input Options
5494 // CATEGORY: SETTINGS
5495 // OS: P
5496 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5497
5498 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5499 // CATEGORY: SETTINGS
5500 // OS: P
5501 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5502
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005503 // ACTION: DND Settings > What to block > full screen intents
5504 // SUBTYPE: false is allowed, true is blocked
5505 // CATEGORY: SETTINGS
5506 // OS: 6.0
5507 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5508
5509 // ACTION: DND Settings > What to block
5510 // SUBTYPE: false is allowed, true is blocked
5511 // OS: P
5512 ACTION_ZEN_BLOCK_LIGHT = 1333;
5513
5514 // ACTION: DND Settings > What to block
5515 // SUBTYPE: false is allowed, true is blocked
5516 // OS: P
5517 ACTION_ZEN_BLOCK_PEEK = 1334;
5518
5519 // ACTION: DND Settings > What to block
5520 // SUBTYPE: false is allowed, true is blocked
5521 // OS: P
5522 ACTION_ZEN_BLOCK_STATUS = 1335;
5523
5524 // ACTION: DND Settings > What to block
5525 // SUBTYPE: false is allowed, true is blocked
5526 // OS: P
5527 ACTION_ZEN_BLOCK_BADGE = 1336;
5528
5529 // ACTION: DND Settings > What to block
5530 // SUBTYPE: false is allowed, true is blocked
5531 // OS: P
5532 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5533
5534 // ACTION: DND Settings > What to block
5535 // SUBTYPE: false is allowed, true is blocked
5536 // OS: P
5537 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5538
5539 // OPEN: DND Settings > What to block
5540 // OS: P
5541 ZEN_WHAT_TO_BLOCK = 1339;
5542
Beverly8fe33ba2018-03-05 14:32:35 -05005543 // ACTION: DND Settings > Priority only allows > System toggle
5544 // SUBTYPE: 0 is off, 1 is on
5545 // CATEGORY: SETTINGS
5546 // OS: P
5547 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5548
5549 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5550 // CATEGORY: SETTINGS
5551 // OS: P
5552 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5553
5554 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5555 // CATEGORY: SETTINGS
5556 // OS: P
5557 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5558
5559 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5560 // CATEGORY: SETTINGS
5561 // OS: P
5562 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5563
5564 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5565 // CATEGORY: SETTINGS
5566 // OS: P
5567 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5568
Julia Reynolds8dff1862018-03-06 14:20:40 -05005569 // Notification Guts, active app ops variant
5570 // OS: P
5571 APP_OPS_GUTS = 1345;
5572
5573 // ACTION: Notification Guts, active app ops variant > Settings button
5574 // OS: P
5575 ACTION_OPS_GUTS_SETTINGS = 1346;
5576
Lei Yu5674d2d2018-03-08 10:19:43 -08005577 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5578 // OS: P
5579 ACTION_APP_RESTRICTION_TIP = 1347;
5580
5581 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5582 // OS: P
5583 ACTION_HIGH_USAGE_TIP = 1348;
5584
Lei Yue93e5602018-03-08 12:15:38 -08005585 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5586 // OS: P
5587 ACTION_SUMMARY_TIP = 1349;
5588
5589 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5590 // OS: P
5591 ACTION_SMART_BATTERY_TIP = 1350;
5592
5593 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5594 // OS: P
5595 ACTION_EARLY_WARNING_TIP = 1351;
5596
5597 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5598 // OS: P
5599 ACTION_LOW_BATTERY_TIP = 1352;
5600
5601 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5602 // OS: P
5603 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5604
5605 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5606 // OS: P
5607 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5608
Victor Chang76817b82018-03-09 17:22:52 +00005609 // OPEN: Settings > Date & time > Select time zone -> Region
5610 // CATEGORY: SETTINGS
5611 // OS: P
5612 SETTINGS_ZONE_PICKER_REGION = 1355;
5613
5614 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5615 // CATEGORY: SETTINGS
5616 // OS: P
5617 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5618
5619 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5620 // CATEGORY: SETTINGS
5621 // OS: P
5622 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5623
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005624 // Action: notification shade > manage notifications
5625 // OS: P
5626 ACTION_MANAGE_NOTIFICATIONS = 1358;
5627
Chris Wrenaa571c62018-03-14 12:16:04 -04005628 // This value should never appear in log outputs - it is reserved for
5629 // internal platform metrics use.
5630 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5631
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005632 // OPEN: Settings > Gestures > Prevent Ringing
5633 // OS: P
5634 SETTINGS_PREVENT_RINGING = 1360;
5635
Lei Yue92285a2018-03-12 11:28:40 -07005636 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5637 // CATEGORY: SETTINGS
5638 // OS: P
5639 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5640
5641 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5642 // CATEGORY: SETTINGS
5643 // OS: P
5644 ACTION_TIP_RESTRICT_APP = 1362;
5645
5646 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5647 // CATEGORY: SETTINGS
5648 // OS: P
5649 ACTION_TIP_UNRESTRICT_APP = 1363;
5650
5651 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5652 // CATEGORY: SETTINGS
5653 // OS: P
5654 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5655
5656 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5657 // CATEGORY: SETTINGS
5658 // OS: P
5659 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5660
5661 // FIELD: type of anomaly in settings app
5662 // CATEGORY: SETTINGS
5663 // OS: P
5664 FIELD_ANOMALY_TYPE = 1366;
5665
Lei Yu4f704772018-03-20 10:51:58 -07005666 // ACTION: Settings > Anomaly receiver > Anomaly received
5667 // CATEGORY: SETTINGS
5668 // OS: P
5669 ACTION_ANOMALY_TRIGGERED = 1367;
5670
Fan Zhanga85b4872018-03-26 16:52:53 -07005671 // ACTION: Settings > Condition > Device muted
5672 // CATEGORY: SETTINGS
5673 // OS: P
5674 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5675
5676 // ACTION: Settings > Condition > Device vibrate
5677 // CATEGORY: SETTINGS
5678 // OS: P
5679 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5680
hughchen226196b2018-03-27 12:04:59 +08005681 // OPEN: Settings > Connected devices > previously connected devices
5682 // CATEGORY: SETTINGS
5683 // OS: P
5684 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005685
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005686 // ACTION: A Settings Slice is requested
5687 // CATEGORY: SETTINGS
5688 // OS: P
5689 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5690
5691 // ACTION: A Settings Slice is updated with new value
5692 // CATEGORY: SETTINGS
5693 // OS: P
5694 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5695
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005696 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5697 // note: Wifi Scanning must be off for this dialog to show
5698 // CATEGORY: SETTINGS
5699 // OS: P
5700 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5701
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005702 // OPEN: Settings > System > Gestures > Swipe up gesture
5703 // CATEGORY: SETTINGS
5704 // OS: P
5705 SETTINGS_GESTURE_SWIPE_UP = 1374;
5706
Jeff Sharkey46270712018-04-02 09:53:21 -06005707 // OPEN: Settings > Storage > Dialog to format a storage volume
5708 // CATEGORY: SETTINGS
5709 // OS: P
5710 DIALOG_VOLUME_FORMAT = 1375;
5711
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005712 // OPEN: DND onboarding activity > screen on checkbox
5713 // CATEGORY: SETTINGS
5714 // OS: P
5715 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5716
5717 // OPEN: DND onboarding activity > screen off checkbox
5718 // CATEGORY: SETTINGS
5719 // OS: P
5720 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5721
5722 // OPEN: DND onboarding activity > Ok button
5723 // CATEGORY: SETTINGS
5724 // OS: P
5725 ACTION_ZEN_ONBOARDING_OK = 1378;
5726
5727 // OPEN: DND onboarding activity > Settings link
5728 // CATEGORY: SETTINGS
5729 // OS: P
5730 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5731
5732 // OPEN: DND onboarding activity
5733 // CATEGORY: SETTINGS
5734 // OS: P
5735 SETTINGS_ZEN_ONBOARDING = 1380;
5736
Fan Zhanga496b122018-04-10 12:57:56 -07005737 // OPEN: Settings > Display > Auto brightness
5738 // CATEGORY: SETTINGS
5739 // OS: P
5740 SETTINGS_AUTO_BRIGHTNESS = 1381;
5741
Kenny Guy23991102018-04-05 21:18:38 +01005742 // OPEN: Smart replies in a notification seen at least once
5743 // CATEGORY: NOTIFICATION
5744 // PACKAGE: App that posted the notification
5745 // SUBTYPE: Number of smart replies.
5746 // OS: P
5747 SMART_REPLY_VISIBLE = 1382;
5748
5749 // ACTION: Smart reply in a notification clicked.
5750 // CATEGORY: NOTIFICATION
5751 // PACKAGE: App that posted the notification
5752 // SUBTYPE: Index of smart reply clicked.
5753 // OS: P
5754 SMART_REPLY_ACTION = 1383;
5755
5756 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5757 // OS: P
5758 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5759
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005760 // Volume dialog > ringer toggle
5761 // OS: P
5762 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5763
5764 // Volume dialog > settings button
5765 // OS: P
5766 ACTION_VOLUME_SETTINGS = 1386;
5767
Lei Yufc59a572018-04-10 10:52:08 -07005768 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5769 // CATEGORY: SETTINGS
5770 // OS: P
5771 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005772
Lei Yu97a13212018-04-11 15:45:31 -07005773 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5774 // CATEGORY: SETTINGS
5775 // OS: P
5776 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5777
5778 // FIELD: the version code of an app
5779 // CATEGORY: SETTINGS
5780 // OS: P
5781 FIELD_APP_VERSION_CODE = 1389;
Chris Wren77781d32016-01-11 14:49:26 -05005782
Salvador Martinez8e899682018-04-04 14:42:59 -07005783 // OPEN: Settings > Connected Devices > Bluetooth
5784 // CATEGORY: SETTINGS
5785 // OS: P
5786 BLUETOOTH_FRAGMENT = 1390;
5787
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005788 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5789 // an app uses a hidden API.
5790 ACTION_HIDDEN_API_ACCESSED = 1391;
5791
5792 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5793 // access; see enum HiddenApiAccessMethod
5794 // OS: P
5795 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5796
5797 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5798 // denied to the API.
5799 // OS: P
5800 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5801
5802 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5803 // API that was accessed.
5804 // OS: P
5805 FIELD_HIDDEN_API_SIGNATURE = 1394;
5806
Chris Wren8f7a1442018-05-14 17:16:31 -04005807 // The number of items in the shade when this notification event was logged.
5808 // OS: P
Dieter Hsud39f0d52018-04-14 02:08:30 +08005809 NOTIFICATION_SHADE_COUNT = 1395;
5810
Julia Reynolds5da746a2018-04-23 09:41:21 -04005811 // ACTION: DND Settings > What to block
5812 // OS: P
5813 ACTION_ZEN_SOUND_ONLY = 1396;
5814
5815 // ACTION: DND Settings > Notifications
5816 // OS: P
5817 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5818
5819 // ACTION: DND Settings > Notifications
5820 // OS: P
5821 ACTION_ZEN_SHOW_CUSTOM = 1398;
5822
5823 // ACTION: DND Settings > Notifications
5824 // OS: P
5825 ACTION_ZEN_CUSTOM = 1399;
5826
5827 // Screen: DND Settings > Notifications
5828 // OS: P
5829 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5830
Chris Wrend63dffd2018-04-19 11:12:46 -04005831 // An event category for slices.
5832 // OPEN: Slice became visible.
5833 // CLOSE: Slice became invisible.
5834 // ACTION: Slice was tapped.
5835 SLICE = 1401;
5836
5837 // The authority part of the slice URI
5838 FIELD_SLICE_AUTHORITY = 1402;
5839
5840 // The path part of the slice URI
5841 FIELD_SLICE_PATH = 1403;
5842
5843 // The authority part of the subslice URI
5844 FIELD_SUBSLICE_AUTHORITY = 1404;
5845
5846 // The path part of the subslice URI
5847 FIELD_SUBSLICE_PATH = 1405;
5848
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005849 // OPEN: DND onboarding activity > don't update button
5850 // CATEGORY: SETTINGS
5851 // OS: P
5852 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5853
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005854 // ACTION: Storage initialization wizard initialization choice of external/portable
5855 // CATEGORY: SETTINGS
5856 // OS: P
5857 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5858
5859 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5860 // CATEGORY: SETTINGS
5861 // OS: P
5862 ACTION_STORAGE_INIT_INTERNAL = 1408;
5863
5864 // ACTION: Storage initialization wizard benchmark fast choice of continue
5865 // CATEGORY: SETTINGS
5866 // OS: P
5867 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5868
5869 // ACTION: Storage initialization wizard benchmark slow choice of continue
5870 // CATEGORY: SETTINGS
5871 // OS: P
5872 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5873
5874 // ACTION: Storage initialization wizard benchmark slow choice of abort
5875 // CATEGORY: SETTINGS
5876 // OS: P
5877 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5878
5879 // ACTION: Storage initialization wizard migration choice of now
5880 // CATEGORY: SETTINGS
5881 // OS: P
5882 ACTION_STORAGE_MIGRATE_NOW = 1412;
5883
5884 // ACTION: Storage initialization wizard migration choice of later
5885 // CATEGORY: SETTINGS
5886 // OS: P
5887 ACTION_STORAGE_MIGRATE_LATER = 1413;
5888
Felipe Leme11166522018-05-07 10:18:47 -07005889 // Tag used to report whether an activity is being autofilled on compatibility mode.
Felipe Leme21fb1a32018-05-21 11:18:46 -07005890 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07005891 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5892
hughchen2bde4092018-05-10 18:04:25 +08005893 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005894 // CATEGORY: SETTINGS
5895 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005896 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5897
5898 // OPEN: Settings > Sound > Switch hfp devices dialog
5899 // CATEGORY: SETTINGS
5900 // OS: P
5901 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005902
Beverlyc4eb9342018-05-10 15:46:03 -04005903 // ACTION: User has started or ended charging
5904 // Type TYPE_DISMISS: Charging has ended
5905 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5906 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5907 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5908 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5909 // Tag FIELD_PLUG_TYPE: Charging plug type
5910 ACTION_CHARGE = 1417;
5911
5912 // Tag used to determine battery level when device started charging
5913 FIELD_BATTERY_LEVEL_START = 1418;
5914
5915 // Tag used to determine battery level when device ended charging
5916 FIELD_BATTERY_LEVEL_END = 1419;
5917
5918 // Tag used to determine length of charging
5919 FIELD_CHARGING_DURATION_MILLIS = 1420;
5920
5921 // Tag used to determine what type of charging was started/ended
5922 // 1 = Plugged AC
5923 // 2 = Plugged USB
5924 // 3 = Wireless
5925 FIELD_PLUG_TYPE = 1421;
5926
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005927 // ACTION: USB-C Connector connected.
5928 // CATEGORY: OTHER
5929 // OS: P
5930 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5931
5932 // ACTION: USB-C Connector disconnected.
5933 // CATEGORY: OTHER
5934 // OS: P
5935 // uses FIELD_DURATION_MILLIS for connected duration
5936 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5937
5938 // ACTION: USB-C Audio device connected
5939 // CATEGORY: OTHER
5940 // OS: P
5941 ACTION_USB_AUDIO_CONNECTED = 1424;
5942
5943 // FIELD: VIDPID of connected USB Audio device
5944 // CATEGORY: OTHER
5945 // OS: P
5946 FIELD_USB_AUDIO_VIDPID = 1425;
5947
5948 // ACTION: USB-C Audio device disconnected
5949 // CATEGORY: OTHER
5950 // OS: P
5951 // use FIELD_DURATION_MILLIS for time
5952 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5953
5954 // ACTION: Hardware failure event
5955 // CATEGORY: OTHER
5956 // OS: P
5957 ACTION_HARDWARE_FAILED = 1427;
5958
5959 // FIELD: Hardware failure category
5960 // CATEGORY: OTHER
5961 // OS: P
5962 // Uses enum HardwareType
5963 FIELD_HARDWARE_TYPE = 1428;
5964
5965 // FIELD: Hardware failure category
5966 // CATEGORY: OTHER
5967 // OS: P
5968 // Uses enum HardwareFailureCode
5969 FIELD_HARDWARE_FAILURE_CODE = 1429;
5970
5971 // ACTION: Physical drop event
5972 // CATEGORY: OTHER
5973 // OS: P
5974 // use FIELD_DURATION_MILLIS for time
5975 ACTION_PHYSICAL_DROP = 1430;
5976
5977 // FIELD: Confidence in detection of drop, in integer percentage.
5978 // CATEGORY: OTHER
5979 // OS: P
5980 FIELD_CONFIDENCE_PERCENT = 1431;
5981
5982 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5983 // CATEGORY: OTHER
5984 // OS: P
5985 FIELD_ACCEL_MILLI_G = 1432;
5986
5987 // ACTION: Battery health snapshot
5988 // CATEGORY: OTHER
5989 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07005990 // uses FIELD_END_BATTERY_PERCENT for instantaneous batt %
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005991 ACTION_BATTERY_HEALTH = 1433;
5992
5993 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5994 // CATEGORY: OTHER
5995 // OS: P
5996 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5997
Andrew Chantc03bc632018-05-18 10:52:00 -07005998 // FIELD: Battery temperature at snapshot, in 1/10 deg C.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005999 // CATEGORY: OTHER
6000 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006001 FIELD_BATTERY_TEMPERATURE_DECI_C = 1435;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006002
Andrew Chantc03bc632018-05-18 10:52:00 -07006003 // FIELD: Battery voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006004 // CATEGORY: OTHER
6005 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006006 FIELD_BATTERY_VOLTAGE_UV = 1436;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006007
Andrew Chantc03bc632018-05-18 10:52:00 -07006008 // FIELD: Battery open circuit voltage at snapshot, in microVolts.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006009 // CATEGORY: OTHER
6010 // OS: P
Andrew Chantc03bc632018-05-18 10:52:00 -07006011 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE_UV = 1437;
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006012
Andrew Chantc03bc632018-05-18 10:52:00 -07006013 // ACTION: Number of times the battery has charged beyond a
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006014 // fractional threshold of full capacity.
6015 // CATEGORY: OTHER
6016 // OS: P
6017 ACTION_BATTERY_CHARGE_CYCLES = 1438;
6018
Andrew Chantc03bc632018-05-18 10:52:00 -07006019 // FIELD: BATTERY_CHARGE_CYCLES - Number of times the battery has charged
6020 // beyond a fractional threshold of full
6021 // capacity. A comma-separated string of
6022 // buckets. If there are eight buckets,
6023 // each bucket represents charging to n/8
6024 // percent full.
Andrew Chantecdc0dc2018-05-10 14:16:07 -07006025 // CATEGORY: OTHER
6026 // OS: P
6027 FIELD_BATTERY_CHARGE_CYCLES = 1439;
6028
Beverly019d6f62018-05-15 16:16:54 -04006029 // ACTION: Hush gesture - volume up + power button
6030 // CATEGORY: GLOBAL_SYSTEM_UI
6031 // OS: P
6032 ACTION_HUSH_GESTURE = 1440;
6033
Petri Gynther778facb2018-05-18 22:59:50 -07006034 // OPEN: Settings -> Developer Options -> Disable Bluetooth A2DP hardware
6035 // offload
6036 // CATEGORY: SETTINGS
6037 // OS: P
6038 DIALOG_BLUETOOTH_DISABLE_A2DP_HW_OFFLOAD = 1441;
6039
Andrew Chantc03bc632018-05-18 10:52:00 -07006040 // ACTION: SLOW_IO - I/O operation took longer than threshold,
6041 // reported aggregated per day when > 0.
6042 // CATEGORY: OTHER
6043 // OS: P
6044 ACTION_SLOW_IO = 1442;
6045
6046 // FIELD: IO_OPERATION_TYPE - The IO Operation that caused the high latency.
6047 // The value is an integer from the enum IoOperation.
6048 // CATEGORY: OTHER
6049 // OS: P
6050 FIELD_IO_OPERATION_TYPE = 1443;
6051
6052 // FIELD: IO_OPERATION_COUNT - Count of how many times this slow IO operation happened
6053 // over the past 24hr (reported only if > 0).
6054 // CATEGORY: OTHER
6055 // OS: P
6056 FIELD_IO_OPERATION_COUNT = 1444;
6057
6058 // ACTION: Speaker Imedance - last recorded speaker impedance.
6059 // reported max once per 24hr.
6060 // CATEGORY: OTHER
6061 // OS: P
6062 ACTION_SPEAKER_IMPEDANCE = 1445;
6063
6064 // FIELD: Speaker Impedance in milliohms.
6065 // CATEGORY: OTHER
6066 // OS: P
6067 FIELD_SPEAKER_IMPEDANCE_MILLIOHMS = 1446;
6068
6069 // FIELD: Speaker Location - identifies one of several speakers on a device.
6070 // CATEGORY: OTHER
6071 // OS: P
6072 FIELD_SPEAKER_LOCATION = 1447;
6073
6074 // FIELD: Instantaneous battery resistance in microohms.
6075 // CATEGORY: OTHER
6076 // OS: P
6077 FIELD_BATTERY_RESISTANCE_UOHMS = 1448;
6078
6079 // FIELD: Instantaneous battery current - in microamps.
6080 // CATEGORY: OTHER
6081 // OS: P
6082 FIELD_BATTERY_CURRENT_UA = 1449;
6083
6084 // FIELD: HARDWARE_LOCATION - Identifier for instance of a hardware type on a
6085 // board.
6086 // CATEGORY: OTHER
6087 // OS: P
6088 FIELD_HARDWARE_LOCATION = 1450;
6089
6090 // ACTION: BATTERY_CAUSED_SHUTDOWN - shutdown due to low battery, the
6091 // action is logged after the subsequent boot.
6092 // CATEGORY: OTHER
6093 // OS: P
6094 ACTION_BATTERY_CAUSED_SHUTDOWN = 1451;
6095
Felipe Leme21fb1a32018-05-21 11:18:46 -07006096 // FIELD: Flags used on autofill-related metrics
6097 // OS: P
6098 FIELD_AUTOFILL_FLAGS = 1452;
6099
6100 // Tag used when the service returned an authenticated dataset or response.
6101 // Used to replace the following individual metrics, which now are logged as the value of this
6102 // field in the AUTOFILL_REQUEST metric:
6103 // - AUTOFILL_AUTHENTICATED;
6104 // - AUTOFILL_DATASET_AUTHENTICATED
6105 // - AUTOFILL_INVALID_AUTHENTICATION
6106 // - AUTOFILL_INVALID_DATASET_AUTHENTICATION
6107 // OS: P
6108 FIELD_AUTOFILL_AUTHENTICATION_STATUS = 1453;
6109
6110 // FIELD: Index of the autofill request inside of a session.
6111 // OS: P
6112 FIELD_AUTOFILL_REQUEST_ORDINAL = 1454;
6113
6114 // FIELD: Number of requests made to an autofill service during a session.
6115 // OS: P
6116 FIELD_AUTOFILL_NUMBER_REQUESTS = 1455;
6117
Felipe Leme833c99b2018-05-24 10:41:48 -07006118 // FIELD: Id of the autofill session associated with this metric.
6119 // OS: P
6120 FIELD_AUTOFILL_SESSION_ID = 1456;
6121
Chris Wren77781d32016-01-11 14:49:26 -05006122 // ---- End P Constants, all P constants go above this line ----
Chris Wren6c109522018-03-12 10:00:12 -04006123
Julia Reynoldsd6ba35c2018-06-18 09:29:19 -04006124 // Time since this notification last interrupted (visibly or audible) the user
6125 NOTIFICATION_SINCE_INTERRUPTION_MILLIS = 1500;
6126
6127 // OPEN: Notification interrupted the user, either audibly or visually.
6128 // Tagged data: NOTIFICATION_SINCE_INTERRUPTION_MILLIS
6129 // CATEGORY: NOTIFICATION
6130 NOTIFICATION_INTERRUPTION = 1501;
Chris Wren6c109522018-03-12 10:00:12 -04006131
Raff Tsaia2c3e7c2018-06-20 15:15:11 +08006132 // OPEN: Settings
6133 // CATEGORY: SETTINGS
6134 // OS: Q
6135 SETTINGS_HOMEPAGE = 1502;
6136
Fan Zhang0b6bc412018-06-21 17:19:02 -07006137 // OPEN: Settings > Create shortcut(widget)
6138 // CATEGORY: SETTINGS
6139 // OS: Q
6140 SETTINGS_CREATE_SHORTCUT = 1503;
Kevin Chyna56dff72018-06-19 18:41:12 -07006141
6142 // ACTION: Authenticate using fingerprint
6143 // CATEGORY: SETTINGS
6144 // OS: Q
6145 ACTION_FACE_AUTH = 1504;
6146
6147 // ACTION: Add fingerprint > Enroll fingerprint
6148 // CATEGORY: SETTINGS
6149 // OS: Q
6150 ACTION_FACE_ENROLL = 1505;
Kevin Chyn0e58dbd2018-06-27 18:44:02 -07006151
6152 // OPEN: Face Enroll introduction
6153 // CATEGORY: SETTINGS
6154 // OS: Q
6155 FACE_ENROLL_INTRO = 1506;
6156
6157 // OPEN: Face Enroll introduction
6158 // CATEGORY: SETTINGS
6159 // OS: Q
6160 FACE_ENROLL_ENROLLING = 1507;
6161
6162 // OPEN: Face Enroll introduction
6163 // CATEGORY: SETTINGS
6164 // OS: Q
6165 FACE_ENROLL_FINISHED = 1508;
Kevin Chyn3fdc2032018-07-02 14:21:55 -07006166
6167 // OPEN: Face Enroll sidecar
6168 // CATEGORY: SETTINGS
6169 // OS: Q
6170 FACE_ENROLL_SIDECAR = 1509;
6171
6172 // OPEN: Settings > Add face > Error dialog
Kevin Chyn1b35a862018-07-17 21:54:08 -07006173 // OS: Q
Kevin Chynf6e3c652018-07-13 17:48:50 -07006174 DIALOG_FACE_ERROR = 1510;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006175
6176 // OPEN: Settings > Security > Face
6177 // CATEGORY: SETTINGS
6178 // OS: Q
6179 FACE = 1511;
6180
timhypeng8c6885d2018-07-30 16:44:36 +08006181 // OPEN: Settings > Acessibility > HearingAid pairing instructions dialog
6182 // CATEGORY: SETTINGS
6183 // OS: Q
6184 DIALOG_ACCESSIBILITY_HEARINGAID = 1512;
6185
Michal Karpinski201bc0c2018-07-20 15:32:00 +01006186 // ACTION: Activity start
6187 // CATEGORY: OTHER
6188 // OS: Q (will also ship in PQ1A)
6189 ACTION_ACTIVITY_START = 1513;
6190
6191 // Tagged data for ACTION_ACTIVITY_START.
6192 // FIELD: Calling UID
6193 // CATEGORY: OTHER
6194 // OS: Q (will also ship in PQ1A)
6195 FIELD_CALLING_UID = 1514;
6196
6197 // Tagged data for ACTION_ACTIVITY_START.
6198 // FIELD: Calling package name
6199 // CATEGORY: OTHER
6200 // OS: Q (will also ship in PQ1A)
6201 FIELD_CALLING_PACKAGE_NAME = 1515;
6202
6203 // Tagged data for ACTION_ACTIVITY_START.
6204 // FIELD: Calling UID proc state
6205 // CATEGORY: OTHER
6206 // OS: Q (will also ship in PQ1A)
6207 FIELD_CALLING_UID_PROC_STATE = 1516;
6208
6209 // Tagged data for ACTION_ACTIVITY_START.
6210 // FIELD: Calling UID has any visible window
6211 // CATEGORY: OTHER
6212 // OS: Q (will also ship in PQ1A)
6213 FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1517;
6214
6215 // Tagged data for ACTION_ACTIVITY_START.
6216 // FIELD: Real calling UID
6217 // CATEGORY: OTHER
6218 // OS: Q (will also ship in PQ1A)
6219 FIELD_REAL_CALLING_UID = 1518;
6220
6221 // Tagged data for ACTION_ACTIVITY_START.
6222 // FIELD: Real calling UID proc state
6223 // CATEGORY: OTHER
6224 // OS: Q (will also ship in PQ1A)
6225 FIELD_REAL_CALLING_UID_PROC_STATE = 1519;
6226
6227 // Tagged data for ACTION_ACTIVITY_START.
6228 // FIELD: Real calling UID has any visible window
6229 // CATEGORY: OTHER
6230 // OS: Q (will also ship in PQ1A)
6231 FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW = 1520;
6232
6233 // Tagged data for ACTION_ACTIVITY_START.
6234 // FIELD: Target UID
6235 // CATEGORY: OTHER
6236 // OS: Q (will also ship in PQ1A)
6237 FIELD_TARGET_UID = 1521;
6238
6239 // Tagged data for ACTION_ACTIVITY_START.
6240 // FIELD: Target UID package name
6241 // CATEGORY: OTHER
6242 // OS: Q (will also ship in PQ1A)
6243 FIELD_TARGET_PACKAGE_NAME = 1522;
6244
6245 // Tagged data for ACTION_ACTIVITY_START.
6246 // FIELD: Target UID proc state
6247 // CATEGORY: OTHER
6248 // OS: Q (will also ship in PQ1A)
6249 FIELD_TARGET_UID_PROC_STATE = 1523;
6250
6251 // Tagged data for ACTION_ACTIVITY_START.
6252 // FIELD: Target UID has any visible window
6253 // CATEGORY: OTHER
6254 // OS: Q (will also ship in PQ1A)
6255 FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW = 1524;
6256
6257 // Tagged data for ACTION_ACTIVITY_START.
6258 // FIELD: Target doze whitelist tag
6259 // CATEGORY: OTHER
6260 // OS: Q (will also ship in PQ1A)
6261 FIELD_TARGET_WHITELIST_TAG = 1525;
6262
6263 // Tagged data for ACTION_ACTIVITY_START.
6264 // FIELD: Target short component name
6265 // CATEGORY: OTHER
6266 // OS: Q (will also ship in PQ1A)
6267 FIELD_TARGET_SHORT_COMPONENT_NAME = 1526;
6268
6269 // Tagged data for ACTION_ACTIVITY_START.
6270 // FIELD: Coming from pending intent
6271 // CATEGORY: OTHER
6272 // OS: Q (will also ship in PQ1A)
6273 FIELD_COMING_FROM_PENDING_INTENT = 1527;
6274
6275 // Tagged data for ACTION_ACTIVITY_START.
6276 // FIELD: Intent action
6277 // CATEGORY: OTHER
6278 // OS: Q (will also ship in PQ1A)
6279 FIELD_INTENT_ACTION = 1528;
6280
6281 // Tagged data for ACTION_ACTIVITY_START.
6282 // FIELD: Caller app process record process name
6283 // CATEGORY: OTHER
6284 // OS: Q (will also ship in PQ1A)
6285 FIELD_PROCESS_RECORD_PROCESS_NAME = 1529;
6286
6287 // Tagged data for ACTION_ACTIVITY_START.
6288 // FIELD: Caller app process record current proc state
6289 // CATEGORY: OTHER
6290 // OS: Q (will also ship in PQ1A)
6291 FIELD_PROCESS_RECORD_CUR_PROC_STATE = 1530;
6292
6293 // Tagged data for ACTION_ACTIVITY_START.
6294 // FIELD: Caller app process record has client activities
6295 // CATEGORY: OTHER
6296 // OS: Q (will also ship in PQ1A)
6297 FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES = 1531;
6298
6299 // Tagged data for ACTION_ACTIVITY_START.
6300 // FIELD: Caller app process record has foreground services
6301 // CATEGORY: OTHER
6302 // OS: Q (will also ship in PQ1A)
6303 FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES = 1532;
6304
6305 // Tagged data for ACTION_ACTIVITY_START.
6306 // FIELD: Caller app process record has foreground activities
6307 // CATEGORY: OTHER
6308 // OS: Q (will also ship in PQ1A)
6309 FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES = 1533;
6310
6311 // Tagged data for ACTION_ACTIVITY_START.
6312 // FIELD: Caller app process record has top UI
6313 // CATEGORY: OTHER
6314 // OS: Q (will also ship in PQ1A)
6315 FIELD_PROCESS_RECORD_HAS_TOP_UI = 1534;
6316
6317 // Tagged data for ACTION_ACTIVITY_START.
6318 // FIELD: Caller app process record has overlay UI
6319 // CATEGORY: OTHER
6320 // OS: Q (will also ship in PQ1A)
6321 FIELD_PROCESS_RECORD_HAS_OVERLAY_UI = 1535;
6322
6323 // Tagged data for ACTION_ACTIVITY_START.
6324 // FIELD: Caller app process record pending UI clean
6325 // CATEGORY: OTHER
6326 // OS: Q (will also ship in PQ1A)
6327 FIELD_PROCESS_RECORD_PENDING_UI_CLEAN = 1536;
6328
6329 // Tagged data for ACTION_ACTIVITY_START.
6330 // FIELD: Millis since caller app's process record last interaction event
6331 // CATEGORY: OTHER
6332 // OS: Q (will also ship in PQ1A)
6333 FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT = 1537;
6334
6335 // Tagged data for ACTION_ACTIVITY_START.
6336 // FIELD: Millis since caller app's process record fg interaction
6337 // CATEGORY: OTHER
6338 // OS: Q (will also ship in PQ1A)
6339 FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION = 1538;
6340
6341 // Tagged data for ACTION_ACTIVITY_START.
6342 // FIELD: Millis since caller app's process record last became unimportant
6343 // CATEGORY: OTHER
6344 // OS: Q (will also ship in PQ1A)
6345 FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT = 1539;
6346
6347 // Tagged data for ACTION_ACTIVITY_START.
6348 // FIELD: Activity record launch mode
6349 // CATEGORY: OTHER
6350 // OS: Q (will also ship in PQ1A)
6351 FIELD_ACTIVITY_RECORD_LAUNCH_MODE = 1540;
6352
6353 // Tagged data for ACTION_ACTIVITY_START.
6354 // FIELD: Activity record target activity
6355 // CATEGORY: OTHER
6356 // OS: Q (will also ship in PQ1A)
6357 FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY = 1541;
6358
6359 // Tagged data for ACTION_ACTIVITY_START.
6360 // FIELD: Activity record flags
6361 // CATEGORY: OTHER
6362 // OS: Q (will also ship in PQ1A)
6363 FIELD_ACTIVITY_RECORD_FLAGS = 1542;
6364
6365 // Tagged data for ACTION_ACTIVITY_START.
6366 // FIELD: Activity record real activity
6367 // CATEGORY: OTHER
6368 // OS: Q (will also ship in PQ1A)
6369 FIELD_ACTIVITY_RECORD_REAL_ACTIVITY = 1543;
6370
6371 // Tagged data for ACTION_ACTIVITY_START.
6372 // FIELD: Activity record short component name
6373 // CATEGORY: OTHER
6374 // OS: Q (will also ship in PQ1A)
6375 FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME = 1544;
6376
6377 // Tagged data for ACTION_ACTIVITY_START.
6378 // FIELD: Activity record process name
6379 // CATEGORY: OTHER
6380 // OS: Q (will also ship in PQ1A)
6381 FIELD_ACTIVITY_RECORD_PROCESS_NAME = 1545;
6382
6383 // Tagged data for ACTION_ACTIVITY_START.
6384 // FIELD: Activity record is fullscreen
6385 // CATEGORY: OTHER
6386 // OS: Q (will also ship in PQ1A)
6387 FIELD_ACTIVITY_RECORD_IS_FULLSCREEN = 1546;
6388
6389 // Tagged data for ACTION_ACTIVITY_START.
6390 // FIELD: Activity record is no display
6391 // CATEGORY: OTHER
6392 // OS: Q (will also ship in PQ1A)
6393 FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY = 1547;
6394
6395 // Tagged data for ACTION_ACTIVITY_START.
6396 // FIELD: Millis since activity was last visible
6397 // CATEGORY: OTHER
6398 // OS: Q (will also ship in PQ1A)
6399 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE = 1548;
6400
6401 // Tagged data for ACTION_ACTIVITY_START.
6402 // FIELD: Activity record's resultTo packageName
6403 // CATEGORY: OTHER
6404 // OS: Q (will also ship in PQ1A)
6405 FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME = 1549;
6406
6407 // Tagged data for ACTION_ACTIVITY_START.
6408 // FIELD: Activity record's resultTo shortComponentName
6409 // CATEGORY: OTHER
6410 // OS: Q (will also ship in PQ1A)
6411 FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME = 1550;
6412
6413 // Tagged data for ACTION_ACTIVITY_START.
6414 // FIELD: Activity record is visible
6415 // CATEGORY: OTHER
6416 // OS: Q (will also ship in PQ1A)
6417 FIELD_ACTIVITY_RECORD_IS_VISIBLE = 1551;
6418
6419 // Tagged data for ACTION_ACTIVITY_START.
6420 // FIELD: Activity record is visible ignoring keyguard
6421 // CATEGORY: OTHER
6422 // OS: Q (will also ship in PQ1A)
6423 FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD = 1552;
6424
6425 // Tagged data for ACTION_ACTIVITY_START.
6426 // FIELD: Millis since activity's last launch
6427 // CATEGORY: OTHER
6428 // OS: Q (will also ship in PQ1A)
6429 FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH = 1553;
Kevin Chyn1b35a862018-07-17 21:54:08 -07006430
Kevin Chyn2c94a292018-08-09 15:00:06 -07006431 // OPEN: Settings > Add face
6432 // OS: Q
6433 FACE_ENROLL_PREVIEW = 1554;
6434
Felipe Lemec9f32592018-08-02 14:57:11 -07006435 // Field used to indicate whether a save request was used to update existing user data.
6436 FIELD_AUTOFILL_UPDATE = 1555;
6437
tmfangf391da12018-08-15 17:01:40 +08006438 // OPEN: Settings > Network & Internet > Wi-Fi > Add network
6439 // CATEGORY: SETTINGS
6440 // OS: Q
6441 SETTINGS_WIFI_ADD_NETWORK = 1556;
6442
Chris Wren6c109522018-03-12 10:00:12 -04006443 // ---- End Q Constants, all Q constants go above this line ----
6444
Chris Wren77781d32016-01-11 14:49:26 -05006445 // Add new aosp constants above this line.
6446 // END OF AOSP CONSTANTS
6447 }
6448}