blob: 4b0a0d5cb0f6aa08e143e8d3445bd07cda6d732d [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
Chris Wren77781d32016-01-11 14:49:26 -0500208 // Known visual elements: views or controls.
209 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500210 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500211 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500212
213 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500214 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500215
216 // OPEN: Settings > Accessibility
217 // CATEGORY: SETTINGS
218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500219 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OPEN: Settings > Accessibility > Captions
222 // CATEGORY: SETTINGS
223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500224 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500225
226 // OPEN: Settings > Accessibility > [Service]
227 // CATEGORY: SETTINGS
228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500229 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500230
231 // OPEN: Settings > Accessibility > Color correction
232 // CATEGORY: SETTINGS
233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500234 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500235
236 // OPEN: Settings > Accessibility > Accessibility shortcut
237 // CATEGORY: SETTINGS
238 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500239 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500240
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700241 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
242 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
243 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500244 // CATEGORY: SETTINGS
245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500246 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500247
248 // OPEN: Settings > Accounts
249 // CATEGORY: SETTINGS
250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500251 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500252
253 // OPEN: Settings > Accounts > [Single Account Sync Settings]
254 // CATEGORY: SETTINGS
255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500256 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > Accounts > Add an account
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OPEN: Settings > Accounts > [List of accounts when more than one]
264 // CATEGORY: SETTINGS
265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500266 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Settings > Cellular network settings > APNs
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
274 // CATEGORY: SETTINGS
275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500276 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500277
278 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500279 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500282 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500285 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500286
287 // OPEN: Settings > Apps > Configure apps > App links > [App]
288 // CATEGORY: SETTINGS
289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500290 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500291
292 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500293 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Internal storage > Apps storage > [App]
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OPEN: Settings > Apps > [App info]
301 // CATEGORY: SETTINGS
302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500303 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500304
305 // OPEN: Settings > Memory > App usage > [App Memory usage]
306 // CATEGORY: SETTINGS
307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500308 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500309
310 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500311 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Memory > App usage
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OPEN: Settings > Bluetooth
319 // CATEGORY: SETTINGS
320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500321 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500322
323 // OPEN: Choose Bluetooth device (ex: when sharing)
324 // CATEGORY: SETTINGS
325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500326 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500327
328 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500329 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500330
331 // OPEN: Settings > Security > Choose screen lock
332 // CATEGORY: SETTINGS
333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500334 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OPEN: Settings > Security > Choose screen lock > Choose your password
337 // CATEGORY: SETTINGS
338 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500339 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500340
341 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
342 // CATEGORY: SETTINGS
343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500344 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500345
346 // OPEN: Settings > Security > Choose screen lock > Confirm your password
347 // CATEGORY: SETTINGS
348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500349 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500350
351 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
352 // CATEGORY: SETTINGS
353 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500354 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500355
356 // OPEN: Settings > Security > Encrypt phone
357 // CATEGORY: SETTINGS
358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500359 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500360
361 // OPEN: Settings > Security > Encrypt phone > Confirm
362 // CATEGORY: SETTINGS
363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500364 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500365
366 // OPEN: Settings > Search results
367 // CATEGORY: SETTINGS
368 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500369 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500370
371 // OPEN: Settings (Root page)
372 // CATEGORY: SETTINGS
373 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500374 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500375
376 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500377 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500378
379 // OPEN: Settings > Data usage
380 // CATEGORY: SETTINGS
381 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500382 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500383
384 // OPEN: Settings > Date & time
385 // CATEGORY: SETTINGS
386 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500387 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500388
389 // OPEN: Settings > Developer options
390 // CATEGORY: SETTINGS
391 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500392 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500393
394 // OPEN: Settings > About phone
395 // CATEGORY: SETTINGS
396 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500397 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500398
399 // OPEN: Settings > About phone > Status > IMEI information
400 // CATEGORY: SETTINGS
401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500402 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500403
404 // OPEN: Settings > Internal storage
405 // CATEGORY: SETTINGS
406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500407 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500408
409 // OPEN: Settings > About phone > Status > SIM status
410 // CATEGORY: SETTINGS
411 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500412 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500413
414 // OPEN: Settings > About phone > Status
415 // CATEGORY: SETTINGS
416 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500417 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500418
419 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500420 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: Settings > Display
423 // CATEGORY: SETTINGS
424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500425 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OPEN: Settings > Display > Daydream
428 // CATEGORY: SETTINGS
429 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500430 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500431
432 // OPEN: Settings > Security > Screen lock > Secure start-up
433 // CATEGORY: SETTINGS
434 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500435 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500436
437 // OPEN: Settings > Security > Nexus Imprint
438 // CATEGORY: SETTINGS
439 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500440 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500441
442 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500443 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 // OPEN: Settings > Battery > History details
446 // CATEGORY: SETTINGS
447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500448 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OPEN: Settings > Battery > Battery saver
451 // CATEGORY: SETTINGS
452 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500453 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500454
455 // OPEN: Settings > Battery > [App Use details]
456 // CATEGORY: SETTINGS
457 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500458 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500459
460 // OPEN: Settings > Battery
461 // CATEGORY: SETTINGS
462 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500463 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500464
465 // OPEN: Settings > Home
466 // CATEGORY: SETTINGS
467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500468 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500469
470 // OPEN: Settings > Security > SIM card lock settings
471 // CATEGORY: SETTINGS
472 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500473 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500474
475 // OPEN: Settings > Language & input
476 // CATEGORY: SETTINGS
477 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500478 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500479
480 // OPEN: Settings > Language & input > Physical keyboard
481 // CATEGORY: SETTINGS
482 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500483 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500484
485 // OPEN: Settings > Language & input > Spell checker
486 // CATEGORY: SETTINGS
487 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500488 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500489
490 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500491 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Language & input > Personal dictionary
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OPEN: Settings > Language & input > Add word
499 // CATEGORY: SETTINGS
500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500501 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500502
503 // OPEN: Settings > Location
504 // CATEGORY: SETTINGS
505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500506 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500507
508 // OPEN: Settings > Location > Location mode
509 // CATEGORY: SETTINGS
510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500511 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500512
513 // OPEN: Settings > Apps
514 // CATEGORY: SETTINGS
515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500516 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500517
518 // OPEN: Settings > Backup & reset > Factory data reset
519 // CATEGORY: SETTINGS
520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500521 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500522
523 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
524 // CATEGORY: SETTINGS
525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500526 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500527
528 // OPEN: Settings > Data usage > Network restrictions
529 // CATEGORY: SETTINGS
530 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500531 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500532
533 // OPEN: Settings > More > Android Beam
534 // CATEGORY: SETTINGS
535 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500536 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500537
538 // OPEN: Settings > Tap & pay
539 // CATEGORY: SETTINGS
540 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500541 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500542
543 // OPEN: Settings > Sound & notification
544 // CATEGORY: SETTINGS
545 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500546 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500547
548 // OPEN: Settings > Sound & notification > App notifications > [App]
549 // CATEGORY: SETTINGS
550 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500551 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500552
553 // OPEN: Settings > Sound & notification > Other sounds
554 // CATEGORY: SETTINGS
555 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500556 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500557
558 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500559 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings Widget > Notification log
562 // CATEGORY: SETTINGS
563 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500564 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500565
566 // OPEN: Settings > Sound & notification > Do not disturb
567 // CATEGORY: SETTINGS
568 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500569 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500570
571 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500572 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500573
574 // OPEN: Print job notification > Print job settings
575 // CATEGORY: SETTINGS
576 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500577 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500578
579 // OPEN: Settings > Printing > [Print Service]
580 // CATEGORY: SETTINGS
581 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500582 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500583
584 // OPEN: Settings > Printing
585 // CATEGORY: SETTINGS
586 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500587 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500588
589 // OPEN: Settings > Backup & reset
590 // CATEGORY: SETTINGS
591 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500592 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500593
594 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500595 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500596
597 // OPEN: Settings > Backup & reset > Network settings reset
598 // CATEGORY: SETTINGS
599 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500600 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500601
602 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
603 // CATEGORY: SETTINGS
604 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500605 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500606
607 // OPEN: Settings > Developer Options > Running Services
608 // CATEGORY: SETTINGS
609 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500610 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500611
612 // OPEN: Settings > Security > Screen pinning
613 // CATEGORY: SETTINGS
614 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500615 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500616
617 // OPEN: Settings > Security
618 // CATEGORY: SETTINGS
619 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500620 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500621
622 // OPEN: Settings > SIM cards
623 // CATEGORY: SETTINGS
624 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500625 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500626
627 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500628 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: Settings > More > Tethering & portable hotspot
631 // CATEGORY: SETTINGS
632 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500633 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500634
635 // OPEN: Settings > Security > Trust agents
636 // CATEGORY: SETTINGS
637 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500638 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500639
640 // OPEN: Settings > Security > Trusted credentials
641 // CATEGORY: SETTINGS
642 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500643 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500644
645 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
646 // CATEGORY: SETTINGS
647 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500648 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500649
650 // OPEN: Settings > Language & input > Text-to-speech output
651 // CATEGORY: SETTINGS
652 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500653 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500654
655 // OPEN: Settings > Security > Apps with usage access
656 // CATEGORY: SETTINGS
657 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500658 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500659
660 // OPEN: Settings > Users
661 // CATEGORY: SETTINGS
662 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500663 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500664
665 // OPEN: Settings > Users > [Restricted profile app & content access]
666 // CATEGORY: SETTINGS
667 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500668 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500669
670 // OPEN: Settings > Users > [User settings]
671 // CATEGORY: SETTINGS
672 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500673 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500674
675 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500676 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OPEN: Settings > More > VPN
679 // CATEGORY: SETTINGS
680 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500681 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500682
683 // OPEN: Settings > Display > Choose wallpaper from
684 // CATEGORY: SETTINGS
685 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500686 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500687
688 // OPEN: Settings > Display > Cast
689 // CATEGORY: SETTINGS
690 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500691 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500692
693 // OPEN: Settings > Wi-Fi
694 // CATEGORY: SETTINGS
695 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500696 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500697
698 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
699 // CATEGORY: SETTINGS
700 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500701 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500702
703 // OPEN: Settings > More > Wi-Fi Calling
704 // CATEGORY: SETTINGS
705 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500706 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500707
708 // OPEN: Settings > Wi-Fi > Saved networks
709 // CATEGORY: SETTINGS
710 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500711 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500712
713 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500714 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500717 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500718
719 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
720 // CATEGORY: SETTINGS
721 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500722 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OPEN: Settings > More
725 // CATEGORY: SETTINGS
726 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500727 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500728
729 // OPEN: Quick Settings Panel
730 // CATEGORY: QUICK_SETTINGS
731 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500732 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500733
734 // OPEN: QS Airplane mode tile shown
735 // ACTION: QS Airplane mode tile tapped
736 // SUBTYPE: 0 is off, 1 is on
737 // CATEGORY: QUICK_SETTINGS
738 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500739 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500740
741 // OPEN: QS Bluetooth tile shown
742 // ACTION: QS Bluetooth tile tapped
743 // SUBTYPE: 0 is off, 1 is on
744 // CATEGORY: QUICK_SETTINGS
745 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500746 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500747
748 // OPEN: QS Cast tile shown
749 // ACTION: QS Cast tile tapped
750 // CATEGORY: QUICK_SETTINGS
751 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500752 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500753
754 // OPEN: QS Cellular tile shown
755 // ACTION: QS Cellular tile tapped
756 // CATEGORY: QUICK_SETTINGS
757 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500758 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500759
760 // OPEN: QS Color inversion tile shown
761 // ACTION: QS Color inversion tile tapped
762 // SUBTYPE: 0 is off, 1 is on
763 // CATEGORY: QUICK_SETTINGS
764 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500765 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500766
767 // OPEN: QS Cellular tile > Cellular detail panel
768 // CATEGORY: QUICK_SETTINGS
769 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500770 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: QS Do not disturb tile shown
773 // ACTION: QS Do not disturb tile tapped
774 // SUBTYPE: 0 is off, 1 is on
775 // CATEGORY: QUICK_SETTINGS
776 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500777 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // OPEN: QS Flashlight tile shown
780 // ACTION: QS Flashlight tile tapped
781 // SUBTYPE: 0 is off, 1 is on
782 // CATEGORY: QUICK_SETTINGS
783 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500784 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500785
786 // OPEN: QS Hotspot tile shown
787 // ACTION: QS Hotspot tile tapped
788 // SUBTYPE: 0 is off, 1 is on
789 // CATEGORY: QUICK_SETTINGS
790 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500791 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500792
793 // OPEN: QS 3P tile shown
794 // ACTION: QS 3P tile tapped
795 // CATEGORY: QUICK_SETTINGS
796 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500797 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // OPEN: QS Location tile shown
800 // ACTION: QS Location tile tapped
801 // SUBTYPE: 0 is off, 1 is on
802 // CATEGORY: QUICK_SETTINGS
803 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500804 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500805
806 // OPEN: QS Rotation tile shown
807 // ACTION: QS Rotation tile tapped
808 // SUBTYPE: 0 is off, 1 is on
809 // CATEGORY: QUICK_SETTINGS
810 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500811 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500812
813 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500814 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500815
816 // OPEN: QS User list panel
817 // CATEGORY: QUICK_SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // OPEN: QS WiFi tile shown
822 // ACTION: QS WiFi tile tapped
823 // SUBTYPE: 0 is off, 1 is on
824 // CATEGORY: QUICK_SETTINGS
825 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500826 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500827
828 // OPEN: Notification Panel (including lockscreen)
829 // CATEGORY: NOTIFICATION
830 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500831 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500832
833 // OPEN: Notification in panel became visible.
834 // PACKAGE: App that posted the notification.
835 // ACTION: Notification is tapped.
836 // PACKAGE: App that posted the notification
837 // DETAIL: Notification is expanded by user.
838 // PACKAGE: App that posted the notification
839 // DISMISS: Notification is dismissed.
840 // PACKAGE: App that posted the notification
841 // SUBTYPE: Dismiss reason from NotificationManagerService.java
842 // CATEGORY: NOTIFICATION
843 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500844 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500845
846 // ACTION: User tapped notification action
847 // PACKAGE: App that posted the notification
848 // SUBTYPE: Index of action on notification
849 // CATEGORY: NOTIFICATION
850 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500851 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500852
853 // OPEN: Settings > Apps > Configure apps > App permissions
854 // CATEGORY: SETTINGS
855 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500856 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500857
858 // OPEN: Settings > Location > Scanning
859 // CATEGORY: SETTINGS
860 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500861 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500862
863 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500864 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OPEN: Settings > Sound & notification > App notifications
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // ACTION: Settings > Wi-Fi > Overflow > Add Network
872 // CATEGORY: SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700877 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500878 // CATEGORY: SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // ACTION: Settings > Wi-Fi > Overflow > Refresh
883 // CATEGORY: SETTINGS
884 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500885 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500886
887 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
888 // CATEGORY: SETTINGS
889 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500890 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500891
892 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700893 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500894 // CATEGORY: SETTINGS
895 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500896 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500897
898 // ACTION: Settings > Wi-Fi > Toggle on
899 // CATEGORY: SETTINGS
900 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500901 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500902
903 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500904 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // OPEN: Settings > Sound & notification > DND > Priority only allows
907 // CATEGORY: SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // OPEN: Settings > Sound & notification > DND > Automatic rules
912 // CATEGORY: SETTINGS
913 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500914 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500915
916 // OPEN: Settings > Apps > Configure apps > App links
917 // CATEGORY: SETTINGS
918 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500919 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500920
921 // OPEN: Settings > Sound & notification > DND > [Time based rule]
922 // CATEGORY: SETTINGS
923 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500924 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // OPEN: Settings > Sound & notification > DND > [External rule]
927 // CATEGORY: SETTINGS
928 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500929 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500930
931 // OPEN: Settings > Sound & notification > DND > [Event rule]
932 // CATEGORY: SETTINGS
933 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500934 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500935
936 // ACTION: App notification settings > Block Notifications
937 // CATEGORY: SETTINGS
938 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500939 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500940
941 // ACTION: Notification shade > Dismiss all button
942 // CATEGORY: NOTIFICATION
943 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500944 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500945
946 // OPEN: QS Do Not Disturb detail panel
947 // CATEGORY: QUICK_SETTINGS
948 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500949 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500950
951 // OPEN: QS Bluetooth detail panel
952 // CATEGORY: QUICK_SETTINGS
953 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500954 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // OPEN: QS Cast detail panel
957 // CATEGORY: QUICK_SETTINGS
958 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500959 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500960
961 // OPEN: QS Wi-Fi detail panel
962 // CATEGORY: QUICK_SETTINGS
963 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500964 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500965
966 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
967 // SUBTYPE: 0 is off, 1 is on
968 // CATEGORY: QUICK_SETTINGS
969 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500970 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
973 // SUBTYPE: 0 is off, 1 is on
974 // CATEGORY: QUICK_SETTINGS
975 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500976 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500977
978 // ACTION: QS Cellular detail panel > Cellular toggle
979 // SUBTYPE: 0 is off, 1 is on
980 // CATEGORY: QUICK_SETTINGS
981 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500982 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500983
984 // ACTION: QS User list panel > Select different user
985 // CATEGORY: QUICK_SETTINGS
986 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500987 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500988
989 // ACTION: QS Cast detail panel > Select cast device
990 // CATEGORY: QUICK_SETTINGS
991 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500992 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: QS Cast detail panel > Disconnect cast device
995 // CATEGORY: QUICK_SETTINGS
996 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500997 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500998
999 // ACTION: Settings > Bluetooth > Toggle
1000 // SUBTYPE: 0 is off, 1 is on
1001 // CATEGORY: SETTINGS
1002 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001003 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -05001004
1005 // ACTION: Settings > Bluetooth > Overflow > Refresh
1006 // CATEGORY: SETTINGS
1007 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001008 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -05001009
1010 // ACTION: Settings > Bluetooth > Overflow > Rename this device
1011 // CATEGORY: SETTINGS
1012 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001013 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -05001014
1015 // ACTION: Settings > Bluetooth > Overflow > Show received files
1016 // CATEGORY: SETTINGS
1017 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001018 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -05001019
1020 // ACTION: QS DND details panel > Increase / Decrease exit time
1021 // SUBTYPE: true is increase, false is decrease
1022 // CATEGORY: QUICK_SETTINGS
1023 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001024 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // ACTION: QS DND details panel > [Exit condition]
1027 // CATEGORY: QUICK_SETTINGS
1028 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001029 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -05001030
1031 // ACTION: QS DND details panel > [DND mode]
1032 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
1033 // CATEGORY: QUICK_SETTINGS
1034 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001035 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001036
1037 // ACTION: QS DND detail panel > DND toggle
1038 // SUBTYPE: 0 is off, 1 is on
1039 // CATEGORY: QUICK_SETTINGS
1040 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001041 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001042
1043 // ACTION: DND Settings > Priority only allows > Reminder toggle
1044 // SUBTYPE: 0 is off, 1 is on
1045 // CATEGORY: SETTINGS
1046 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001047 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001048
1049 // ACTION: DND Settings > Priority only allows > Event toggle
1050 // SUBTYPE: 0 is off, 1 is on
1051 // CATEGORY: SETTINGS
1052 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001053 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001054
1055 // ACTION: DND Settings > Priority only allows > Messages
1056 // SUBTYPE: 0 is off, 1 is on
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // ACTION: DND Settings > Priority only allows > Calls
1062 // SUBTYPE: 0 is off, 1 is on
1063 // CATEGORY: SETTINGS
1064 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001065 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001066
1067 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1068 // SUBTYPE: 0 is off, 1 is on
1069 // CATEGORY: SETTINGS
1070 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001071 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001072
1073 // ACTION: DND Settings > Automatic rules > Add rule
1074 // CATEGORY: SETTINGS
1075 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001076 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001077
1078 // ACTION: DND Settings > Automatic rules > Add rule > OK
1079 // CATEGORY: SETTINGS
1080 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001081 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001082
1083 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1084 // CATEGORY: SETTINGS
1085 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001086 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001087
1088 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1089 // CATEGORY: SETTINGS
1090 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001091 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001092
1093 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1094 // SUBTYPE: 0 is off, 1 is on
1095 // CATEGORY: SETTINGS
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // ACTION: Settings > More > Airplane mode toggle
1100 // SUBTYPE: 0 is off, 1 is on
1101 // CATEGORY: SETTINGS
1102 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001103 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001104
1105 // ACTION: Settings > Data usage > Cellular data toggle
1106 // SUBTYPE: 0 is off, 1 is on
1107 // CATEGORY: SETTINGS
1108 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001109 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001110
1111 // OPEN: Settings > Sound & notification > Notification access
1112 // CATEGORY: SETTINGS
1113 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001114 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001115
1116 // OPEN: Settings > Sound & notification > Do Not Disturb access
1117 // CATEGORY: SETTINGS
1118 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001119 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001120
1121 // OPEN: Settings > Apps > Configure apps > Default Apps
1122 // CATEGORY: SETTINGS
1123 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001124 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001125
1126 // OPEN: Settings > Internal storage > Apps storage
1127 // CATEGORY: SETTINGS
1128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001129 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001130
1131 // OPEN: Settings > Security > Usage access
1132 // CATEGORY: SETTINGS
1133 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001134 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001135
1136 // OPEN: Settings > Battery > Battery optimization
1137 // CATEGORY: SETTINGS
1138 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001139 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001140
1141 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001142 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // ACTION: Lockscreen > Unlock gesture
1145 // CATEGORY: GLOBAL_SYSTEM_UI
1146 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001147 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001148
1149 // ACTION: Lockscreen > Pull shade open
1150 // CATEGORY: GLOBAL_SYSTEM_UI
1151 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001152 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001153
1154 // ACTION: Lockscreen > Tap on lock, shows hint
1155 // CATEGORY: GLOBAL_SYSTEM_UI
1156 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001157 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001158
1159 // ACTION: Lockscreen > Camera
1160 // CATEGORY: GLOBAL_SYSTEM_UI
1161 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001162 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001163
1164 // ACTION: Lockscreen > Dialer
1165 // CATEGORY: GLOBAL_SYSTEM_UI
1166 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001167 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001168
1169 // ACTION: Lockscreen > Tap on lock, locks phone
1170 // CATEGORY: GLOBAL_SYSTEM_UI
1171 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001172 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // ACTION: Lockscreen > Tap on notification, false touch rejection
1175 // CATEGORY: GLOBAL_SYSTEM_UI
1176 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001177 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001178
1179 // ACTION: Lockscreen > Swipe down to open quick settings
1180 // CATEGORY: GLOBAL_SYSTEM_UI
1181 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001182 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001183
1184 // ACTION: Swipe down to open quick settings when unlocked
1185 // CATEGORY: GLOBAL_SYSTEM_UI
1186 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001187 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001188
1189 // ACTION: Notification shade > Tap to open quick settings
1190 // CATEGORY: GLOBAL_SYSTEM_UI
1191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001192 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001193
1194 // OPEN: Lockscreen
1195 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1196 // CATEGORY: GLOBAL_SYSTEM_UI
1197 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001198 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1201 // CATEGORY: GLOBAL_SYSTEM_UI
1202 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001203 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // OPEN: Screen turned on
1206 // SUBTYPE: 2 is user action
1207 // CATEGORY: GLOBAL_SYSTEM_UI
1208 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001209 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001210
1211 // OPEN: Notification caused sound, vibration, and/or LED blink
1212 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1213 // CATEGORY: NOTIFICATION
1214 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001215 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001216
1217 // ACTION: Lockscreen > Emergency Call button
1218 // CATEGORY: GLOBAL_SYSTEM_UI
1219 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001220 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001221
1222 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1223 // CATEGORY: SETTINGS
1224 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001225 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001226
1227 // OPEN: Settings > Memory
1228 // CATEGORY: SETTINGS
1229 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001230 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001231
1232 // ACTION: Settings > Display > When device is rotated
1233 // CATEGORY: SETTINGS
1234 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001235 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001236
1237 // ACTION: Long press on notification to view controls
1238 // CATEGORY: NOTIFICATION
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Notificatoin controls > Info button
1243 // CATEGORY: NOTIFICATION
1244 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001245 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001246
1247 // ACTION: Notification controls > Settings button
1248 // CATEGORY: NOTIFICATION
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // OPEN: Volume Dialog (with hardware buttons)
1253 // CATEGORY: GLOBAL_SYSTEM_UI
1254 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001255 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001256
1257 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1258 // CATEGORY: GLOBAL_SYSTEM_UI
1259 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001260 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001261
1262 // ACTION: Volume dialog > Adjust volume slider
1263 // SUBTYPE: volume level (0-7)
1264 // CATEGORY: GLOBAL_SYSTEM_UI
1265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001266 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001267
1268 // ACTION: Volume dialog > Select non-active stream
1269 // SUBTYPE: stream (defined in AudioSystem.java)
1270 // CATEGORY: GLOBAL_SYSTEM_UI
1271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001272 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001273
1274 // ACTION: Adjust volume with hardware key
1275 // SUBTYPE: volume level (0-7)
1276 // CATEGORY: GLOBAL_SYSTEM_UI
1277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001278 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // ACTION: Volume dialog > Mute a stream by tapping icon
1281 // SUBTYPE: mute is 1, audible is 2
1282 // CATEGORY: GLOBAL_SYSTEM_UI
1283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001284 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001285
1286 // ACTION: Volume dialog > Change ringer mode by tapping icon
1287 // SUBTYPE: 2 is audible, 3 is vibrate
1288 // CATEGORY: GLOBAL_SYSTEM_UI
1289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001290 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // ACTION: Chooser shown (share target, file open, etc.)
1293 // CATEGORY: GLOBAL_SYSTEM_UI
1294 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001295 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001296
1297 // ACTION: Chooser > User taps an app target
1298 // SUBTYPE: Index of target
1299 // CATEGORY: GLOBAL_SYSTEM_UI
1300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001301 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // ACTION: Chooser > User taps a service target
1304 // SUBTYPE: Index of target
1305 // CATEGORY: GLOBAL_SYSTEM_UI
1306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001307 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001308
1309 // ACTION: Chooser > User taps a standard target
1310 // SUBTYPE: Index of target
1311 // CATEGORY: GLOBAL_SYSTEM_UI
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // ACTION: QS Brightness Slider (with auto brightness disabled)
1316 // SUBTYPE: slider value
1317 // CATEGORY: QUICK_SETTINGS
1318 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001319 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001320
1321 // ACTION: QS Brightness Slider (with auto brightness enabled)
1322 // SUBTYPE: slider value
1323 // CATEGORY: QUICK_SETTINGS
1324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001325 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001326
1327 // OPEN: Settings > Display > Brightness Slider
1328 // CATEGORY: SETTINGS
1329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001330 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001331
Christine Franks47175c32017-03-14 10:21:25 -07001332 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001333 // CATEGORY: SETTINGS
1334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001335 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001336
1337 // OPEN: Display has entered dream mode
1338 // CATEGORY: GLOBAL_SYSTEM_UI
1339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001340 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001341
1342 // OPEN: Display has entered ambient notification mode
1343 // CATEGORY: GLOBAL_SYSTEM_UI
1344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001345 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001346
1347 // OPEN: Overview
1348 // CATEGORY: GLOBAL_SYSTEM_UI
1349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001350 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // OPEN: Settings > About phone > Legal information
1353 // CATEGORY: SETTINGS
1354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001355 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001356
1357 // OPEN: Settings > Search > Perform search
1358 // CATEGORY: SETTINGS
1359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001360 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001361
1362 // OPEN: Settings > System UI Tuner
1363 // CATEGORY: SETTINGS
1364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001365 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // OPEN: Settings > System UI Tuner > Quick Settings
1368 // CATEGORY: SETTINGS
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // OPEN: Settings > System UI Tuner > Demo mode
1373 // CATEGORY: SETTINGS
1374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001375 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001376
1377 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1378 // PACKAGE: Tile
1379 // CATEGORY: SETTINGS
1380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001381 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001382
1383 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1384 // PACKAGE: Tile
1385 // CATEGORY: SETTINGS
1386 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001387 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001388
1389 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1390 // PACKAGE: Tile
1391 // CATEGORY: SETTINGS
1392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001393 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001394
1395 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1396 // PACKAGE: Icon
1397 // CATEGORY: SETTINGS
1398 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001399 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001400
1401 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1402 // PACKAGE: Icon
1403 // CATEGORY: SETTINGS
1404 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001405 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001406
1407 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1408 // SUBTYPE: false is disabled, true is enabled
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1414 // SUBTYPE: false is disabled, true is enabled
1415 // CATEGORY: SETTINGS
1416 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001417 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001418
1419 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1420 // SUBTYPE: 0 is disabled, 1 is enabled
1421 // CATEGORY: SETTINGS
1422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001423 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001424
1425 // OPEN: Settings > Developer options > Inactive apps
1426 // CATEGORY: SETTINGS
1427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001428 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001429
1430 // ACTION: Long press home to bring up assistant
1431 // CATEGORY: GLOBAL_SYSTEM_UI
1432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001433 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001434
1435 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1436 // CATEGORY: SETTINGS
1437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001438 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001439
1440 // OPEN: Fingerprint Enroll > Find Sensor
1441 // CATEGORY: SETTINGS
1442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001443 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001444
1445 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1446 // CATEGORY: SETTINGS
1447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001448 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001449
1450 // OPEN: Fingerprint Enroll introduction
1451 // CATEGORY: SETTINGS
1452 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001453 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001454
1455 // OPEN: Fingerprint Enroll onboarding
1456 // CATEGORY: SETTINGS
1457 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001458 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001459
1460 // OPEN: Fingerprint Enroll > Let's Start!
1461 // CATEGORY: SETTINGS
1462 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001463 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001464
1465 // OPEN: Fingerprint Enroll SUW > Let's Start!
1466 // CATEGORY: SETTINGS
1467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001468 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001469
1470 // OPEN: Fingerprint Enroll SUW > Find Sensor
1471 // CATEGORY: SETTINGS
1472 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001473 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001474
1475 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1476 // CATEGORY: SETTINGS
1477 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001478 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001479
1480 // OPEN: Fingerprint Enroll SUW introduction
1481 // CATEGORY: SETTINGS
1482 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001483 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001484
1485 // OPEN: Fingerprint Enroll SUW onboarding
1486 // CATEGORY: SETTINGS
1487 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001488 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001489
1490 // ACTION: Add fingerprint > Enroll fingerprint
1491 // CATEGORY: SETTINGS
1492 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001493 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001494
1495 // ACTION: Authenticate using fingerprint
1496 // CATEGORY: SETTINGS
1497 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001498 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001499
1500 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1501 // CATEGORY: SETTINGS
1502 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001503 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1506 // CATEGORY: SETTINGS
1507 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001508 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // ACTION: Double tap camera shortcut
1511 // CATEGORY: GLOBAL_SYSTEM_UI
1512 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001513 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001514
1515 // ACTION: Double twist camera shortcut
1516 // CATEGORY: GLOBAL_SYSTEM_UI
1517 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001518 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001519
1520 // OPEN: QS Work Mode tile shown
1521 // ACTION: QS Work Mode tile tapped
1522 // SUBTYPE: 0 is off, 1 is on
1523 // CATEGORY: QUICK_SETTINGS
1524 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001525 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001526
1527 // OPEN: Settings > Developer Options > Background Check
1528 // CATEGORY: SETTINGS
1529 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001530 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001531
1532 // OPEN: QS Lock tile shown
1533 // ACTION: QS Lock tile tapped
1534 // SUBTYPE: 0 is off, 1 is on
1535 // CATEGORY: QUICK_SETTINGS
1536 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001537 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001538
1539 // OPEN: QS User Tile shown
1540 // CATEGORY: QUICK_SETTINGS
1541 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001542 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001543
1544 // OPEN: QS Battery tile shown
1545 // CATEGORY: QUICK_SETTINGS
1546 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001547 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001548
1549 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1550 // CATEGORY: SETTINGS
1551 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001552 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001553
1554 // ACTION: Visual interruptions > No screen interuptions toggle
1555 // SUBTYPE: 0 is off, 1 is on
1556 // CATEGORY: SETTINGS
1557 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001558 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001559
1560 // ACTION: Visual interruptions > No notification light toggle
1561 // SUBTYPE: 0 is off, 1 is on
1562 // CATEGORY: SETTINGS
1563 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001564 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001565
Julia Reynolds005c8b92017-08-24 10:35:53 -04001566 // OPEN: Settings > Notifications > [App] > Channel Notifications
Chris Wren7c516842016-03-01 16:44:32 -05001567 // CATEGORY: SETTINGS
1568 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001569 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001570
1571 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1572 // PACKAGE: Selected SMS app
1573 // CATEGORY: SETTINGS
1574 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001575 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001576
1577 // OPEN: QS Color modification tile shown
1578 // ACTION: QS Color modification tile tapped
1579 // SUBTYPE: 0 is off, 1 is on
1580 // CATEGORY: QUICK_SETTINGS
1581 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001582 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001583
1584 // OPEN: QS Custom tile shown
1585 // ACTION: QS Work Mode tile tapped
1586 // CATEGORY: QUICK_SETTINGS
1587 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001588 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001589
1590 // ACTION: Visual interruptions > Never turn off the screen toggle
1591 // SUBTYPE: 0 is off, 1 is on
1592 // CATEGORY: SETTINGS
1593 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001594 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001595
Chris Wren7c516842016-03-01 16:44:32 -05001596 // ACTION: Overview > Long-press task, drag to enter split-screen
1597 // CATEGORY: GLOBAL_SYSTEM_UI
1598 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001599 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1600
Chris Wren7c516842016-03-01 16:44:32 -05001601 // ACTION: In App > Long-press Overview button to enter split-screen
1602 // CATEGORY: GLOBAL_SYSTEM_UI
1603 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001604 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1605
Chris Wren7c516842016-03-01 16:44:32 -05001606 // ACTION: In App > Swipe Overview button to enter split-screen
1607 // CATEGORY: GLOBAL_SYSTEM_UI
1608 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001609 ACTION_WINDOW_DOCK_SWIPE = 272;
1610
Chris Wren7c516842016-03-01 16:44:32 -05001611 // ACTION: Launch profile-specific app > Confirm credentials
1612 // CATEGORY: GLOBAL_SYSTEM_UI
1613 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001614 PROFILE_CHALLENGE = 273;
1615
Chris Wren7c516842016-03-01 16:44:32 -05001616 // OPEN: QS Battery detail panel
1617 // CATEGORY: GLOBAL_SYSTEM_UI
1618 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001619 QS_BATTERY_DETAIL = 274;
1620
Chris Wren7c516842016-03-01 16:44:32 -05001621 // OPEN: Overview > History
1622 // CATEGORY: GLOBAL_SYSTEM_UI
1623 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001624 OVERVIEW_HISTORY = 275;
1625
Chris Wren7c516842016-03-01 16:44:32 -05001626 // ACTION: Overview > Page by tapping Overview button
1627 // CATEGORY: GLOBAL_SYSTEM_UI
1628 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001629 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001630
Chris Wren7c516842016-03-01 16:44:32 -05001631 // ACTION: Overview > Select app
1632 // CATEGORY: GLOBAL_SYSTEM_UI
1633 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001634 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001635
Chris Wren7c516842016-03-01 16:44:32 -05001636 // ACTION: View emergency info
1637 // CATEGORY: GLOBAL_SYSTEM_UI
1638 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001639 ACTION_VIEW_EMERGENCY_INFO = 278;
1640
Chris Wren7c516842016-03-01 16:44:32 -05001641 // ACTION: Edit emergency info activity
1642 // CATEGORY: SETTINGS
1643 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001644 ACTION_EDIT_EMERGENCY_INFO = 279;
1645
Chris Wren7c516842016-03-01 16:44:32 -05001646 // ACTION: Edit emergency info field
1647 // CATEGORY: SETTINGS
1648 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001649 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1650
Chris Wren7c516842016-03-01 16:44:32 -05001651 // ACTION: Add emergency contact
1652 // CATEGORY: SETTINGS
1653 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001654 ACTION_ADD_EMERGENCY_CONTACT = 281;
1655
Chris Wren7c516842016-03-01 16:44:32 -05001656 // ACTION: Delete emergency contact
1657 // CATEGORY: SETTINGS
1658 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001659 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1660
Chris Wren7c516842016-03-01 16:44:32 -05001661 // ACTION: Call emergency contact
1662 // CATEGORY: SETTINGS
1663 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001664 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001665
Chris Wren7c516842016-03-01 16:44:32 -05001666 // OPEN: QS Data Saver tile shown
1667 // ACTION: QS Data Saver tile tapped
1668 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001669 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001670
Robin Lee8c1306e2016-02-01 11:37:02 +00001671 // OPEN: Settings > Security > User credentials
1672 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001673 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001674 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001675
Chris Wren7c516842016-03-01 16:44:32 -05001676 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1677 // CATEGORY: GLOBAL_SYSTEM_UI
1678 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001679 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001680
1681 // Logged when the user scrolls through overview manually
1682 OVERVIEW_SCROLL = 287;
1683
1684 // Logged when the overview times out automatically selecting an app
1685 OVERVIEW_SELECT_TIMEOUT = 288;
1686
1687 // Logged when a user dismisses a task in overview
1688 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001689
1690 // Logged when the user modifying the notification importance slider.
1691 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1692
1693 // Logged when the user saves a modification to notification importance. Negative numbers
1694 // indicate the user lowered the importance; positive means they increased it.
1695 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // ACTION: Long-press power button, then tap "Take bug report" option.
1698 // CATEGORY: GLOBAL_SYSTEM_UI
1699 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001700 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: Long-press power button, then long-press "Take bug report" option.
1703 // CATEGORY: GLOBAL_SYSTEM_UI
1704 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001705 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1708 // CATEGORY: SETTINGS
1709 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001710 // Interactive bug report initiated from Settings.
1711 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1712
Chris Wren7c516842016-03-01 16:44:32 -05001713 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1714 // CATEGORY: SETTINGS
1715 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001716 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001717 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1718
Chris Wren7c516842016-03-01 16:44:32 -05001719 // ACTION: User tapped notification action to cancel a bug report
1720 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001721 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001722 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1723
Chris Wren7c516842016-03-01 16:44:32 -05001724 // ACTION: User tapped notification action to launch bug report details screen
1725 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001726 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001727 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1728
Chris Wren7c516842016-03-01 16:44:32 -05001729 // ACTION: User tapped notification action to take adition screenshot on bug report
1730 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001731 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001732 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1733
Chris Wren7c516842016-03-01 16:44:32 -05001734 // ACTION: User tapped notification to share bug report
1735 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001736 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001737 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1738
Chris Wren7c516842016-03-01 16:44:32 -05001739 // ACTION: User changed bug report name using the details screen
1740 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001741 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001742 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1743
Chris Wren7c516842016-03-01 16:44:32 -05001744 // ACTION: User changed bug report title using the details screen
1745 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001746 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001747 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1748
Chris Wren7c516842016-03-01 16:44:32 -05001749 // ACTION: User changed bug report description using the details screen
1750 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001751 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001752 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1753
Chris Wren7c516842016-03-01 16:44:32 -05001754 // ACTION: User tapped Save in the bug report details screen.
1755 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001756 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001757 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1758
Chris Wren7c516842016-03-01 16:44:32 -05001759 // ACTION: User tapped Cancel in the bug report details screen.
1760 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001761 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001762 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001763
1764 // Tuner: Open/close calibrate dialog.
1765 TUNER_CALIBRATE_DISPLAY = 305;
1766
1767 // Tuner: Open/close color and appearance.
1768 TUNER_COLOR_AND_APPEARANCE = 306;
1769
1770 // Tuner: Apply calibrate dialog.
1771 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1772
1773 // Tuner: Open/close night mode.
1774 TUNER_NIGHT_MODE = 308;
1775
1776 // Tuner: Change night mode.
1777 ACTION_TUNER_NIGHT_MODE = 309;
1778
1779 // Tuner: Change night mode auto.
1780 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1781
1782 // Tuner: Change night mode adjust dark theme.
1783 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1784
1785 // Tuner: Change night mode adjust tint.
1786 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1787
1788 // Tuner: Change night mode adjust brightness.
1789 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1790
1791 // Tuner: Change do not disturb in volume panel.
1792 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1793
1794 // Tuner: Change do not disturb volume buttons shortcut.
1795 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001796
1797 // Logs the action the user takes when an app crashed.
1798 ACTION_APP_CRASH = 316;
1799
1800 // Logs the action the user takes when an app ANR'd.
1801 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001802
1803 // Logged when a user double taps the overview button to launch the previous task
1804 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001805
1806 // Logged when we execute an app transition. This indicates the total delay from startActivity
1807 // until the app transition is starting to animate, in milliseconds.
1808 APP_TRANSITION_DELAY_MS = 319;
1809
1810 // Logged when we execute an app transition. This indicates the reason why the transition
1811 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1812 APP_TRANSITION_REASON = 320;
1813
1814 // Logged when we execute an app transition and we drew a starting window. This indicates the
1815 // delay from startActivity until the starting window was drawn.
1816 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1817
1818 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1819 // the delay from startActivity until all windows have been drawn.
1820 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1821
1822 // Logged when we execute an app transition. This indicates the component name of the current
1823 // transition.
1824 APP_TRANSITION_COMPONENT_NAME = 323;
1825
1826 // Logged when we execute an app transition. This indicates whether the process was already
1827 // running.
1828 APP_TRANSITION_PROCESS_RUNNING = 324;
1829
1830 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1831 // the transition was executed.
1832 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001833
Chris Wren38f98812016-07-13 14:28:40 -04001834 // ACTION: app requested access to a scoped directory, user granted it.
1835 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1836 // CATEGORY: GLOBAL_SYSTEM_UI
1837 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001838 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1839
Chris Wren38f98812016-07-13 14:28:40 -04001840 // ACTION: app requested access to a scoped directory, user denied it.
1841 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1842 // CATEGORY: GLOBAL_SYSTEM_UI
1843 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001844 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1845
Chris Wren38f98812016-07-13 14:28:40 -04001846 // ACTION: app requested access to a scoped directory, user granted it.
1847 // PACKAGE: app that requested access
1848 // CATEGORY: GLOBAL_SYSTEM_UI
1849 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001850 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1851
Chris Wren38f98812016-07-13 14:28:40 -04001852 // ACTION: app requested access to a scoped directory, user denied it.
1853 // PACKAGE: app that requested access.
1854 // CATEGORY: GLOBAL_SYSTEM_UI
1855 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001856 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1857
Chris Wren38f98812016-07-13 14:28:40 -04001858 // ACTION: app requested access to a directory user has already been granted
1859 // access before.
1860 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1861 // CATEGORY: GLOBAL_SYSTEM_UI
1862 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001863 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1864
Chris Wren38f98812016-07-13 14:28:40 -04001865 // ACTION: app requested access to a directory user has already been granted
1866 // access before.
1867 // PACKAGE: app that requested access.
1868 // CATEGORY: GLOBAL_SYSTEM_UI
1869 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001870 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001871
Chris Wren38f98812016-07-13 14:28:40 -04001872 // ACTION: Logged when the user slides a notification and reveals the gear
1873 // beneath it.
1874 // CATEGORY: NOTIFICATION
1875 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001876 ACTION_REVEAL_GEAR = 332;
1877
Chris Wren38f98812016-07-13 14:28:40 -04001878 // ACTION: Logged when the user taps on the gear beneath a notification.
1879 // CATEGORY: NOTIFICATION
1880 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001881 ACTION_TOUCH_GEAR = 333;
1882
Ruben Brunke24b9a62016-02-16 21:38:24 -08001883 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001884 // CATEGORY: SETTINGS
1885 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001886 VR_MANAGE_LISTENERS = 334;
1887
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001889 // CATEGORY: SETTINGS
1890 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001891 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001892
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001894 // CATEGORY: SETTINGS
1895 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001896 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001897
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001899 // CATEGORY: SETTINGS
1900 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001902
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001904 // CATEGORY: SETTINGS
1905 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001906 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001907
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001909 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001911
Jason Monk6f5354d2016-03-08 14:18:08 -05001912 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001913 // CATEGORY: SETTINGS
1914 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001915 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001916
Jason Monk6f5354d2016-03-08 14:18:08 -05001917 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001918 // CATEGORY: SETTINGS
1919 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001920 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001921
Jason Monk6f5354d2016-03-08 14:18:08 -05001922 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001923 // CATEGORY: SETTINGS
1924 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001925 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001926
Jason Monk6f5354d2016-03-08 14:18:08 -05001927 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001928 // CATEGORY: SETTINGS
1929 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001930 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001931
Jason Monk6f5354d2016-03-08 14:18:08 -05001932 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001933 // CATEGORY: SETTINGS
1934 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001935 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001936
Jason Monk6f5354d2016-03-08 14:18:08 -05001937 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001938 // CATEGORY: SETTINGS
1939 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001940 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001941
Jason Monk6f5354d2016-03-08 14:18:08 -05001942 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001943 // CATEGORY: SETTINGS
1944 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001945 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001946
Jason Monk6f5354d2016-03-08 14:18:08 -05001947 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001948 // CATEGORY: SETTINGS
1949 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001950 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001951
Jason Monk6f5354d2016-03-08 14:18:08 -05001952 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001953 // CATEGORY: SETTINGS
1954 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001955 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001956
Jason Monk6f5354d2016-03-08 14:18:08 -05001957 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001958 // CATEGORY: SETTINGS
1959 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001960 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1961
1962 // Used for generic logging of Settings Preference Persistence, should not be used
1963 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001964 // CATEGORY: SETTINGS
1965 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001966 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001967
Jason Monk6f5354d2016-03-08 14:18:08 -05001968 // Settings -> Apps -> Gear -> Special access
1969 SPECIAL_ACCESS = 351;
1970
Muyuan Lia2129992016-03-03 18:30:39 -08001971 // Logs that the user docks window via shortcut key.
1972 WINDOW_DOCK_SHORTCUTS = 352;
1973
Felipe Lemeadccb992016-03-09 17:40:49 -08001974 // User already denied access to the request folder; action takes an integer
1975 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001976 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001977 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1978
1979 // User already denied access to the request folder; action pass package name
1980 // of calling package.
1981 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1982
1983 // User denied access to the request folder and checked 'Do not ask again';
1984 // action takes an integer 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_DENIED_AND_PERSIST_BY_FOLDER = 355;
1987
1988 // User denied access to the request folder and checked 'Do not ask again';
1989 // action pass package name of calling package.
1990 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1991
Winson3b6ba1a2016-03-22 15:37:54 -07001992 // Logged when a user dismisses all task in overview
1993 OVERVIEW_DISMISS_ALL = 357;
1994
Jason Monk96defbe2016-03-29 16:51:03 -04001995 // Quick Settings -> Edit
1996 QS_EDIT = 358;
1997
1998 // Quick Settings -> Edit -> Overflow -> Reset
1999 ACTION_QS_EDIT_RESET = 359;
2000
2001 // QS -> Edit - Drag a tile out of the active tiles.
2002 // The _SPEC contains either the spec of the tile or
2003 // the package of the 3rd party app in the PKG field.
2004 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2005 ACTION_QS_EDIT_REMOVE = 361;
2006
2007 // QS -> Edit - Drag a tile into the active tiles.
2008 // The _SPEC contains either the spec of the tile or
2009 // the package of the 3rd party app in the PKG field.
2010 ACTION_QS_EDIT_ADD_SPEC = 362;
2011 ACTION_QS_EDIT_ADD = 363;
2012
2013 // QS -> Edit - Drag a tile within the active tiles.
2014 // The _SPEC contains either the spec of the tile or
2015 // the package of the 3rd party app in the PKG field.
2016 ACTION_QS_EDIT_MOVE_SPEC = 364;
2017 ACTION_QS_EDIT_MOVE = 365;
2018
2019 // Long-press on a QS tile. Tile spec in package field.
2020 ACTION_QS_LONG_PRESS = 366;
2021
Anna Galuszadad131f2016-03-22 13:49:02 -07002022 // OPEN: SUW Welcome Screen -> Vision Settings
2023 // CATEGORY: SETTINGS
2024 // OS: N
2025 SUW_ACCESSIBILITY = 367;
2026
Casey Burkhardtf4e98032017-03-22 22:52:24 -07002027 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
2028 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
2029 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07002030 // ACTION: New magnification gesture configuration is chosen
2031 // SUBTYPE: 0 is off, 1 is on
2032 // CATEGORY: SETTINGS
2033 // OS: N
2034 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2035
2036 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2037 // ACTION: New font size is chosen
2038 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2039 // CATEGORY: SETTINGS
2040 // OS: N
2041 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2042
2043 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2044 // ACTION: New display size is chosen
2045 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2046 // CATEGORY: SETTINGS
2047 // OS: N
2048 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2049
2050 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2051 // ACTION: New screen reader configuration is chosen
2052 // SUBTYPE: 0 is off, 1 is on
2053 // CATEGORY: SETTINGS
2054 // OS: N
2055 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2056
Jason Monkc3620392016-03-30 15:46:03 -04002057 // ------- Begin N Settings conditionals -----
2058 // Conditionals are the green bars at the top of the settings dashboard
2059 // All conditionals will have visible/hide events onResume/onPause
2060 // but they will also be used as extra ints in the
2061 // dismiss/expand/collapse/click/button events
2062
2063 // swipe away conditional
2064 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2065
2066 // click on collapsed conditional or clicks expand button
2067 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2068
2069 // click collapse button on expanded conditional
2070 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2071
2072 // click main area of expanded conditional
2073 ACTION_SETTINGS_CONDITION_CLICK = 375;
2074
2075 // click a direct button on expanded conditional
2076 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2077
2078 // Airplane mode on
2079 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2080 // AKA Data saver on
2081 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2082 // Battery saver on
2083 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2084 // Cellular data off
2085 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2086 // Do not disturb on
2087 SETTINGS_CONDITION_DND = 381;
2088 // Hotspot on
2089 SETTINGS_CONDITION_HOTSPOT = 382;
2090 // Work profile off
2091 SETTINGS_CONDITION_WORK_MODE = 383;
2092
Jason Monk1b5d87b2016-03-30 16:03:15 -04002093 // ------- Begin N Settings suggestions -----
2094 // Since suggestions come from system apps, suggestions will
2095 // have generic constants and the package providing the suggestion
2096 // will be put in the package field. For suggestions in the Settings
2097 // package, the class name will be filled in instead (since settings
2098 // provides several suggetions).
2099
2100 // Settings shown/hidden on main settings dashboard.
2101 // These are actually visibility events, but visible/hidden doesn't
2102 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002103 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2104 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002105
2106 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002107 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002108
2109 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002110 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002111
Jason Monk397df682016-03-28 15:48:34 -04002112 // Settings > Apps > Gear > Special Access > Premium SMS access
2113 PREMIUM_SMS_ACCESS = 388;
2114
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002115 // Logged when the user resizes the docked stack. Arguments:
2116 // 0: Split 50:50
2117 // 1: Docked smaller
2118 // 2: Docked larger
2119 ACTION_WINDOW_DOCK_RESIZE = 389;
2120
2121 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2122 // 0: Docked gets maximized
2123 // 1: Fullscreen gets maximized
2124 ACTION_WINDOW_UNDOCK_MAX = 390;
2125
2126 // User tried to dock an unresizable app.
2127 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2128
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002129 // System UI Tuner > Other > Power notification controls
2130 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2131
2132 // System UI Tuner > Other > Power notification controls > Toggle on/off
2133 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2134
Chris Wren38f98812016-07-13 14:28:40 -04002135 // Action: user enable / disabled data saver using Settings
2136 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2137 // VALUE: 1 for enabled, 0 for disabled
2138 // CATEGORY: SETTINGS
2139 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002140 ACTION_DATA_SAVER_MODE = 394;
2141
Chris Wren38f98812016-07-13 14:28:40 -04002142 // User whitelisted an app for Data Saver mode; action pass package name of app
2143 // Action: user enable / disabled data saver using Settings
2144 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2145 // or
2146 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2147 // VALUE: package name of APP
2148 // CATEGORY: SETTINGS
2149 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002150 ACTION_DATA_SAVER_WHITELIST = 395;
2151
Chris Wren38f98812016-07-13 14:28:40 -04002152 // User blacklisted an app for Data Saver mode; action pass package name of app
2153 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2154 // VALUE: package name of APP
2155 // CATEGORY: SETTINGS
2156 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002157 ACTION_DATA_SAVER_BLACKLIST = 396;
2158
Adrian Roosceeb04c2016-04-25 14:00:54 -07002159 // User opened a remote input view associated with a notification. Passes package name of app
2160 // that posted the notification. Note that this can also happen transiently during notification
2161 // reinflation.
2162 ACTION_REMOTE_INPUT_OPEN = 397;
2163
2164 // User attempt to send data through a remote input view associated with a notification.
2165 // Passes package name of app that posted the notification. May succeed or fail.
2166 ACTION_REMOTE_INPUT_SEND = 398;
2167
2168 // Failed attempt to send data through a remote input view associated with a
2169 // notification. Passes package name of app that posted the notification.
2170 ACTION_REMOTE_INPUT_FAIL = 399;
2171
2172 // User closed a remote input view associated with a notification. Passes package name of app
2173 // that posted the notification. Note that this can also happen transiently during notification
2174 // reinflation.
2175 ACTION_REMOTE_INPUT_CLOSE = 400;
2176
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002177 // OPEN: Settings > Accounts > Work profile settings
2178 // CATEGORY: SETTINGS
2179 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2180
Jason Monk25118d12016-05-10 13:25:50 -04002181 // Settings -> Dev options -> Convert to file encryption
2182 CONVERT_FBE = 402;
2183
2184 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2185 CONVERT_FBE_CONFIRM = 403;
2186
2187 // Settings -> Dev options -> Running services
2188 RUNNING_SERVICES = 404;
2189
Jason Monka1f697f2016-05-06 15:09:44 -04002190 // The dialog shown by 3P intent to change current webview implementation.
2191 WEBVIEW_IMPLEMENTATION = 405;
2192
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002193 // Settings launched from expanded quick settings.
2194 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2195
Chris Wren698b1702016-05-23 11:16:32 -04002196 // Notification expansion state toggled by the expand affordance.
2197 ACTION_NOTIFICATION_EXPANDER = 407;
2198
2199 // Notification group expansion state toggled by the expand affordance.
2200 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2201
Chris Wren7ee84182016-05-27 13:34:02 -04002202
Chris Wren6abeeb92016-05-26 14:44:38 -04002203 // Notification expansion state toggled by the expand gesture.
2204 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2205
2206 // Notification group expansion state toggled by the expand gesture.
2207 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2208
Bhavik Singh3451da42016-06-01 18:25:59 -07002209 // User performs gesture that activates the ambient display
2210 // 1: Gesture performed is Nudge
2211 // 2: Gesture performed is Pickup
2212 // 4: Gesture performed is Double Tap
2213 ACTION_AMBIENT_GESTURE = 411;
2214
Jason Monk9fa5f822016-05-11 10:26:31 -04002215 // ---- End N Constants, all N constants go above this line ----
2216
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002217 // ------- Begin N App Disambig Shade -----
2218 // Application disambig shade opened or closed with a featured app.
2219 // These are actually visibility events, but visible/hidden doesn't
2220 // take a package, so these are being logged as actions.
2221 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002222 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2223 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002224
2225 // Application disambig shade opened or closed without a featured app.
2226 // These are actually visibility events, but visible/hidden doesn't
2227 // take a package, so these are being logged as actions.
2228 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002229 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2230 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002231
2232 // User opens in an app by pressing “Always” in the application disambig shade.
2233 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002234 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002235
2236 // User opens in an app by pressing “Just Once” in the application disambig shade.
2237 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002238 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002239
2240 // User opens in an app by tapping on its name in the application disambig shade.
2241 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002242 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002243
Daniel Nishi010aa492016-05-11 09:42:24 -07002244 // OPEN: Settings > Internal storage > Storage manager
2245 // CATEGORY: SETTINGS
2246 STORAGE_MANAGER_SETTINGS = 458;
2247
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002248 // OPEN: Settings -> Gestures
2249 // CATEGORY: SETTINGS
2250 SETTINGS_GESTURES = 459;
2251
Daniel Nishi597e67f2016-05-18 13:56:13 -07002252 // ------ Begin Deletion Helper ------
2253 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2254 // SUBTYPE: false is off, true is on
2255 // CATEGORY: SETTINGS
2256 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002257
Daniel Nishi597e67f2016-05-18 13:56:13 -07002258 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2259 // SUBTYPE: false is off, true is on
2260 // CATEGORY: SETTINGS
2261 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2262
2263 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2264 // CATEGORY: SETTINGS
2265 // PACKAGE: Unchecked app
2266 ACTION_DELETION_SELECTION_APP_ON = 462;
2267
2268 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2269 // CATEGORY: SETTINGS
2270 // PACKAGE: Checked app
2271 ACTION_DELETION_SELECTION_APP_OFF = 463;
2272
2273 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2274 // SUBTYPE: false is expanded, true is collapsed
2275 // CATEGORY: SETTINGS
2276 ACTION_DELETION_APPS_COLLAPSED = 464;
2277
2278 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2279 // SUBTYPE: false is off, true is on
2280 // CATEGORY: SETTINGS
2281 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2282
2283 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2284 // SUBTYPE: false is expanded, true is collapsed
2285 // CATEGORY: SETTINGS
2286 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2287
2288 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2289 // CATEGORY: SETTINGS
2290 ACTION_DELETION_HELPER_CLEAR = 467;
2291
2292 // ACTION: Settings > Storage > Free Up Space > Cancel
2293 // CATEGORY: SETTINGS
2294 ACTION_DELETION_HELPER_CANCEL = 468;
2295
2296 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2297 // CATEGORY: SETTINGS
2298 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2299
2300 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2301 // CATEGORY: SETTINGS
2302 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2303
2304 // Deletion helper encountered an error during package deletion.
2305 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2306
2307 // Deletion helper encountered an error during downloads folder deletion.
2308 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2309
2310 // Deletion helper encountered an error during photo and video deletion.
2311 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2312
Fan Zhang5e956e82016-05-06 10:51:47 -07002313 // OPEN: Settings (root page if there are multiple tabs)
2314 // CATEGORY: SETTINGS
2315 DASHBOARD_CONTAINER = 474;
2316
2317 // OPEN: Settings -> SUPPORT TAB
2318 // CATEGORY: SETTINGS
2319 SUPPORT_FRAGMENT = 475;
2320
2321 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002322 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002323 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002324
2325 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002326 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002327 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2328
Fan Zhanga1985502016-06-16 16:48:38 -07002329 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002330 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002331 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2332
2333 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002334 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002335 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2336
2337 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002338 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002339 ACTION_SUPPORT_SIGN_IN = 480;
2340
2341 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002342 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002343 ACTION_SUPPORT_PHONE = 481;
2344
2345 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002346 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002347 ACTION_SUPPORT_CHAT = 482;
2348
2349 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002350 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002351 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2352
2353 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002354 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002355 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2356
Fan Zhang80807212016-06-30 12:26:55 -07002357 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002358 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002359 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2360
2361 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002362 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002363 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2364
2365 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002366 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002367 ACTION_SUPPORT_DIAL_TOLLED = 487;
2368
Justin Klaassen19494272016-07-18 21:38:24 -07002369 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002370 // CATEGORY: SETTINGS
2371 NIGHT_DISPLAY_SETTINGS = 488;
2372
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002373 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002374 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002375 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2376
Jason Monk484fd362016-07-13 15:24:32 -04002377 // Settings launched from collapsed quick settings.
2378 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2379
Justin Klaassen19494272016-07-18 21:38:24 -07002380 // OPEN: QS Night Light tile shown
2381 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002382 // SUBTYPE: 0 is off, 1 is on
2383 // CATEGORY: QUICK_SETTINGS
2384 QS_NIGHT_DISPLAY = 491;
2385
Justin Klaassen19494272016-07-18 21:38:24 -07002386 // Night Light on
2387 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2388
Doris Ling3c00afb2016-07-19 17:04:21 -07002389 // System navigation key up.
2390 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2391
2392 // System navigation key down.
2393 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2394
Doris Ling6dd3e462016-08-04 13:17:27 -07002395 // OPEN: Settings > Display -> Ambient Display
2396 // CATEGORY: SETTINGS
2397 ACTION_AMBIENT_DISPLAY = 495;
2398
Adrian Roos159ef7b2016-02-25 11:58:32 -08002399 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2400
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002401 // ACTION: The lockscreen gets shown because the SIM card was removed
2402 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2403 // CATEGORY: GLOBAL_SYSTEM_UI
2404 // OS: N-MR2
2405 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2406
2407 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2408
Clara Bayarric17a5982016-04-15 12:26:47 +01002409 // ------- Begin N Keyboard Shortcuts Helper -----
2410 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002411 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002412
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002413 // OPEN: Print Preview screen
2414 // Package: Package of app where print job is from
2415 PRINT_PREVIEW = 501;
2416
2417 // OPEN: User expands full print job options shade in print preview.
2418 PRINT_JOB_OPTIONS = 502;
2419
2420 // OPEN: “All Printers” screen for selecting printer
2421 // Subtype: # of printers listed
2422 PRINT_ALL_PRINTERS = 503;
2423
2424 // OPEN: “Add Printers” screen for adding printers
2425 // Subtype: # of enabled print service listed
2426 PRINT_ADD_PRINTERS = 504;
2427
2428 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2429 // Package: Package of print service.
2430 ACTION_PRINT = 505;
2431
2432 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2433 // Count all ACTION_PRINTER_SELECT_ALL actions.
2434 // Package: Package of print service tied to printer
2435 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2436
2437 // ACTION: User selects a printer from the “All printers” screen.
2438 // Package: Package of print service tied to printer
2439 ACTION_PRINTER_SELECT_ALL = 507;
2440
2441 // ACTION: User changes an option for the print job from print preview.
2442 // Subtype: 1: Copies
2443 // 2: Color mode
2444 // 3: Duplex mode
2445 // 4: Media (==Paper) size
2446 // 5: Orientation
2447 // 6: Page range
2448 // Package: Package of print service tied to printer
2449 ACTION_PRINT_JOB_OPTIONS = 508;
2450
2451 // ACTION: User searches for printer from All Printers
2452 ACTION_PRINTER_SEARCH = 509;
2453
2454 // ACTION: User selects “Add print service” button from All Printers
2455 ACTION_PRINT_SERVICE_ADD = 510;
2456
2457 // ACTION: User Enables/Disables Print Service via any means.
2458 // Subtype: 0: Enabled
2459 // 1: Disabled
2460 ACTION_PRINT_SERVICE_TOGGLE = 511;
2461
2462 // ACTION: User installs print recommended print service
2463 // Package: Package of print service
2464 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2465
Doris Ling88a6b162016-08-08 16:17:43 -07002466 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2467 // SUBTYPE: sub settings classname
2468 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2469
Fan Zhang92c60382016-08-08 14:03:53 -07002470 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2471 USER_DICTIONARY_SETTINGS = 514;
2472
2473 // OPEN: Settings > Date & time > Select time zone
2474 ZONE_PICKER = 515;
2475
2476 // OPEN: Settings > Security > Device administrators
2477 DEVICE_ADMIN_SETTINGS = 516;
2478
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002479 // ACTION: Managed provisioning was launched to set this package as DPC app.
2480 // PACKAGE: DPC's package name.
2481 PROVISIONING_DPC_PACKAGE_NAME = 517;
2482
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002483 // ACTION: Managed provisioning triggered DPC installation.
2484 // PACKAGE: Package name of package which installed DPC.
2485 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2486
2487 // ACTION: Logged when provisioning activity finishes.
2488 // TIME: Indicates time taken by provisioning activity to finish in MS.
2489 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2490
2491 // ACTION: Logged when preprovisioning activity finishes.
2492 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2493 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2494
2495 // ACTION: Logged when encrypt device activity finishes.
2496 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2497 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2498
2499 // ACTION: Logged when web activity finishes.
2500 // TIME: Indicates total time taken by web activity to finish in MS.
2501 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2502
2503 // ACTION: Logged when trampoline activity finishes.
2504 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2505 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2506
2507 // ACTION: Logged when encryption activity finishes.
2508 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2509 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2510
2511 // ACTION: Logged when finalization activity finishes.
2512 // TIME: Indicates time taken by finalization activity to finish in MS.
2513 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002514
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002515 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002516 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002517
Fan Zhang95094182016-08-24 18:14:16 -07002518 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002519 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002520
2521 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002522 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002523
2524 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002525 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002526
2527 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002528 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002529
2530 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002531 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002532
Fan Zhangc1352ae2016-09-16 12:46:11 -07002533 // OPEN: Settings > Security > Use one lock dialog
2534 DIALOG_UNIFICATION_CONFIRMATION = 532;
2535
2536 // OPEN: Settings > Security > User Credential
2537 DIALOG_USER_CREDENTIAL = 533;
2538
2539 // OPEN: Settings > Accounts > Remove account
2540 DIALOG_REMOVE_USER = 534;
2541
2542 // OPEN: Settings > Accounts > Confirm auto sync dialog
2543 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2544
2545 // OPEN: Settings > Apps > Dialog for running service details
2546 DIALOG_RUNNIGN_SERVICE = 536;
2547
2548 // OPEN: Settings > Dialog for hiding home settings
2549 DIALOG_NO_HOME = 537;
2550
2551 // OPEN: Settings > Bluetooth > Rename this device
2552 DIALOG_BLUETOOTH_RENAME = 538;
2553
2554 // OPEN: Settings > Bluetooth > Paired device profile
2555 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2556
2557 // OPEN: Settings > Battery optimization > details for app
2558 DIALOG_HIGH_POWER_DETAILS = 540;
2559
2560 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2561 DIALOG_KEYBOARD_LAYOUT = 541;
2562
2563 // OPEN: Settings > Wifi > WPS Setup dialog
2564 DIALOG_WPS_SETUP = 542;
2565
2566 // OPEN: Settings > WIFI Scan permission dialog
2567 DIALOG_WIFI_SCAN_MODE = 543;
2568
2569 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2570 DIALOG_WIFI_SKIP = 544;
2571
2572 // OPEN: Settings > Wireless > VPN > Config dialog
2573 DIALOG_LEGACY_VPN_CONFIG = 545;
2574
2575 // OPEN: Settings > Wireless > VPN > Config dialog for app
2576 DIALOG_VPN_APP_CONFIG = 546;
2577
2578 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2579 DIALOG_VPN_CANNOT_CONNECT = 547;
2580
2581 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2582 DIALOG_VPN_REPLACE_EXISTING = 548;
2583
2584 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2585 DIALOG_BILLING_CYCLE = 549;
2586
2587 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2588 DIALOG_BILLING_BYTE_LIMIT = 550;
2589
2590 // OPEN: Settings > Billing cycle > turn on data limit dialog
2591 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2592
2593 // OPEN: Settings > Service > Turn off notification access dialog
2594 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2595
2596 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2597 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2598
2599 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2600 DIALOG_ZEN_ACCESS_GRANT = 554;
2601
2602 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2603 DIALOG_ZEN_ACCESS_REVOKE = 555;
2604
2605 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2606 DIALOG_ZEN_TIMEPICKER = 556;
2607
2608 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2609 DIALOG_SERVICE_ACCESS_WARNING = 557;
2610
2611 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2612 DIALOG_APP_INFO_ACTION = 558;
2613
2614 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2615 DIALOG_VOLUME_FORGET = 559;
2616
2617 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2618 DIALOG_VOLUME_SLOW_WARNING = 560;
2619
2620 // OPEN: Settings > Storage > Dialog for initializing a volume
2621 DIALOG_VOLUME_INIT = 561;
2622
2623 // OPEN: Settings > Storage > Dialog for unmounting a volume
2624 DIALOG_VOLUME_UNMOUNT = 562;
2625
2626 // OPEN: Settings > Storage > Dialog for renaming a volume
2627 DIALOG_VOLUME_RENAME = 563;
2628
2629 // OPEN: Settings > Storage > Dialog for clear cache
2630 DIALOG_STORAGE_CLEAR_CACHE = 564;
2631
2632 // OPEN: Settings > Storage > Dialog for system info
2633 DIALOG_STORAGE_SYSTEM_INFO = 565;
2634
2635 // OPEN: Settings > Storage > Dialog for other info
2636 DIALOG_STORAGE_OTHER_INFO = 566;
2637
2638 // OPEN: Settings > Storage > Dialog for user info
2639 DIALOG_STORAGE_USER_INFO = 567;
2640
2641 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2642 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2643
2644 // OPEN: Settings > Add fingerprint > Error dialog
2645 DIALOG_FINGERPINT_ERROR = 569;
2646
2647 // OPEN: Settings > Fingerprint > Rename or delete dialog
2648 DIALOG_FINGERPINT_EDIT = 570;
2649
2650 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2651 DIALOG_FINGERPINT_DELETE_LAST = 571;
2652
2653 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2654 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2655
2656 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2657 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2658
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002659 // OPEN: Settings > Proxy Selector error dialog
2660 DIALOG_PROXY_SELECTOR_ERROR = 574;
2661
2662 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2663 DIALOG_WIFI_P2P_DISCONNECT = 575;
2664
2665 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2666 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2667
2668 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2669 DIALOG_WIFI_P2P_RENAME = 577;
2670
2671 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2672 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2673
2674 // OPEN: Settings > APN > Restore default dialog
2675 DIALOG_APN_RESTORE_DEFAULT = 579;
2676
2677 // OPEN: Settings > Dream > When to dream dialog
2678 DIALOG_DREAM_START_DELAY = 580;
2679
2680 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2681 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2682
2683 // OPEN: Settings > Tether > AP setting dialog
2684 DIALOG_AP_SETTINGS = 582;
2685
2686 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2687 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2688
2689 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2690 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2691
2692 // OPEN: Settings > Account > Remove account dialog
2693 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2694
2695 // OPEN: Settings > Account > Remove account failed dialog
2696 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2697
2698 // OPEN: Settings > Account > Cannot do onetime sync dialog
2699 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2700
2701 // OPEN: Settings > Display > Night light > Set start time dialog
2702 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2703
2704 // OPEN: Settings > Display > Night light > Set end time dialog
2705 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2706
2707 // OPEN: Settings > User > Edit info dialog
2708 DIALOG_USER_EDIT = 590;
2709
2710 // OPEN: Settings > User > Confirm remove dialog
2711 DIALOG_USER_REMOVE = 591;
2712
2713 // OPEN: Settings > User > Enable calling dialog
2714 DIALOG_USER_ENABLE_CALLING = 592;
2715
2716 // OPEN: Settings > User > Enable calling and sms dialog
2717 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2718
2719 // OPEN: Settings > User > Cannot manage device message dialog
2720 DIALOG_USER_CANNOT_MANAGE = 594;
2721
2722 // OPEN: Settings > User > Add user dialog
2723 DIALOG_USER_ADD = 595;
2724
2725 // OPEN: Settings > User > Setup user dialog
2726 DIALOG_USER_SETUP = 596;
2727
2728 // OPEN: Settings > User > Setup profile dialog
2729 DIALOG_USER_SETUP_PROFILE = 597;
2730
2731 // OPEN: Settings > User > Choose user type dialog
2732 DIALOG_USER_CHOOSE_TYPE = 598;
2733
2734 // OPEN: Settings > User > Need lockscreen dialog
2735 DIALOG_USER_NEED_LOCKSCREEN = 599;
2736
2737 // OPEN: Settings > User > Confirm exit guest mode dialog
2738 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2739
2740 // OPEN: Settings > User > Edit user profile dialog
2741 DIALOG_USER_EDIT_PROFILE = 601;
2742
2743 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2744 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2745
2746 // OPEN: Settings > Wifi > Edit AP dialog
2747 DIALOG_WIFI_AP_EDIT = 603;
2748
2749 // OPEN: Settings > Wifi > PBC Config dialog
2750 DIALOG_WIFI_PBC = 604;
2751
2752 // OPEN: Settings > Wifi > Display pin dialog
2753 DIALOG_WIFI_PIN = 605;
2754
2755 // OPEN: Settings > Wifi > Write config to NFC dialog
2756 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002757 // OPEN: Settings > Date > Date picker dialog
2758 DIALOG_DATE_PICKER = 607;
2759
2760 // OPEN: Settings > Date > Time picker dialog
2761 DIALOG_TIME_PICKER = 608;
2762
2763 // OPEN: Settings > Wireless > Manage wireless plan dialog
2764 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002765
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002766 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002767 PROVISIONING_NETWORK_TYPE = 610;
2768
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002769 // ACTION: Logs action which triggered provisioning.
2770 PROVISIONING_ACTION = 611;
2771
Mahaver Chopraab282072016-10-06 19:19:23 +01002772 // ACTION: Logs extra passed by the dpc while provisioning.
2773 PROVISIONING_EXTRA = 612;
2774
Salvador Martinez64867c12016-10-14 15:25:09 -07002775 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2776 BLUETOOTH_DIALOG_FRAGMENT = 613;
2777
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002778 // ACTION: Logs provisioning started by zero touch.
2779 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2780
2781 // ACTION: Logs provisioning started by NFC bump.
2782 PROVISIONING_ENTRY_POINT_NFC = 615;
2783
2784 // ACTION: Logs provisioning started using QR code.
2785 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2786
2787 // ACTION: Logs provisioning started using adb.
2788 PROVISIONING_ENTRY_POINT_ADB = 617;
2789
2790 // ACTION: Logs provisioning started by trusted source.
2791 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2792
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002793 // ACTION: Logged when copy account task finishes.
2794 // TIME: Indicates time taken by copy account task to finish in MS.
2795 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2796
2797 // ACTION: Logged when create profile task finishes.
2798 // TIME: Indicates time taken by create profile task to finish in MS.
2799 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2800
2801 // ACTION: Logged when start profile task finishes.
2802 // TIME: Indicates time taken by start profile task to finish in MS.
2803 PROVISIONING_START_PROFILE_TASK_MS = 621;
2804
2805 // ACTION: Logged when download package task finishes.
2806 // TIME: Indicates time taken by download package task to finish in MS.
2807 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2808
2809 // ACTION: Logged when install package task finishes.
2810 // TIME: Indicates time taken by install package task to finish in MS.
2811 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2812
2813 // ACTION: User cancelled provisioning.
2814 PROVISIONING_CANCELLED = 624;
2815
2816 // ACTION: Logged when provisioning throws an error.
2817 PROVISIONING_ERROR = 625;
2818
2819 // ACTION: Logs the status of copying user account during provisioning.
2820 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2821
2822 // ACTION: Logs the end to end time taken by all provisioning tasks.
2823 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2824
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002825 // OPEN: Settings > Privacy
2826 // CATEGORY: SETTINGS
2827 // OS: O
2828 ENTERPRISE_PRIVACY_SETTINGS = 628;
2829
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002830 // ACTION: Longpress on a TextView.
2831 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2832 // CATEGORY: TEXT_CONTROLS
2833 // OS: O
2834 TEXT_LONGPRESS = 629;
2835
Chris Wren3824c392017-11-27 12:54:14 -05002836 // ACTION: An app requested an unknown permission
2837 // PACKAGE: The package name of the app requesting the permission
2838 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002839 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2840
Chris Wren3824c392017-11-27 12:54:14 -05002841 // ACTION: An app was granted an unknown permission
2842 // PACKAGE: The package name of the app that was granted the permission
2843 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002844 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2845
Chris Wren3824c392017-11-27 12:54:14 -05002846 // ACTION: An app requested an unknown permission and the request was denied
2847 // PACKAGE: The package name of the app requesting the permission
2848 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002849 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2850
Chris Wren3824c392017-11-27 12:54:14 -05002851 // ACTION: An unknown permission was revoked for an app
2852 // PACKAGE: The package name of the app the permission was revoked for
2853 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002854 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2855
Chris Wren3824c392017-11-27 12:54:14 -05002856 // ACTION: An app requested the permission READ_CALENDAR
2857 // PACKAGE: The package name of the app requesting the permission
2858 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002859 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2860
Chris Wren3824c392017-11-27 12:54:14 -05002861 // ACTION: An app was granted the permission READ_CALENDAR
2862 // PACKAGE: The package name of the app that was granted the permission
2863 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002864 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2865
Chris Wren3824c392017-11-27 12:54:14 -05002866 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2867 // PACKAGE: The package name of the app requesting the permission
2868 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002869 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2870
Chris Wren3824c392017-11-27 12:54:14 -05002871 // ACTION: The permission READ_CALENDAR was revoked for an app
2872 // PACKAGE: The package name of the app the permission was revoked for
2873 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002874 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2875
Chris Wren3824c392017-11-27 12:54:14 -05002876 // ACTION: An app requested the permission WRITE_CALENDAR
2877 // PACKAGE: The package name of the app requesting the permission
2878 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002879 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2880
Chris Wren3824c392017-11-27 12:54:14 -05002881 // ACTION: An app was granted the permission WRITE_CALENDAR
2882 // PACKAGE: The package name of the app that was granted the permission
2883 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002884 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2885
Chris Wren3824c392017-11-27 12:54:14 -05002886 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2887 // PACKAGE: The package name of the app requesting the permission
2888 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002889 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2890
Chris Wren3824c392017-11-27 12:54:14 -05002891 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2892 // PACKAGE: The package name of the app the permission was revoked for
2893 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002894 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2895
Chris Wren3824c392017-11-27 12:54:14 -05002896 // ACTION: An app requested the permission CAMERA
2897 // PACKAGE: The package name of the app requesting the permission
2898 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002899 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2900
Chris Wren3824c392017-11-27 12:54:14 -05002901 // ACTION: An app was granted the permission CAMERA
2902 // PACKAGE: The package name of the app that was granted the permission
2903 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002904 ACTION_PERMISSION_GRANT_CAMERA = 643;
2905
Chris Wren3824c392017-11-27 12:54:14 -05002906 // ACTION: An app requested the permission CAMERA and the request was denied
2907 // PACKAGE: The package name of the app requesting the permission
2908 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002909 ACTION_PERMISSION_DENIED_CAMERA = 644;
2910
Chris Wren3824c392017-11-27 12:54:14 -05002911 // ACTION: The permission CAMERA was revoked for an app
2912 // PACKAGE: The package name of the app the permission was revoked for
2913 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002914 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2915
Chris Wren3824c392017-11-27 12:54:14 -05002916 // ACTION: An app requested the permission READ_CONTACTS
2917 // PACKAGE: The package name of the app requesting the permission
2918 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002919 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2920
Chris Wren3824c392017-11-27 12:54:14 -05002921 // ACTION: An app was granted the permission READ_CONTACTS
2922 // PACKAGE: The package name of the app that was granted the permission
2923 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002924 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2925
Chris Wren3824c392017-11-27 12:54:14 -05002926 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2927 // PACKAGE: The package name of the app requesting the permission
2928 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002929 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2930
Chris Wren3824c392017-11-27 12:54:14 -05002931 // ACTION: The permission READ_CONTACTS was revoked for an app
2932 // PACKAGE: The package name of the app the permission was revoked for
2933 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002934 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2935
Chris Wren3824c392017-11-27 12:54:14 -05002936 // ACTION: An app requested the permission WRITE_CONTACTS
2937 // PACKAGE: The package name of the app requesting the permission
2938 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002939 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2940
Chris Wren3824c392017-11-27 12:54:14 -05002941 // ACTION: An app was granted the permission WRITE_CONTACTS
2942 // PACKAGE: The package name of the app that was granted the permission
2943 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002944 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2945
Chris Wren3824c392017-11-27 12:54:14 -05002946 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2947 // PACKAGE: The package name of the app requesting the permission
2948 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002949 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2950
Chris Wren3824c392017-11-27 12:54:14 -05002951 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2952 // PACKAGE: The package name of the app the permission was revoked for
2953 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002954 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2955
Chris Wren3824c392017-11-27 12:54:14 -05002956 // ACTION: An app requested the permission GET_ACCOUNTS
2957 // PACKAGE: The package name of the app requesting the permission
2958 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002959 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2960
Chris Wren3824c392017-11-27 12:54:14 -05002961 // ACTION: An app was granted the permission GET_ACCOUNTS
2962 // PACKAGE: The package name of the app that was granted the permission
2963 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002964 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2965
Chris Wren3824c392017-11-27 12:54:14 -05002966 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2967 // PACKAGE: The package name of the app requesting the permission
2968 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002969 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2970
Chris Wren3824c392017-11-27 12:54:14 -05002971 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2972 // PACKAGE: The package name of the app the permission was revoked for
2973 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002974 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2975
Chris Wren3824c392017-11-27 12:54:14 -05002976 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2977 // PACKAGE: The package name of the app requesting the permission
2978 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002979 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2980
Chris Wren3824c392017-11-27 12:54:14 -05002981 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2982 // PACKAGE: The package name of the app that was granted the permission
2983 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002984 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2985
Chris Wren3824c392017-11-27 12:54:14 -05002986 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2987 // PACKAGE: The package name of the app requesting the permission
2988 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002989 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2990
Chris Wren3824c392017-11-27 12:54:14 -05002991 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2992 // PACKAGE: The package name of the app the permission was revoked for
2993 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002994 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2995
Chris Wren3824c392017-11-27 12:54:14 -05002996 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2997 // PACKAGE: The package name of the app requesting the permission
2998 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002999 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
3000
Chris Wren3824c392017-11-27 12:54:14 -05003001 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
3002 // PACKAGE: The package name of the app that was granted the permission
3003 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003004 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
3005
Chris Wren3824c392017-11-27 12:54:14 -05003006 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
3007 // PACKAGE: The package name of the app requesting the permission
3008 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003009 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
3010
Chris Wren3824c392017-11-27 12:54:14 -05003011 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
3012 // PACKAGE: The package name of the app the permission was revoked for
3013 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003014 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
3015
Chris Wren3824c392017-11-27 12:54:14 -05003016 // ACTION: An app requested the permission RECORD_AUDIO
3017 // PACKAGE: The package name of the app requesting the permission
3018 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003019 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
3020
Chris Wren3824c392017-11-27 12:54:14 -05003021 // ACTION: An app was granted the permission RECORD_AUDIO
3022 // PACKAGE: The package name of the app that was granted the permission
3023 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003024 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
3025
Chris Wren3824c392017-11-27 12:54:14 -05003026 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
3027 // PACKAGE: The package name of the app requesting the permission
3028 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003029 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
3030
Chris Wren3824c392017-11-27 12:54:14 -05003031 // ACTION: The permission RECORD_AUDIO was revoked for an app
3032 // PACKAGE: The package name of the app the permission was revoked for
3033 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003034 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
3035
Chris Wren3824c392017-11-27 12:54:14 -05003036 // ACTION: An app requested the permission READ_PHONE_STATE
3037 // PACKAGE: The package name of the app requesting the permission
3038 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003039 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
3040
Chris Wren3824c392017-11-27 12:54:14 -05003041 // ACTION: An app was granted the permission READ_PHONE_STATE
3042 // PACKAGE: The package name of the app that was granted the permission
3043 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003044 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
3045
Chris Wren3824c392017-11-27 12:54:14 -05003046 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
3047 // PACKAGE: The package name of the app requesting the permission
3048 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003049 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
3050
Chris Wren3824c392017-11-27 12:54:14 -05003051 // ACTION: The permission READ_PHONE_STATE was revoked for an app
3052 // PACKAGE: The package name of the app the permission was revoked for
3053 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003054 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
3055
Chris Wren3824c392017-11-27 12:54:14 -05003056 // ACTION: An app requested the permission CALL_PHONE
3057 // PACKAGE: The package name of the app requesting the permission
3058 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003059 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
3060
Chris Wren3824c392017-11-27 12:54:14 -05003061 // ACTION: An app was granted the permission CALL_PHONE
3062 // PACKAGE: The package name of the app that was granted the permission
3063 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003064 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
3065
Chris Wren3824c392017-11-27 12:54:14 -05003066 // ACTION: An app requested the permission CALL_PHONE and the request was denied
3067 // PACKAGE: The package name of the app requesting the permission
3068 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003069 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
3070
Chris Wren3824c392017-11-27 12:54:14 -05003071 // ACTION: The permission CALL_PHONE was revoked for an app
3072 // PACKAGE: The package name of the app the permission was revoked for
3073 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003074 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
3075
Chris Wren3824c392017-11-27 12:54:14 -05003076 // ACTION: An app requested the permission READ_CALL_LOG
3077 // PACKAGE: The package name of the app requesting the permission
3078 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003079 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
3080
Chris Wren3824c392017-11-27 12:54:14 -05003081 // ACTION: An app was granted the permission READ_CALL_LOG
3082 // PACKAGE: The package name of the app that was granted the permission
3083 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003084 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3085
Chris Wren3824c392017-11-27 12:54:14 -05003086 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3087 // PACKAGE: The package name of the app requesting the permission
3088 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003089 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3090
Chris Wren3824c392017-11-27 12:54:14 -05003091 // ACTION: The permission READ_CALL_LOG was revoked for an app
3092 // PACKAGE: The package name of the app the permission was revoked for
3093 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003094 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3095
Chris Wren3824c392017-11-27 12:54:14 -05003096 // ACTION: An app requested the permission WRITE_CALL_LOG
3097 // PACKAGE: The package name of the app requesting the permission
3098 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003099 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3100
Chris Wren3824c392017-11-27 12:54:14 -05003101 // ACTION: An app was granted the permission WRITE_CALL_LOG
3102 // PACKAGE: The package name of the app that was granted the permission
3103 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003104 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3105
Chris Wren3824c392017-11-27 12:54:14 -05003106 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3107 // PACKAGE: The package name of the app requesting the permission
3108 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003109 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3110
Chris Wren3824c392017-11-27 12:54:14 -05003111 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3112 // PACKAGE: The package name of the app the permission was revoked for
3113 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003114 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3115
Chris Wren3824c392017-11-27 12:54:14 -05003116 // ACTION: An app requested the permission ADD_VOICEMAIL
3117 // PACKAGE: The package name of the app requesting the permission
3118 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003119 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3120
Chris Wren3824c392017-11-27 12:54:14 -05003121 // ACTION: An app was granted the permission ADD_VOICEMAIL
3122 // PACKAGE: The package name of the app that was granted the permission
3123 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003124 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3125
Chris Wren3824c392017-11-27 12:54:14 -05003126 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3127 // PACKAGE: The package name of the app requesting the permission
3128 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003129 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3130
Chris Wren3824c392017-11-27 12:54:14 -05003131 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3132 // PACKAGE: The package name of the app the permission was revoked for
3133 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003134 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3135
Chris Wren3824c392017-11-27 12:54:14 -05003136 // ACTION: An app requested the permission USE_SIP
3137 // PACKAGE: The package name of the app requesting the permission
3138 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003139 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3140
Chris Wren3824c392017-11-27 12:54:14 -05003141 // ACTION: An app was granted the permission USE_SIP
3142 // PACKAGE: The package name of the app that was granted the permission
3143 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003144 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3145
Chris Wren3824c392017-11-27 12:54:14 -05003146 // ACTION: An app requested the permission USE_SIP and the request was denied
3147 // PACKAGE: The package name of the app requesting the permission
3148 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003149 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3150
Chris Wren3824c392017-11-27 12:54:14 -05003151 // ACTION: The permission USE_SIP was revoked for an app
3152 // PACKAGE: The package name of the app the permission was revoked for
3153 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003154 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3155
Chris Wren3824c392017-11-27 12:54:14 -05003156 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3157 // PACKAGE: The package name of the app requesting the permission
3158 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003159 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3160
Chris Wren3824c392017-11-27 12:54:14 -05003161 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3162 // PACKAGE: The package name of the app that was granted the permission
3163 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003164 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3165
Chris Wren3824c392017-11-27 12:54:14 -05003166 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3167 // PACKAGE: The package name of the app requesting the permission
3168 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003169 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3170
Chris Wren3824c392017-11-27 12:54:14 -05003171 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3172 // PACKAGE: The package name of the app the permission was revoked for
3173 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003174 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3175
Chris Wren3824c392017-11-27 12:54:14 -05003176 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3177 // PACKAGE: The package name of the app requesting the permission
3178 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003179 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3180
Chris Wren3824c392017-11-27 12:54:14 -05003181 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3182 // PACKAGE: The package name of the app that was granted the permission
3183 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003184 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3185
Chris Wren3824c392017-11-27 12:54:14 -05003186 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3187 // PACKAGE: The package name of the app requesting the permission
3188 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003189 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3190
Chris Wren3824c392017-11-27 12:54:14 -05003191 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3192 // PACKAGE: The package name of the app the permission was revoked for
3193 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003194 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3195
Chris Wren3824c392017-11-27 12:54:14 -05003196 // ACTION: An app requested the permission BODY_SENSORS
3197 // PACKAGE: The package name of the app requesting the permission
3198 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003199 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3200
Chris Wren3824c392017-11-27 12:54:14 -05003201 // ACTION: An app was granted the permission BODY_SENSORS
3202 // PACKAGE: The package name of the app that was granted the permission
3203 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003204 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3205
Chris Wren3824c392017-11-27 12:54:14 -05003206 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3207 // PACKAGE: The package name of the app requesting the permission
3208 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003209 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3210
Chris Wren3824c392017-11-27 12:54:14 -05003211 // ACTION: The permission BODY_SENSORS was revoked for an app
3212 // PACKAGE: The package name of the app the permission was revoked for
3213 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003214 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3215
Chris Wren3824c392017-11-27 12:54:14 -05003216 // ACTION: An app requested the permission SEND_SMS
3217 // PACKAGE: The package name of the app requesting the permission
3218 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003219 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3220
Chris Wren3824c392017-11-27 12:54:14 -05003221 // ACTION: An app was granted the permission SEND_SMS
3222 // PACKAGE: The package name of the app that was granted the permission
3223 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003224 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3225
Chris Wren3824c392017-11-27 12:54:14 -05003226 // ACTION: An app requested the permission SEND_SMS and the request was denied
3227 // PACKAGE: The package name of the app requesting the permission
3228 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003229 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3230
Chris Wren3824c392017-11-27 12:54:14 -05003231 // ACTION: The permission SEND_SMS was revoked for an app
3232 // PACKAGE: The package name of the app the permission was revoked for
3233 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003234 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3235
Chris Wren3824c392017-11-27 12:54:14 -05003236 // ACTION: An app requested the permission RECEIVE_SMS
3237 // PACKAGE: The package name of the app requesting the permission
3238 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003239 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3240
Chris Wren3824c392017-11-27 12:54:14 -05003241 // ACTION: An app was granted the permission RECEIVE_SMS
3242 // PACKAGE: The package name of the app that was granted the permission
3243 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003244 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3245
Chris Wren3824c392017-11-27 12:54:14 -05003246 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3247 // PACKAGE: The package name of the app requesting the permission
3248 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003249 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3250
Chris Wren3824c392017-11-27 12:54:14 -05003251 // ACTION: The permission RECEIVE_SMS was revoked for an app
3252 // PACKAGE: The package name of the app the permission was revoked for
3253 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003254 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3255
Chris Wren3824c392017-11-27 12:54:14 -05003256 // ACTION: An app requested the permission READ_SMS
3257 // PACKAGE: The package name of the app requesting the permission
3258 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003259 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3260
Chris Wren3824c392017-11-27 12:54:14 -05003261 // ACTION: An app was granted the permission READ_SMS
3262 // PACKAGE: The package name of the app that was granted the permission
3263 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003264 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3265
Chris Wren3824c392017-11-27 12:54:14 -05003266 // ACTION: An app requested the permission READ_SMS and the request was denied
3267 // PACKAGE: The package name of the app requesting the permission
3268 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003269 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3270
Chris Wren3824c392017-11-27 12:54:14 -05003271 // ACTION: The permission READ_SMS was revoked for an app
3272 // PACKAGE: The package name of the app the permission was revoked for
3273 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003274 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3275
Chris Wren3824c392017-11-27 12:54:14 -05003276 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3277 // PACKAGE: The package name of the app requesting the permission
3278 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003279 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3280
Chris Wren3824c392017-11-27 12:54:14 -05003281 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3282 // PACKAGE: The package name of the app that was granted the permission
3283 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003284 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3285
Chris Wren3824c392017-11-27 12:54:14 -05003286 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3287 // PACKAGE: The package name of the app requesting the permission
3288 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003289 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3290
Chris Wren3824c392017-11-27 12:54:14 -05003291 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3292 // PACKAGE: The package name of the app the permission was revoked for
3293 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003294 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3295
Chris Wren3824c392017-11-27 12:54:14 -05003296 // ACTION: An app requested the permission RECEIVE_MMS
3297 // PACKAGE: The package name of the app requesting the permission
3298 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003299 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3300
Chris Wren3824c392017-11-27 12:54:14 -05003301 // ACTION: An app was granted the permission RECEIVE_MMS
3302 // PACKAGE: The package name of the app that was granted the permission
3303 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003304 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3305
Chris Wren3824c392017-11-27 12:54:14 -05003306 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3307 // PACKAGE: The package name of the app requesting the permission
3308 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003309 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3310
Chris Wren3824c392017-11-27 12:54:14 -05003311 // ACTION: The permission RECEIVE_MMS was revoked for an app
3312 // PACKAGE: The package name of the app the permission was revoked for
3313 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003314 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3315
Chris Wren3824c392017-11-27 12:54:14 -05003316 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3317 // PACKAGE: The package name of the app requesting the permission
3318 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003319 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3320
Chris Wren3824c392017-11-27 12:54:14 -05003321 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3322 // PACKAGE: The package name of the app that was granted the permission
3323 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003324 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3325
Chris Wren3824c392017-11-27 12:54:14 -05003326 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3327 // PACKAGE: The package name of the app requesting the permission
3328 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003329 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3330
Chris Wren3824c392017-11-27 12:54:14 -05003331 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3332 // PACKAGE: The package name of the app the permission was revoked for
3333 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003334 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3335
Chris Wren3824c392017-11-27 12:54:14 -05003336 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3337 // PACKAGE: The package name of the app requesting the permission
3338 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003339 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3340
Chris Wren3824c392017-11-27 12:54:14 -05003341 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3342 // PACKAGE: The package name of the app that was granted the permission
3343 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003344 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3345
Chris Wren3824c392017-11-27 12:54:14 -05003346 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3347 // PACKAGE: The package name of the app requesting the permission
3348 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003349 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3350
Chris Wren3824c392017-11-27 12:54:14 -05003351 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3352 // PACKAGE: The package name of the app the permission was revoked for
3353 // OBSOLETE as of Android P
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08003354 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3355
Mahaverfa6566e2016-11-29 21:08:14 +00003356 // ACTION: Logged when a provisioning session has started
3357 PROVISIONING_SESSION_STARTED = 734;
3358
3359 // ACTION: Logged when a provisioning session has completed
3360 PROVISIONING_SESSION_COMPLETED = 735;
3361
Chris Wren3824c392017-11-27 12:54:14 -05003362 // ACTION: An app requested the permission READ_PHONE_NUMBERS
3363 // PACKAGE: The package name of the app requesting the permission
3364 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003365 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003366
Chris Wren3824c392017-11-27 12:54:14 -05003367 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
3368 // PACKAGE: The package name of the app that was granted the permission
3369 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003370 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003371
Chris Wren3824c392017-11-27 12:54:14 -05003372 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
3373 // PACKAGE: The package name of the app requesting the permission
3374 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003375 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003376
Chris Wren3824c392017-11-27 12:54:14 -05003377 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
3378 // PACKAGE: The package name of the app the permission was revoked for
3379 // OBSOLETE as of Android P
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003380 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003381
Santos Cordon3107d292016-09-20 15:50:35 -07003382 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3383 // SUBTYPE: slider value
3384 // CATEGORY: QUICK_SETTINGS
3385 // OS: 6.0
3386 ACTION_BRIGHTNESS_FOR_VR = 498;
3387
Hugo Benichie1cbf152016-12-08 09:36:52 +09003388 // ACTION: A captive portal was detected during network validation
3389 // CATEGORY: NOTIFICATION
3390 // OS: N-MR2
3391 NOTIFICATION_NETWORK_SIGN_IN = 740;
3392
3393 // ACTION: An unvalidated network without Internet was selected by the user
3394 // CATEGORY: NOTIFICATION
3395 // OS: N-MR2
3396 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3397
3398 // ACTION: A validated network failed revalidation and lost Internet access
3399 // CATEGORY: NOTIFICATION
3400 // OS: N-MR2
3401 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3402
3403 // ACTION: The system default network switched to a different network
3404 // CATEGORY: NOTIFICATION
3405 // OS: N-MR2
3406 NOTIFICATION_NETWORK_SWITCH = 743;
3407
Fan Zhang074c4cb2016-12-21 12:10:33 -08003408 // OPEN: Settings > System
3409 SETTINGS_SYSTEM_CATEGORY = 744;
3410
3411 // OPEN: Settings > Storage
3412 SETTINGS_STORAGE_CATEGORY = 745;
3413
3414 // OPEN: Settings > Network & Internet
3415 SETTINGS_NETWORK_CATEGORY = 746;
3416
3417 // OPEN: Settings > Connected Device
3418 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3419
3420 // OPEN: Settings > App & Notification
3421 SETTINGS_APP_NOTIF_CATEGORY = 748;
3422
3423 // OPEN: Settings > System > Input & Gesture
3424 SETTINGS_INPUT_CATEGORY = 749;
3425
3426 // OPEN: Settings > System > Language & Region
3427 SETTINGS_LANGUAGE_CATEGORY = 750;
3428
3429 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3430 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3431
3432 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3433 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3434
3435 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3436 SETTINGS_GESTURE_PICKUP = 753;
3437
3438 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3439 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3440
3441 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3442 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3443
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003444 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3445 // CATEGORY: Settings
3446 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3447
Alison Cichowlas803054d2016-12-13 14:38:01 -05003448 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003449 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003450 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3451 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3452 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003453
Salvador Martinezc43ab062016-12-21 11:09:11 -08003454 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3455 // user accepted
3456 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003457
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003458 // Enclosing category for group of APP_TRANSITION_FOO events,
3459 // logged when we execute an app transition.
3460 APP_TRANSITION = 761;
3461
Fan Zhang945deea2017-01-11 16:37:49 -08003462 // ACTION: User leaves Settings search UI without entering any query.
3463 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3464
3465 // ACTION: Clicking on any search result in Settings.
3466 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003467
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003468 // ACTION: Allow Battery optimization for an app
3469 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3470
3471 // ACTION: Deny Battery optimization for an app
3472 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3473
3474 // ACTION: Enable Device Admin app
3475 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3476
3477 // ACTION: Disable Device Admin app
3478 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3479
3480 // ACTION: Allow "Do Not Disturb access" for an app
3481 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3482
3483 // ACTION: Deny "Do Not Disturb access" for an app
3484 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3485
3486 // ACTION: Allow "Draw over other apps" for an app
3487 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3488
Christine Franks47175c32017-03-14 10:21:25 -07003489 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003490 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3491
3492 // ACTION: Allow "VR helper services" for an app
3493 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3494
3495 // ACTION: Deny "VR helper services" for an app
3496 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3497
3498 // ACTION: Allow "Modify system settings" for an app
3499 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3500
3501 // ACTION: Deny "Modify system settings" for an app
3502 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3503
3504 // ACTION: Allow "Notification access" for an app
3505 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3506
3507 // ACTION: Deny "Notification access" for an app
3508 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3509
3510 // ACTION: "Premium SMS access" for an app - "ask user" option
3511 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3512
3513 // ACTION: "Premium SMS access" for an app - "never allow" option
3514 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3515
3516 // ACTION: "Premium SMS access" for an app - "always allow" option
3517 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3518
3519 // ACTION: Allow "Unrestricted data access" for an app
3520 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3521
3522 // ACTION: Deny "Unrestricted data access" for an app
3523 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3524
3525 // ACTION: Allow "Usage access" for an app
3526 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3527
3528 // ACTION: Deny "Usage access" for an app
3529 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3530
Fan Zhangad5dacc2017-01-18 14:18:54 -08003531 // OPEN: Settings > Apps > Default Apps > Default browser
3532 DEFAULT_BROWSER_PICKER = 785;
3533
3534 // OPEN: Settings > Apps > Default Apps > Default emergency app
3535 DEFAULT_EMERGENCY_APP_PICKER = 786;
3536
3537 // OPEN: Settings > Apps > Default Apps > Default home
3538 DEFAULT_HOME_PICKER = 787;
3539
3540 // OPEN: Settings > Apps > Default Apps > Default phone
3541 DEFAULT_PHONE_PICKER = 788;
3542
3543 // OPEN: Settings > Apps > Default Apps > Default sms
3544 DEFAULT_SMS_PICKER = 789;
3545
3546 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3547 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3548
3549 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3550 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3551
Jason Long1b51da62017-01-24 11:35:31 -08003552 // OPEN: Settings > Apps > Default Apps > Default autofill app
3553 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003554
Chris Wren26ca65d2016-11-29 10:43:28 -05003555 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003556 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003557 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3558 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3559 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3560 NOTIFICATION_ID = 796;
3561 NOTIFICATION_TAG = 797;
3562 NOTIFICATION_SHADE_INDEX = 798;
3563 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003564
Anas Karbilaf7648f42016-12-11 00:55:02 +01003565 // OPEN: QS NFC tile shown
3566 // ACTION: QS NFC tile tapped
3567 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003568 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003569
Chris Wren26ca65d2016-11-29 10:43:28 -05003570 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003571 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003572 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3573 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3574 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3575 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3576 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3577 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3578
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003579 // ACTION: "Force stop" action on an app
3580 ACTION_APP_FORCE_STOP = 807;
3581
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003582 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3583 // CATEGORY: SETTINGS
3584 // OS: 8.0
3585 MANAGE_EXTERNAL_SOURCES = 808;
3586
Mahaver6cd47162017-01-23 09:59:33 +00003587 // ACTION: Logged when terms activity finishes.
3588 // TIME: Indicates time taken by terms activity to finish in MS.
3589 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3590
3591 // Indicates number of terms displayed on the terms screen.
3592 PROVISIONING_TERMS_COUNT = 810;
3593
3594 // Indicates number of terms read on the terms screen.
3595 PROVISIONING_TERMS_READ = 811;
3596
Winson Chung59fda9e2017-01-20 16:14:51 -08003597 // Logs that the user has edited the picture-in-picture settings.
3598 // CATEGORY: SETTINGS
3599 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3600
Winson Chungf4ac0632017-03-17 12:34:12 -07003601 // ACTION: Allow "Enable picture-in-picture" for an app
3602 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003603
Winson Chungf4ac0632017-03-17 12:34:12 -07003604 // ACTION: Deny "Enable picture-in-picture" for an app
3605 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003606
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003607 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3608 // CATEGORY: SETTINGS
3609 // OS: 8.0
3610 TTS_SLIDERS = 815;
3611
Jason Monk524fb402017-01-25 10:33:31 -05003612 // ACTION: Settings -> Display -> Theme
3613 ACTION_THEME = 816;
3614
chchaob8e253a2017-01-25 12:12:09 -08003615 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3616 // ACTION: Select to Speak configuration is chosen
3617 // SUBTYPE: 0 is off, 1 is on
3618 // CATEGORY: SETTINGS
3619 // OS: N
3620 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3621
Anton Philippov95a553e2017-01-27 00:08:24 +00003622 // OPEN: Settings > System > Backup
3623 // CATEGORY: SETTINGS
3624 // OS: O
3625 BACKUP_SETTINGS = 818;
3626
Winson Chung14fbe142016-12-19 16:18:24 -08003627 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003628 // VALUE: true if it was entered while hiding as a result of moving to
3629 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003630 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3631
3632 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3633 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3634 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3635
3636 // ACTION: The activity currently in picture-in-picture was minimized
3637 // VALUE: True if the PiP was minimized, false otherwise
3638 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3639
3640 // ACTION: Picture-in-picture was dismissed via the dismiss button
3641 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3642 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3643
3644 // ACTION: The visibility of the picture-in-picture meny
3645 // VALUE: Whether or not the menu is visible
3646 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3647
3648 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3649 // logged when the aspect ratio changes
3650 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3651
3652 // The current aspect ratio of the PiP, logged when it changes.
3653 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3654
Chris Wren27a52fa2017-02-01 14:21:43 -05003655 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3656 // CATEGORY: GLOBAL_SYSTEM_UI
3657 // OS: O
3658 FIELD_GESTURE_LENGTH = 826;
3659
3660 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3661 // CATEGORY: GLOBAL_SYSTEM_UI
3662 // OS: O
3663 FIELD_GESTURE_VELOCITY = 827;
3664
Christine Franks27fde392017-02-07 10:21:55 -08003665 // OPEN: Carrier demo mode password dialog
3666 CARRIER_DEMO_MODE_PASSWORD = 828;
3667
Fan Zhang70967f32017-02-13 16:02:24 -08003668 // ACTION: Create a Settings shortcut item.
3669 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3670
3671 // ACTION: A tile in Settings information architecture is clicked
3672 ACTION_SETTINGS_TILE_CLICK = 830;
3673
Julia Reynolds520df6e2017-02-13 09:05:10 -05003674 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3675 // updated
3676 // CATEGORY: NOTIFICATION
3677 // OS: O
3678 NOTIFICATION_SNOOZED = 831;
3679
3680 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3681 // OS: O
3682 NOTIFICATION_SNOOZED_CRITERIA = 832;
3683
Fan Zhang65899432017-02-14 13:36:53 -08003684 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003685 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003686 FIELD_CONTEXT = 833;
3687
Fan Zhangd95dcb42017-02-14 13:48:09 -08003688 // ACTION: Settings advanced button is expanded
3689 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3690
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003691 // ACTION: Logs the number of times the saved network evaluator was used to
3692 // recommend a wifi network
3693 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3694
3695 // ACTION: Logs the number of times the recommended network evaluator was
3696 // used to recommend a wifi network
3697 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3698
3699 // ACTION: Logs the number of times a recommended network was resulted in a
3700 // successful connection
3701 // VALUE: true if the connection was successful, false if the connection failed
3702 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3703
Daniel Nishic581bfc2017-02-08 10:18:19 -08003704 // OPEN: Settings > Storage > Games
3705 // CATEGORY: SETTINGS
3706 // OS: O
3707 APPLICATIONS_STORAGE_GAMES = 838;
3708
3709 // OPEN: Settings > Storage > Audio and Music
3710 // CATEGORY: SETTINGS
3711 // OS: O
3712 APPLICATIONS_STORAGE_MUSIC = 839;
3713
3714 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3715 // CATEGORY: SETTINGS
3716 // OS: O
3717 STORAGE_FREE_UP_SPACE_NOW = 840;
3718
3719 // ACTION: Settings > Storage > Files to open the File Manager
3720 // CATEGORY: SETTINGS
3721 // OS: O
3722 STORAGE_FILES = 841;
3723
Fan Zhangb1d49222017-02-15 17:12:58 -08003724 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003725 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003726
Fan Zhang7f2cace2017-02-17 12:05:48 -08003727 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3728 DEFAULT_ASSIST_PICKER = 843;
3729
3730 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3731 DEFAULT_VOICE_INPUT_PICKER = 844;
3732
Daniel Nishi4058a842017-02-21 17:11:35 -08003733 // OPEN: Settings > Storage > [Profile]
3734 SETTINGS_STORAGE_PROFILE = 845;
3735
Doris Lingedb84c32017-02-23 10:56:01 -08003736 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3737 // CATEGORY: SETTINGS
3738 // OS: O
3739 ENCRYPTION_AND_CREDENTIAL = 846;
3740
Fan Zhangb66e5422017-02-24 14:37:45 -08003741 // ACTION: Settings > About device > Build number
3742 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3743
3744 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3745 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3746
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003747 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3748 // CATEGORY: SETTINGS
3749 // OS: O
3750 WIFI_NETWORK_DETAILS = 849;
3751
jackqdyuleia2a14342017-02-28 16:20:48 -08003752 // ACTION: Settings > Battery > Menu > Usage Alerts
3753 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3754
3755 // ACTION: Settings > Battery > Menu > Optimization
3756 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3757
3758 // ACTION: Settings > Battery > Menu > Apps Toggle
3759 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3760
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003761 // ACTION: Settings > Any preference is changed
3762 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3763
3764 // FIELD: The name of preference when it is changed in Settings
3765 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3766
3767 // FIELD: The new value of preference when it is changed in Settings
3768 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3769
Julia Reynoldsd373d782017-03-03 13:32:57 -05003770 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3771 // channel updated
3772 // PACKAGE: the package the channel belongs too
3773 // CATEGORY: NOTIFICATION
3774 // OS: O
3775 ACTION_NOTIFICATION_CHANNEL = 856;
3776
3777 // Tagged data for notification channel. String.
3778 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3779
3780 // Tagged data for notification channel. int.
3781 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3782
3783 // OPEN: Notification channel group created.
3784 // PACKAGE: the package the group belongs to
3785 // CATEGORY: NOTIFICATION
3786 // OS: O
3787 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3788
3789 // Tagged data for notification channel group. String.
3790 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3791
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003792 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3793 // CATEGORY: SETTINGS
3794 // OS: O
3795 SETTINGS_NETWORK_SCORER = 861;
3796
Fan Zhang99861312017-03-07 14:32:38 -08003797 // OPEN: Settings > About device > Model > Hardware info dialog
3798 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3799
mariagpuyol0f5512e2017-03-01 12:09:56 -08003800 // ACTION: Checks whether a contact's phone still exists
3801 // Value 0: It doesn't exist anymore
3802 // Value 1: It still exists
3803 // Value 2: A SecurityException was thrown
3804 // CATEGORY: SETTINGS
3805 // OS: N
3806 ACTION_PHONE_EXISTS = 863;
3807
3808 // ACTION: Retrieves a contact from CP2
3809 // Value 0: Contact retrieved without issues
3810 // Value 1: An IllegalArgumentException was thrown
3811 // CATEGORY: SETTINGS
3812 // OS: N
3813 ACTION_GET_CONTACT = 864;
3814
Chris Wren4d6b54d2017-04-27 16:56:54 -04003815 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003816 // internal platform metrics use.
3817 RESERVED_FOR_LOGBUILDER_PID = 865;
3818
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003819 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3820 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3821
3822 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3823 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3824
3825 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3826 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3827
3828 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3829 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3830
3831 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3832 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3833
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003834 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003835 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003836
Fan Zhang082d21c2017-03-13 15:25:54 -07003837 // ACTION: Settings > App detail > Uninstall
3838 ACTION_SETTINGS_UNINSTALL_APP = 872;
3839
3840 // ACTION: Settings > App detail > Uninstall Device admin app
3841 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3842
3843 // ACTION: Settings > App detail > Disable app
3844 ACTION_SETTINGS_DISABLE_APP = 874;
3845
3846 // ACTION: Settings > App detail > Enable app
3847 ACTION_SETTINGS_ENABLE_APP = 875;
3848
3849 // ACTION: Settings > App detail > Clear data
3850 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3851
3852 // ACTION: Settings > App detail > Clear cache
3853 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3854
3855 // ACTION: Clicking on any search result in Settings.
3856 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3857
3858 // FIELD: Settings inline search result name
3859 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3860
3861 // FIELD: Settings inline search result value
3862 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3863
Fan Zhang53797932017-03-13 17:46:24 -07003864 // ACTION: Settings > Search > Click saved queries
3865 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3866
Doris Lingbf8d9de2017-03-15 11:52:50 -07003867 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3868 // CATEGORY: SETTINGS
3869 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3870
Chris Wren3824c392017-11-27 12:54:14 -05003871 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3872 // PACKAGE: The package name of the app requesting the permission
3873 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003874 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3875
Chris Wren3824c392017-11-27 12:54:14 -05003876 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3877 // PACKAGE: The package name of the app that was granted the permission
3878 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003879 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3880
Chris Wren3824c392017-11-27 12:54:14 -05003881 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3882 // PACKAGE: The package name of the app requesting the permission
3883 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003884 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3885
Chris Wren3824c392017-11-27 12:54:14 -05003886 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3887 // PACKAGE: The package name of the app the permission was revoked for
3888 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003889 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3890
Chris Wren3824c392017-11-27 12:54:14 -05003891 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3892 // PACKAGE: The package name of the app requesting the permission
3893 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003894 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3895
Chris Wren3824c392017-11-27 12:54:14 -05003896 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3897 // PACKAGE: The package name of the app that was granted the permission
3898 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003899 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3900
Chris Wren3824c392017-11-27 12:54:14 -05003901 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3902 // PACKAGE: The package name of the app requesting the permission
3903 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003904 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3905
Chris Wren3824c392017-11-27 12:54:14 -05003906 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3907 // PACKAGE: The package name of the app the permission was revoked for
3908 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003909 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3910
Chris Wren3824c392017-11-27 12:54:14 -05003911 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3912 // PACKAGE: The package name of the app requesting the permission
3913 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003914 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3915
Chris Wren3824c392017-11-27 12:54:14 -05003916 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3917 // PACKAGE: The package name of the app that was granted the permission
3918 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003919 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3920
Chris Wren3824c392017-11-27 12:54:14 -05003921 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3922 // PACKAGE: The package name of the app requesting the permission
3923 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003924 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3925
Chris Wren3824c392017-11-27 12:54:14 -05003926 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3927 // PACKAGE: The package name of the app the permission was revoked for
3928 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003929 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3930
Chris Wren3824c392017-11-27 12:54:14 -05003931 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3932 // PACKAGE: The package name of the app requesting the permission
3933 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003934 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3935
Chris Wren3824c392017-11-27 12:54:14 -05003936 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3937 // PACKAGE: The package name of the app that was granted the permission
3938 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003939 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3940
Chris Wren3824c392017-11-27 12:54:14 -05003941 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3942 // PACKAGE: The package name of the app requesting the permission
3943 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003944 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3945
Chris Wren3824c392017-11-27 12:54:14 -05003946 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3947 // PACKAGE: The package name of the app the permission was revoked for
3948 // OBSOLETE as of Android P
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003949 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3950
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003951 // ACTION: Phase 1 of instant application resolution occurred
3952 // OS: O
3953 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3954
3955 // ACTION: Phase 2 of instant application resolution occurred
3956 // OS: O
3957 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3958
3959 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3960 // OS: O
3961 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3962
3963 // FIELD: The status of an ephemeral resolution phase
3964 // Value 0: success
3965 // Value 1: no full hash match
3966 // OS: O
3967 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3968
3969 // FIELD - A token to identify all events that are part of the same instant application launch
3970 // OS: O
3971 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3972
3973 // FIELD - The name of the package responsible for launching the activity
3974 // OS: O
3975 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3976
3977 // FIELD - Whether or not the launched activity is part of an instant application
3978 // OS: O
3979 APP_TRANSITION_IS_EPHEMERAL = 905;
3980
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003981 // An autofill session was started
3982 // Package: Package of app that is autofilled
Felipe Leme5e047202017-12-05 16:30:06 -08003983 // NOTE: starting on OS MR1, it also added the following field:
3984 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3985 // NOTE: starting on OS P, it also added the following field:
3986 // Tag FIELD_FLAGS - Flags used to start the session
Felipe Leme11166522018-05-07 10:18:47 -07003987 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003988 AUTOFILL_SESSION_STARTED = 906;
3989
3990 // An autofill request was processed by a service
3991 // Type TYPE_SUCCESS: The request succeeded
3992 // Type TYPE_FAILURE: The request failed
3993 // Package: Package of app that is autofilled
3994 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme2568de02018-03-21 08:52:14 -07003995 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets returned in the response, or -1 if
3996 // the service returned a null response.
Felipe Leme5e047202017-12-05 16:30:06 -08003997 // NOTE: starting on OS P, it also added:
3998 // Type TYPE_CLOSE: Service returned a null response.
3999 // Tag FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS: if service requested field classification,
4000 // number of entries field ids in the request.
Felipe Leme11166522018-05-07 10:18:47 -07004001 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004002 AUTOFILL_REQUEST = 907;
4003
4004 // Tag of a field for a package of an autofill service
4005 FIELD_AUTOFILL_SERVICE = 908;
4006
4007 // Tag of a field for the number of datasets
4008 FIELD_AUTOFILL_NUM_DATASETS = 909;
4009
4010 // An autofill dataset selection UI was shown
4011 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4012 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4013 // Type TYPE_ACTION: dataset was selected
4014 // Type TYPE_DETAIL: authentication was selected
4015 // Package: Package of app that was autofilled
4016 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
4017 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
Felipe Leme6ef61b82018-02-15 16:26:02 -08004018 // NOTE: starting on OS P, it also added the following field:
4019 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004020 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004021 AUTOFILL_FILL_UI = 910;
4022
4023 // Tag of a field for the length of the filter text
4024 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
4025
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004026 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004027 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004028 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4029 // NOTE: starting on OS P, it also added the following field:
4030 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004031 AUTOFILL_AUTHENTICATED = 912;
4032
4033 // An activity was autofilled and all values could be applied
4034 // Package: Package of app that is autofilled
4035 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
4036 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
Felipe Leme11166522018-05-07 10:18:47 -07004037 // NOTE: starting on OS P, it also added the following field:
4038 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004039 AUTOFILL_DATASET_APPLIED = 913;
4040
4041 // Tag of a field for the number values to be filled in
4042 FIELD_AUTOFILL_NUM_VALUES = 914;
4043
4044 // Tag of a field for the number of views that were filled
4045 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
4046
4047 // An autofill save UI was shown
4048 // Type TYPE_DISMISS: UI was explicityly canceled by the user
4049 // Type TYPE_CLOSE: UI was destroyed without influence of the user
4050 // Type TYPE_ACTION: data was saved
4051 // Package: Package of app that was autofilled
Felipe Leme6ef61b82018-02-15 16:26:02 -08004052 // Tag FIELD_AUTOFILL_NUM_IDS: The number of ids that are saved
4053 // NOTE: starting on OS P, it also added the following field:
4054 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004055 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004056 AUTOFILL_SAVE_UI = 916;
4057
4058 // Tag of a field for the number of saveable ids
4059 FIELD_AUTOFILL_NUM_IDS = 917;
4060
4061 // ACTION: An autofill service was reqiested to save data
Felipe Leme4bcb01a2017-11-21 16:47:13 -08004062 // Type TYPE_SUCCESS: The request succeeded right away
4063 // Type TYPE_OPEN: The request succeeded but the service launched an IntentSender
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004064 // Type TYPE_FAILURE: The request failed
4065 // Package: Package of app that was autofilled
4066 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004067 // NOTE: starting on OS P, it also added the following field:
4068 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004069 AUTOFILL_DATA_SAVE_REQUEST = 918;
4070
4071 // An auto-fill session was finished
4072 // Package: Package of app that was autofilled
Felipe Leme11166522018-05-07 10:18:47 -07004073 // NOTE: starting on OS P, it also added the following field:
4074 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Philip P. Moltmann7b771162017-03-03 17:22:57 -08004075 AUTOFILL_SESSION_FINISHED = 919;
4076
Chris Wren148805582017-03-17 17:18:11 -04004077 // meta-event: a reader has checkpointed the log here.
4078 METRICS_CHECKPOINT = 920;
4079
Fan Zhanged1845f2017-03-23 14:46:59 -07004080 // OPEN: Settings -> Display -> When in VR Mode
4081 VR_DISPLAY_PREFERENCE = 921;
4082
Casey Burkhardtf4e98032017-03-22 22:52:24 -07004083 // OPEN: Settings > Accessibility > Magnification
4084 // CATEGORY: SETTINGS
4085 // OS: O
4086 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07004087
4088 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
4089 // app.
4090 // VALUE: The package name of the app
4091 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
4092
Fan Zhang1a34e752017-03-24 13:44:51 -07004093 // OPEN: Settings -> System -> Reset options
4094 RESET_DASHBOARD = 924;
4095
Jason Monk8c09ac72017-03-16 11:53:40 -04004096 // ACTION: QS -> Tile clicked
4097 ACTION_QS_CLICK = 925;
4098
4099 // ACTION: QS -> Secondary click
4100 ACTION_QS_SECONDARY_CLICK = 926;
4101
4102 // FIELD: Position info in QS clicks
4103 FIELD_QS_POSITION = 927;
4104
4105 // FIELD: The value of a QS tile when clicked (if applicable)
4106 FIELD_QS_VALUE = 928;
4107
4108 // ACTION: QS -> Detail panel -> more settings
4109 ACTION_QS_MORE_SETTINGS = 929;
4110
4111 // ACTION: QS -> Click date
4112 ACTION_QS_DATE = 930;
4113
Jason Monk1b775652017-03-31 15:42:27 -04004114 // ACTION: Event on nav button
4115 ACTION_NAV_BUTTON_EVENT = 931;
4116
4117 // FIELD: Flags for a nav button event
4118 FIELD_FLAGS = 932;
4119
4120 // FIELD: Action for a nav button event
4121 FIELD_NAV_ACTION = 933;
4122
Kevin Chyn8d1a5282017-04-06 12:11:04 -07004123 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
4124 // CATEGORY: SETTINGS
4125 // OS: O
4126 FINGERPRINT_REMOVE_SIDECAR = 934;
4127
Daniel Nishi45c23fa2017-03-27 13:19:02 -07004128 // OPEN: Settings > Storage > Movies & TV
4129 // CATEGORY: SETTINGS
4130 // OS: O
4131 APPLICATIONS_STORAGE_MOVIES = 935;
4132
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01004133 // OPEN: Text selection "assist" menu item shown.
4134 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4135 // CATEGORY: TEXT_CONTROLS
4136 // OS: O
4137 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
4138
4139 // ACTION: Text selection "assist" menu item clicked.
4140 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
4141 // CATEGORY: TEXT_CONTROLS
4142 // OS: O
4143 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
4144
Denis Kuznetsov7152a412017-04-13 11:41:33 +02004145 // OPEN: Settings > Security > Managed Device Info > Apps installed
4146 // CATEGORY: SETTINGS
4147 // OS: O
4148 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
4149
4150 // OPEN: Settings > Security > Managed Device Info > nnn permissions
4151 // CATEGORY: SETTINGS
4152 // OS: O
4153 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
4154
4155 // OPEN: Settings > Security > Managed Device Info > Default apps
4156 // CATEGORY: SETTINGS
4157 // OS: O
4158 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
4159
Julia Reynolds80b18072017-04-23 12:27:07 -04004160 // OPEN: Settings > Notifications > An app > A channel > Importance
4161 // CATEGORY: SETTINGS
4162 // OS: O
4163 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
4164
4165 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
4166 // CATEGORY: SETTINGS
4167 // OS: O
4168 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
4169
Chris Wren4d6b54d2017-04-27 16:56:54 -04004170 // This value should never appear in log outputs - it is reserved for
4171 // internal platform metrics use.
4172 RESERVED_FOR_LOGBUILDER_UID = 943;
4173
Dianne Hackborn83b40f62017-04-26 13:59:47 -07004174 // OPEN: Running background apps notification > List of background apps
4175 // CATEGORY: GLOBAL_SYSTEM_UI
4176 // OS: O
4177 RUNNING_BACKGROUND_APPS_DIALOG = 944;
4178
Jorim Jaggi515dd682017-05-05 15:05:07 +02004179 // FIELD - The delay from the start of the transition until we just call bindApplication on the
4180 // client.
4181 // OS: O
4182 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
4183
Chris Wrenb3921792017-06-01 13:34:46 -04004184 // FIELD - The group ID of a notification.
4185 // Type: string
4186 // OS: O
4187 FIELD_NOTIFICATION_GROUP_ID = 946;
4188
4189 // FIELD - If the notification is a group summary: 1.
4190 // Type: int encoded boolean
4191 // OS: O
4192 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4193
Felipe Leme637e05e2017-12-06 12:09:37 -08004194 // An app attempted to forge a different component name in the AssisStructure that would be
4195 // passed to the autofill service.
4196 // OS: O (security patch)
4197 // Package: Real package of the app being autofilled
4198 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4199 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
Felipe Leme11166522018-05-07 10:18:47 -07004200 // NOTE: starting on OS P, it also added the following field:
4201 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme637e05e2017-12-06 12:09:37 -08004202 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4203
4204 // FIELD - The component that an app tried tro forged.
4205 // Type: string
4206 // OS: O (security patch)
4207 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4208
Chris Wren26ca65d2016-11-29 10:43:28 -05004209 // ---- End O Constants, all O constants go above this line ----
4210
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004211 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4212 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4213
jackqdyulei92e492e2017-04-28 13:04:42 -07004214 // OPEN: Settings > Battery > High Usage > Abnormal app page
4215 // CATEGORY: SETTINGS
4216 FUELGAUGE_ANOMALY_DETAIL = 987;
4217
4218 // OPEN: Settings > Battery > High Usage
4219 DIALOG_HANDLE_ANOMALY = 988;
4220
Jonathan Solnita4138162017-05-10 21:06:04 -07004221 // ACTION: Camera lift gesture
4222 // CATEGORY: GLOBAL_SYSTEM_UI
4223 // OS: O
4224 ACTION_CAMERA_LIFT_TRIGGER = 989;
4225
Maurice Lam76ae09c2017-05-05 12:03:49 -07004226 // OPEN: Choose screen lock dialog in Settings
4227 // CATEGORY: SETTINGS
4228 // OS: O DR
4229 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4230
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004231 // OPEN: Assist Gesture training intro in Settings
4232 // CATEGORY: SETTINGS
4233 // OS: O DR
4234 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4235
4236 // OPEN: Assist Gesture training enrolling in Settings
4237 // CATEGORY: SETTINGS
4238 // OS: O DR
4239 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4240
4241 // OPEN: Assist Gesture training finished in Settings
4242 // CATEGORY: SETTINGS
4243 // OS: O DR
4244 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4245
Fan Zhangc666a202017-05-18 17:50:20 -07004246 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4247 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4248
4249 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4250 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4251
Philip Quinn0f9566d2017-05-23 10:32:08 -07004252 // OPEN: Settings > System > Languages & input > Assist gesture
4253 // CATEGORY: SETTINGS
4254 // OS: O DR
4255 SETTINGS_ASSIST_GESTURE = 996;
4256
4257 // ACTION: Assist gesture released without triggering
4258 // CATEGORY: GLOBAL_SYSTEM_UI
4259 // OS: O DR
4260 ASSIST_GESTURE_RELEASED = 997;
4261
4262 // ACTION: Assist gesture primed
4263 // CATEGORY: GLOBAL_SYSTEM_UI
4264 // OS: O DR
4265 ASSIST_GESTURE_PRIMED = 998;
4266
4267 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004268 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004269 // CATEGORY: GLOBAL_SYSTEM_UI
4270 // OS: O DR
4271 ASSIST_GESTURE_TRIGGERED = 999;
4272
Fan Zhang238162b2017-05-25 14:01:41 -07004273 // ACTION: Update default app from Settings
4274 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4275
4276 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004277 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004278
4279 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004280 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004281
Adrian Roos1c81d772017-05-25 18:00:21 -07004282 // OPEN: Settings > Display > Ambient Display
4283 // CATEGORY: SETTINGS
4284 // OS: O DR
4285 AMBIENT_DISPLAY_SETTINGS = 1003;
4286
Hugo Benichi11da42b2017-05-31 11:11:37 +09004287 // ACTION: CaptivePortalLoginActivity starts
4288 // CATEGORY: GLOBAL_SYSTEM_UI
4289 // OS: O DR
4290 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4291
4292 // ACTION: CaptivePortalLoginActivity auto-closes
4293 // CATEGORY: GLOBAL_SYSTEM_UI
4294 // OS: O DR
4295 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4296
4297 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4298 // CATEGORY: GLOBAL_SYSTEM_UI
4299 // OS: O DR
4300 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4301
4302 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4303 // CATEGORY: GLOBAL_SYSTEM_UI
4304 // OS: O DR
4305 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4306
4307 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4308 // CATEGORY: SETTINGS
4309 // OS: O DR
4310 ACTION_WIFI_SIGNIN = 1008;
4311
Antony Sargentf3cc3172017-05-04 14:58:06 -07004312 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4313 // CATEGORY: SETTINGS
4314 // OS: O DR
4315 BLUETOOTH_DEVICE_DETAILS = 1009;
4316
fanzhang172255759d2017-06-05 21:43:47 -07004317 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4318 CONFIGURE_KEYGUARD_DIALOG = 1010;
4319
Fan Zhange33c70d2017-06-06 12:37:13 -07004320 // Open: Settings > Search > No Result View
4321 SETTINGS_SEARCH_NO_RESULT = 1011;
4322
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004323 // OPEN: Assist Gesture before training
4324 // CATEGORY: SETTINGS
4325 // OS: O DR
4326 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4327
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004328 // CaptivePortalLoginActivity displays SSL error page
4329 // CATEGORY: GLOBAL_SYSTEM_UI
4330 // OS: O DR
4331 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4332
Fan Zhang1a0fc992017-06-13 13:45:21 -07004333 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4334 WIFI_TETHER_SETTINGS = 1014;
4335
Antony Sargentc3b5da62017-06-16 11:50:13 -07004336 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4337 // -> Edit name button.
4338 // CATEGORY: SETTINGS
4339 // OS: O DR
4340 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4341
Fan Zhang543587d2017-06-19 12:32:14 -07004342 // ACTION: Settings > Notification Settings > Open application notification
4343 // CATEGORY: SETTINGS
4344 // OS: O DR
4345 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4346
4347 // ACTION: Settings > App Info > Open app settings
4348 // CATEGORY: SETTINGS
4349 // OS: O DR
4350 ACTION_OPEN_APP_SETTING = 1017;
4351
jackqdyulei2f1a3592017-06-19 13:11:05 -07004352 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4353 // CATEGORY: SETTINGS
4354 // OS: O DR
4355 BLUETOOTH_PAIRING = 1018;
4356
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004357 // ACTION: Collect PSD Signals
4358 // CATEGORY: SETTINGS
4359 // OS: O DR
4360 ACTION_PSD_LOADER = 1019;
4361
jackqdyulei602bcc92017-06-21 15:17:53 -07004362 // ACTION: Background check action on an app
4363 // CATEGORY: SETTINGS
4364 // OS: O DR
4365 ACTION_APP_BACKGROUND_CHECK = 1020;
4366
4367 // ACTION: Location check action on an app
4368 // CATEGORY: SETTINGS
4369 // OS: O DR
4370 ACTION_APP_LOCATION_CHECK = 1021;
4371
Charlie Wang15a36ed2017-06-14 14:46:39 -07004372 // Device headset status
4373 // CATEGORY: OTHER
4374 // SUBTYPE: 1 is DON, 2 is DOFF
4375 // OS: O DR
4376 ACTION_HEADSET_STATUS = 1022;
4377
4378 // Device Headset Plug status
4379 // CATEGORY: OTHER
4380 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4381 // OS: O DR
4382 ACTION_HEADSET_PLUG = 1023;
4383
4384 // Device Headset battery level on Plug
4385 // CATEGORY: OTHER
4386 // FIELD - The battery percentage when the user decided to plug in
4387 // Type: integer
4388 // OS: O DR
4389 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4390
Charlie Wang566ec702017-06-26 15:30:03 -07004391 // Device Headset battery level on Plug
4392 // CATEGORY: OTHER
4393 // FIELD - The battery percentage when the user decided to plug in
4394 // Type: integer
4395 // OS: O DR
4396 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4397
Charlie Wang15a36ed2017-06-14 14:46:39 -07004398 // Device Headset Pose status
4399 // CATEGORY: OTHER
4400 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4401 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004402 ACTION_HEADSET_POSE_STATUS = 1026;
4403
4404 // Device Headset Usage session time
4405 // CATEGORY: OTHER
4406 // FIELD - The time the headset was used in a session
4407 // OS: O DR
4408 FIELD_SESSION_TIME_MS = 1027;
4409
4410 // Device Headset Idle time
4411 // CATEGORY: OTHER
4412 // FIELD - The time in between each session
4413 // OS: O DR
4414 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4415
4416 // Device Headset charge session time
4417 // CATEGORY: OTHER
4418 // FIELD - The time taken for each charge
4419 // OS: O DR
4420 FIELD_TIME_OF_CHARGE_MS = 1029;
4421
4422 // Device Headset time between charge
4423 // CATEGORY: OTHER
4424 // FIELD - The time in between each charge
4425 // OS: O DR
4426 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004427
Antony Sargentca701a22017-07-05 17:02:00 -07004428 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4429 // -> Forget button.
4430 // CATEGORY: SETTINGS
4431 // OS: O DR
4432 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4433
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004434 // An event from the camera service
4435 // CATEGORY: OTHER
4436 // SUBTYPE: CameraEvent
4437 // OS: O DR
4438 ACTION_CAMERA_EVENT = 1032;
4439
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004440 // OPEN: Settings > Trampoline Intent > Settings page
4441 // CATEGORY: SETTINGS
4442 // OS: O DR
4443 TRAMPOLINE_SETTINGS_EVENT = 1033;
4444
Chris Wren9a4f2662017-06-29 10:10:02 -04004445 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4446
Malcolm Chen21062542017-06-20 11:36:01 -07004447 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4448 // CATEGORY: SETTINGS
4449 // OS: O MR
4450 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4451
4452 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4453 // CATEGORY: SETTINGS
4454 // OS: O MR
4455 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4456
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004457 // FIELD - State of asynchronous ranking when Settings search result is clicked
4458 // CATEGORY: SETTINGS
4459 // OS: O MR
4460 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4461
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004462 // ACTION: Settings > Connected devices > SMS Mirroring
4463 // CATEGORY: SETTINGS
4464 // OS: O MR
4465 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4466
Kang Li2c571892017-07-05 14:47:32 -07004467 // ACTION: Chooser picked a ranked target.
4468 // CATEGORY: GLOBAL_SYSTEM_UI
4469 // OS: O MR
4470 ACTION_TARGET_SELECTED = 1085;
4471
4472 // FIELD - is category used in Chooser: 1.
4473 // Type: int encoded boolean
4474 // CATEGORY: GLOBAL_SYSTEM_UI
4475 // OS: O MR
4476 FIELD_IS_CATEGORY_USED = 1086;
4477
4478 // FIELD - ranked position of selected target for Chooser.
4479 // CATEGORY: GLOBAL_SYSTEM_UI
4480 // OS: O MR
4481 FIELD_RANKED_POSITION = 1087;
4482
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004483 // OPEN: Settings > Data plan usage
4484 // CATEGORY: SETTINGS
4485 // OS: O MR
4486 DATA_PLAN_USAGE_SUMMARY = 1088;
4487
Doris Lingce007eb2017-08-09 13:59:46 -07004488 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4489 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4490
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004491 // ACTION: Logged when the app has notified that it has fully drawn. See
4492 // Activity.reportFullyDrawn().
4493 APP_TRANSITION_REPORTED_DRAWN = 1090;
4494
4495 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4496 // the app transition.
4497 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4498
Daniel Nishia86115f2017-08-23 10:27:08 -07004499 // OPEN: Settings > Storage > Photos & Videos
4500 // CATEGORY: SETTINGS
4501 // OS: O MR
4502 APPLICATIONS_STORAGE_PHOTOS = 1092;
4503
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004504 // ACTION: Logged when the status bar icons change.
4505 // OS: O MR
4506 STATUS_BAR_ICONS_CHANGED = 1093;
4507
4508 // FIELD: Bitfield indicating which icons are shown.
4509 // OS: O MR
4510 FIELD_STATUS_ICONS = 1094;
4511
4512 // FIELD: Number of status icons currently shown.
4513 // OS: O MR
4514 FIELD_NUM_STATUS_ICONS = 1095;
4515
Jack He4b605792017-09-01 11:48:30 -07004516 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4517 // CATEGORY: SETTINGS
4518 // OS: O MR
Jason Monkaa60c742017-09-07 08:26:28 -04004519 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
Jack He4b605792017-09-01 11:48:30 -07004520
Soroosh Mariooryadee684232017-09-07 08:45:18 -07004521 // FIELD - Whether smart suggestion ranking was enabled or not
4522 // Type: int encoded boolean
4523 // CATEGORY: SETTINGS
4524 // OS: O MR
4525 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4526
James Hawkinsb1dc6ca2017-09-12 13:16:03 -07004527 // ACTION: The device boots
4528 ACTION_BOOT = 1098;
4529
4530 // FIELD: A string value representing some state of the platform, e.g., boot reason
4531 FIELD_PLATFORM_REASON = 1099;
4532
Jan Althaus786a39d2017-09-15 10:41:16 +02004533 // CATEGORY: The category for all actions relating to selection session logging.
4534 // OS: O MR
4535 TEXT_SELECTION_SESSION = 1100;
4536
4537 // ACTION: A selection session started (i.e. the selection handles appeared)
4538 // CATEGORY: TEXT_SELECTION_SESSION
4539 // OS: O MR
4540 ACTION_TEXT_SELECTION_START = 1101;
4541
4542 // ACTION: The user modified the selection (e.g. by dragging the handles)
4543 // CATEGORY: TEXT_SELECTION_SESSION
4544 // OS: O MR
4545 ACTION_TEXT_SELECTION_MODIFY = 1102;
4546
4547 // ACTION: The user modified the selection by pressing the "select all" button.
4548 // CATEGORY: TEXT_SELECTION_SESSION
4549 // OS: O MR
4550 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4551
4552 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4553 // CATEGORY: TEXT_SELECTION_SESSION
4554 // OS: O MR
4555 ACTION_TEXT_SELECTION_RESET = 1104;
4556
4557 // ACTION: Smart selection made a single word prediction
4558 // CATEGORY: TEXT_SELECTION_SESSION
4559 // OS: O MR
4560 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4561
4562 // ACTION: Smart selection made a multi word prediction
4563 // CATEGORY: TEXT_SELECTION_SESSION
4564 // OS: O MR
4565 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4566
4567 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4568 // CATEGORY: TEXT_SELECTION_SESSION
4569 // OS: O MR
4570 ACTION_TEXT_SELECTION_AUTO = 1107;
4571
4572 // ACTION: A selection session ended with the user typing over the text
4573 // CATEGORY: TEXT_SELECTION_SESSION
4574 // OS: O MR
4575 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4576
4577 // ACTION: A selection session ended with the user copying the text
4578 // CATEGORY: TEXT_SELECTION_SESSION
4579 // OS: O MR
4580 ACTION_TEXT_SELECTION_COPY = 1109;
4581
4582 // ACTION: A selection session ended with the user pasting over the text
4583 // CATEGORY: TEXT_SELECTION_SESSION
4584 // OS: O MR
4585 ACTION_TEXT_SELECTION_PASTE = 1110;
4586
4587 // ACTION: A selection session ended with the user cutting the text
4588 // CATEGORY: TEXT_SELECTION_SESSION
4589 // OS: O MR
4590 ACTION_TEXT_SELECTION_CUT = 1111;
4591
4592 // ACTION: A selection session ended with the user pressing the share button
4593 // CATEGORY: TEXT_SELECTION_SESSION
4594 // OS: O MR
4595 ACTION_TEXT_SELECTION_SHARE = 1112;
4596
4597 // ACTION: A selection session ended with the user pressing the smart share button
4598 // CATEGORY: TEXT_SELECTION_SESSION
4599 // OS: O MR
4600 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4601
4602 // ACTION: A selection session ended with the user dragging the text
4603 // CATEGORY: TEXT_SELECTION_SESSION
4604 // OS: O MR
4605 ACTION_TEXT_SELECTION_DRAG = 1114;
4606
4607 // ACTION: A selection session ended with the user abandoning the selection
4608 // CATEGORY: TEXT_SELECTION_SESSION
4609 // OS: O MR
4610 ACTION_TEXT_SELECTION_ABANDON = 1115;
4611
4612 // ACTION: A selection session ended with the user picking an unhandled action bar item
4613 // CATEGORY: TEXT_SELECTION_SESSION
4614 // OS: O MR
4615 ACTION_TEXT_SELECTION_OTHER = 1116;
4616
4617 // FIELD: Time in milliseconds from the start of the session to this event
4618 // CATEGORY: TEXT_SELECTION_SESSION
4619 // OS: O MR
4620 FIELD_SELECTION_SINCE_START = 1117;
4621
4622 // FIELD: time in milliseconds between the last event in the session and this one
4623 // CATEGORY: TEXT_SELECTION_SESSION
4624 // OS: O MR
4625 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4626
4627 // FIELD: a random uid for a selection session (lasting from select start to end)
4628 // CATEGORY: TEXT_SELECTION_SESSION
4629 // OS: O MR
4630 FIELD_SELECTION_SESSION_ID = 1119;
4631
4632 // FIELD: the sequence number of the event in the session
4633 // CATEGORY: TEXT_SELECTION_SESSION
4634 // OS: O MR
4635 FIELD_SELECTION_SESSION_INDEX = 1120;
4636
4637 // FIELD: a concatenation of the widget type and ML model version.
4638 // CATEGORY: TEXT_SELECTION_SESSION
4639 // OS: O MR
4640 FIELD_SELECTION_VERSION_TAG = 1121;
4641
4642 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4643 // packed 16bit integers. (start in MSBs, end in LSBs)
4644 // CATEGORY: TEXT_SELECTION_SESSION
4645 // OS: O MR
4646 FIELD_SELECTION_RANGE = 1122;
4647
4648 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4649 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4650 // CATEGORY: TEXT_SELECTION_SESSION
4651 // OS: O MR
4652 FIELD_SELECTION_SMART_RANGE = 1123;
4653
Felipe Lemeb22d6352017-09-08 20:03:53 -07004654 // The value of an autofillable and savable view was reset
4655 // Package: Package of app that was autofilled
4656 // OS: O MR
4657 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4658 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
Felipe Leme11166522018-05-07 10:18:47 -07004659 // NOTE: starting on OS P, it also added the following field:
4660 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004661 AUTOFILL_VALUE_RESET = 1124;
4662
4663 // Tag of AUTOFILL_VALUE_RESET
4664 // OS: O MR
4665 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4666
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004667 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004668 // Package: Package of app that was autofilled
4669 // OS: O MR
4670 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004671 // NOTE: starting on OS P, it also added the following field:
4672 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004673 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4674
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004675 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004676 // Package: Package of app that was autofilled
4677 // OS: O MR
4678 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004679 // NOTE: starting on OS P, it also added the following field:
4680 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004681 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4682
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004683 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004684 // Package: Package of app that was autofilled
4685 // OS: O MR
4686 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004687 // NOTE: starting on OS P, it also added the following field:
4688 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004689 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4690
Felipe Leme2c888422017-10-26 12:46:35 -07004691 // An autofill service used a custom description (using RemoteViews) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004692 // Package: Package of app that is autofilled
4693 // OS: O MR
4694 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4695 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004696 // NOTE: starting on OS P, it also added the following field:
4697 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004698 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4699
4700 // FIELD - Type of save object passed by the service when the Save UI is shown
4701 // OS: O MR
4702 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4703
Felipe Leme2c888422017-10-26 12:46:35 -07004704 // An autofill service used a custom subtitle (String) in the autofill save UI
Felipe Lemeb22d6352017-09-08 20:03:53 -07004705 // Package: Package of app that is autofilled
4706 // OS: O MR
4707 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4708 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004709 // NOTE: starting on OS P, it also added the following field:
4710 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004711 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4712
Felipe Leme2c888422017-10-26 12:46:35 -07004713 // 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 -07004714 // Package: Package of app that is autofilled
4715 // OS: O MR
4716 // Type TYPE_UNKNOWN: The link was not properly set by the service
4717 // Type TYPE_OPEN: The link launched an activity
4718 // Type TYPE_FAILURE: The link could not launc an activity
4719 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4720 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004721 // NOTE: starting on OS P, it also added the following field:
4722 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004723 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4724
4725 // Result of the validation on save when an autofill service provided a validator
4726 // Package: Package of app that is autofilled
4727 // OS: O MR
4728 // Type TYPE_FAILURE: The validation could not be performed due to an error
4729 // Type TYPE_SUCCESS: The validation passed
4730 // Type TYPE_DISMISS: The validation failed
4731 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4732 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
Felipe Leme11166522018-05-07 10:18:47 -07004733 // NOTE: starting on OS P, it also added the following field:
4734 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004735 AUTOFILL_SAVE_VALIDATION = 1133;
4736
Felipe Leme2c888422017-10-26 12:46:35 -07004737 // 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 -07004738 // provided by the autofill service
4739 // Package: Package of app that is autofilled
4740 // OS: O MR
Felipe Leme2c888422017-10-26 12:46:35 -07004741 // Type TYPE_OPEN: The autofill save UI was restored
4742 // Type TYPE_DISMISS: The autofill save UI was destroyed
Felipe Lemeb22d6352017-09-08 20:03:53 -07004743 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
Felipe Leme11166522018-05-07 10:18:47 -07004744 // NOTE: starting on OS P, it also added the following field:
4745 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemeb22d6352017-09-08 20:03:53 -07004746 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4747
Felipe Leme9d414492017-09-20 13:55:28 -07004748 // Autofill service called API that disables itself
4749 // Package: Package of the autofill service
4750 // OS: O MR
4751 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4752
Felipe Lemeb659adb2018-01-18 15:21:36 -08004753 // Reports how long it took to show the autofill UI after a field was focused
4754 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Lemec660c4c2017-09-22 09:23:02 -07004755 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4756 // Package: Package of the autofill service
4757 // OS: O MR
Felipe Leme11166522018-05-07 10:18:47 -07004758 // NOTE: starting on OS P, it also added the following field:
4759 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Lemec660c4c2017-09-22 09:23:02 -07004760 AUTOFILL_UI_LATENCY = 1136;
4761
Chris Wren21a2e722017-10-02 17:44:53 -04004762 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4763 // OS: O MR
4764 NOTIFICATION_SNOOZE_CLICKED = 1137;
4765
4766 // Action: user selected a notification snooze duration from the drop down
4767 // OS: O MR
4768 NOTIFICATION_SELECT_SNOOZE = 1138;
4769
4770 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4771 // OS: O MR
4772 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4773
4774 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4775 // OS: O MR
4776 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4777
4778 // Action: user tapped undo on the notification snooze leave-behind
4779 // OS: O MR
4780 NOTIFICATION_UNDO_SNOOZE = 1141;
4781
4782 // Action: user togged the visibility of the notification snooze options drop down
4783 // OS: O MR
4784 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4785
Romain Guy62e8c172017-10-24 21:37:34 +01004786 // OPEN: Settings > Display > Colors
4787 // CATEGORY: SETTINGS
4788 // OS: O MR
4789 COLOR_MODE_SETTINGS = 1143;
4790
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004791 // Enclosing category for group of APP_TRANSITION_FOO events,
4792 // logged when we cancel an app transition.
4793 APP_TRANSITION_CANCELLED = 1144;
4794
Felipe Lemeb659adb2018-01-18 15:21:36 -08004795 // Tag of a field representing a duration on autofill-related metrics.
4796 FIELD_AUTOFILL_DURATION = 1145;
4797
Doris Lingce007eb2017-08-09 13:59:46 -07004798 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4799
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004800 // OPEN: Settings > Network & Internet > Mobile network
4801 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004802 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004803
4804 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4805 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004806 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004807
4808 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4809 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004810 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004811
4812 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4813 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004814 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004815
4816 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4817 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004818 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004819
4820 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4821 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004822 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004823
4824 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4825 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004826 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004827
4828 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4829 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004830 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004831
4832 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4833 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004834 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004835
4836 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4837 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004838 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004839
4840 // ACTION: Settings > Network & Internet > Mobile network > Network
4841 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004842 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004843
Malcolm Chen0cdebf42018-04-05 15:45:48 -07004844 // Not used anymore.
Chris Wren1cb7d272017-10-03 13:22:01 -04004845 FIELD_MOBILE_NETWORK = 1211;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004846
4847 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4848 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004849 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004850
4851 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4852 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004853 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004854
4855 // OPEN: Settings > Network & Internet > Mobile network > System select
4856 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004857 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004858
4859 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4860 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004861 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004862
4863 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4864 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004865 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
Malcolm Chen8c2b4712017-07-25 15:48:44 -07004866
Fan Zhanga2f2c912017-08-15 17:20:37 -07004867 // OPEN: Settings > Developer Options > Experiment dashboard
4868 // CATEGORY: SETTINGS
Chris Wren1cb7d272017-10-03 13:22:01 -04004869 SETTINGS_FEATURE_FLAGS_DASHBOARD = 1217;
Fan Zhanga2f2c912017-08-15 17:20:37 -07004870
Julia Reynolds005c8b92017-08-24 10:35:53 -04004871 // OPEN: Settings > Notifications > [App] > Topic Notifications
4872 // CATEGORY: SETTINGS
4873 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004874 NOTIFICATION_CHANNEL_GROUP = 1218;
Julia Reynolds005c8b92017-08-24 10:35:53 -04004875
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004876 // OPEN: Settings > Developer options > Enable > Info dialog
4877 // CATEGORY: SETTINGS
4878 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004879 DIALOG_ENABLE_DEVELOPMENT_OPTIONS = 1219;
Fan Zhang3af4fbc2017-09-10 14:38:29 -07004880
jeffreyhuang57359c02017-09-18 11:34:00 -07004881 // OPEN: Settings > Developer options > OEM unlocking > Info dialog
4882 // CATEGORY: SETTINGS
4883 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004884 DIALOG_ENABLE_OEM_UNLOCKING = 1220;
jeffreyhuang57359c02017-09-18 11:34:00 -07004885
Kevin Chyn60eea712017-09-26 16:03:05 -07004886 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint]
4887 // CATEGORY: SETTINGS
4888 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004889 FINGERPRINT_AUTHENTICATE_SIDECAR = 1221;
Kevin Chyn60eea712017-09-26 16:03:05 -07004890
jeffreyhuang37c4b132017-09-21 14:09:20 -07004891 // OPEN: Settings > Developer options > USB debugging > Info dialog
4892 // CATEGORY: SETTINGS
4893 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004894 DIALOG_ENABLE_ADB = 1222;
jeffreyhuang37c4b132017-09-21 14:09:20 -07004895
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004896 // OPEN: Settings > Developer options > Revoke USB debugging authorizations > Info dialog
4897 // CATEGORY: SETTINGS
4898 // OS: P
Chris Wren1cb7d272017-10-03 13:22:01 -04004899 DIALOG_CLEAR_ADB_KEYS = 1223;
jeffreyhuang9afc8d72017-10-02 15:50:12 -07004900
Fan Zhange5b34302017-10-09 15:58:38 -07004901 // Open: Settings > Developer options > Quick setting tile config
jeffreyhuang49de1252017-10-05 15:25:14 -07004902 // CATEGORY: SETTINGS
4903 // OS: P
Fan Zhange5b34302017-10-09 15:58:38 -07004904 DEVELOPMENT_QS_TILE_CONFIG = 1224;
4905
jeffreyhuang49de1252017-10-05 15:25:14 -07004906 // OPEN: Settings > Developer options > Store logger data persistently on device > Info dialog
4907 // CATEGORY: SETTINGS
4908 // OS: P
4909 DIALOG_LOG_PERSIST = 1225;
4910
Beverly04216872017-09-28 10:55:32 -04004911 // ACTION: DND Settings > Priority only allows > Alarms toggle
4912 // SUBTYPE: 0 is off, 1 is on
4913 // CATEGORY: SETTINGS
4914 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004915 ACTION_ZEN_ALLOW_ALARMS = 1226;
Beverly04216872017-09-28 10:55:32 -04004916
4917 // ACTION: DND Settings > Priority only allows > Media toggle
4918 // SUBTYPE: 0 is off, 1 is on
4919 // CATEGORY: SETTINGS
4920 // OS: P
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004921 ACTION_ZEN_ALLOW_MEDIA = 1227;
4922
4923 // An autofill service explicitly defined which view should commit the autofill context
4924 // Package: Package of app that is autofilled
4925 // OS: P
4926 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme11166522018-05-07 10:18:47 -07004927 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004928 AUTOFILL_EXPLICIT_SAVE_TRIGGER_DEFINITION = 1228;
4929
4930 // The autofill context was commited when the user clicked a view explicitly marked by the
4931 // service as committing it
4932 // Package: Package of app that is autofilled
4933 // OS: P
Felipe Leme11166522018-05-07 10:18:47 -07004934 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme2fe3ade2017-09-28 15:03:36 -07004935 AUTOFILL_SAVE_EXPLICITLY_TRIGGERED = 1229;
Beverly04216872017-09-28 10:55:32 -04004936
Malcolm Chen4f17b172017-10-19 13:54:07 -07004937 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4938 // CATEGORY: SETTINGS
4939 // OS: P
4940 WIFI_CALLING_FOR_SUB = 1230;
4941
Felipe Leme17292d12017-10-24 14:03:10 -07004942 // An autofill service asked to disable autofill for a given application.
4943 // Package: Package of app that is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004944 // OS: P
4945 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme463b3072018-01-24 13:16:44 -08004946 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme11166522018-05-07 10:18:47 -07004947 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004948 AUTOFILL_SERVICE_DISABLED_APP = 1231;
4949
4950 // An autofill service asked to disable autofill for a given activity.
4951 // Package: Package of app whose activity is being disabled for autofill
Felipe Leme17292d12017-10-24 14:03:10 -07004952 // OS: P
4953 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4954 // Tag FIELD_CLASS_NAME: Class name of the activity that is being disabled for autofill
Felipe Leme463b3072018-01-24 13:16:44 -08004955 // Tag FIELD_AUTOFILL_DURATION: duration (in ms) that autofill will be disabled
Felipe Leme11166522018-05-07 10:18:47 -07004956 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme17292d12017-10-24 14:03:10 -07004957 AUTOFILL_SERVICE_DISABLED_ACTIVITY = 1232;
4958
jackqdyuleide3b7af2017-10-24 16:32:58 -07004959 // ACTION: Stop an app and turn on background check
4960 // CATEGORY: SETTINGS
4961 // OS: P
4962 ACTION_APP_STOP_AND_BACKGROUND_CHECK = 1233;
4963
4964 // FIELD: The action type for each anomaly
4965 // CATEGORY: SETTINGS
4966 // OS: P
4967 FIELD_ANOMALY_ACTION_TYPE = 1234;
4968
4969 // OPEN: Settings -> Battery -> Wakelock anomaly
4970 // CATEGORY: SETTINGS
4971 // OS: P
4972 ANOMALY_TYPE_WAKELOCK = 1235;
4973
4974 // OPEN: Settings -> Battery -> Wakeup alarm anomaly
4975 // CATEGORY: SETTINGS
4976 // OS: P
4977 ANOMALY_TYPE_WAKEUP_ALARM = 1236;
4978
4979 // OPEN: Settings -> Battery -> Unoptimized bt anomaly
4980 // CATEGORY: SETTINGS
4981 // OS: P
4982 ANOMALY_TYPE_UNOPTIMIZED_BT = 1237;
4983
Fan Zhanga4a01722017-10-30 17:54:24 -07004984 // Open: Settings > Dev options > Oem unlock > lock it > warning dialog.
4985 // OS: P
4986 DIALOG_OEM_LOCK_INFO = 1238;
4987
jackqdyulei331fafb2017-11-01 14:01:24 -07004988 // ACTION: Settings > Wi-Fi > Click one network > Auto sign in
4989 // CATEGORY: SETTINGS
4990 // OS: P
4991 ACTION_WIFI_AUTO_SIGN_IN = 1239;
4992
jeffreyhuangb3bfc4f2017-10-27 11:22:45 -07004993 // Open: Settings > System > About phone > IMEI
4994 // CATEGORY: SETTINGS
4995 // OS: P
4996 DIALOG_IMEI_INFO = 1240;
4997
Philip P. Moltmann8cff8b92017-10-25 14:32:41 -07004998 // In permission action fields tagged like this reference the permission affected
4999 FIELD_PERMISSION = 1241;
5000
5001 // ACTION: An app requested a permission and we asked to user to approve the request
5002 // PACKAGE: The package name of the app requesting the permission
5003 // Tag FIELD_PERMISSION: Name of the permission requested
5004 ACTION_PERMISSION_REQUESTED = 1242;
5005
5006 // ACTION: An app was granted the a permission. This can happen after a user approved a request
5007 // or automatically. In the second case there will not be an
5008 // ACTION_PERMISSION_REQUESTED.
5009 // PACKAGE: The package name of the app that was granted the permission
5010 // Tag FIELD_PERMISSION: Name of the permission granted
5011 ACTION_PERMISSION_GRANTED = 1243;
5012
5013 // ACTION: An app requested the a permission and the request was denied by the user or a device
5014 // policy
5015 // PACKAGE: The package name of the app requesting the permission
5016 // Tag FIELD_PERMISSION: Name of the permission denied
5017 ACTION_PERMISSION_DENIED = 1244;
5018
5019 // ACTION: A permission was revoked
5020 // PACKAGE: The package name of the app the permission was revoked for
5021 // Tag FIELD_PERMISSION: Name of the permission revoked
5022 ACTION_PERMISSION_REVOKED = 1245;
5023
jeffreyhuang594314c2017-11-01 10:26:15 -07005024 // OPEN: Settings > System > About Phone > Sim status
5025 // CATEGORY: SETTINGS
5026 // OS: P
5027 DIALOG_SIM_STATUS = 1246;
5028
jeffreyhuang3bd59782017-11-02 11:08:28 -07005029 // OPEN: Settings > System > About Phone > Android Version
5030 // CATEGORY: SETTINGS
5031 // OS: P
5032 DIALOG_FIRMWARE_VERSION = 1247;
5033
jackqdyulei8fe97542017-11-08 16:23:43 -08005034 // OPEN: Settings > Network & internet > Menu > Private DNS
5035 // CATEGORY: SETTINGS
5036 // OS: P
5037 DIALOG_PRIVATE_DNS = 1248;
5038
5039 // ACTION: A private dns mode been selected by user
5040 // CATEGORY: SETTINGS
5041 // OS: P
5042 ACTION_PRIVATE_DNS_MODE = 1249;
5043
Jan Althausae5eb832017-11-06 12:31:59 +01005044 // FIELD: text select start offset in words (as defined by the ICU BreakIterator).
5045 // CATEGORY: TEXT_SELECTION_SESSION
5046 // OS: P
5047 FIELD_SELECTION_RANGE_START = 1250;
5048
5049 // FIELD: text select end offset in words (as defined by the ICU BreakIterator).
5050 // CATEGORY: TEXT_SELECTION_SESSION
5051 // OS: P
5052 FIELD_SELECTION_RANGE_END = 1251;
5053
5054 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
5055 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5056 // CATEGORY: TEXT_SELECTION_SESSION
5057 // OS: P
5058 FIELD_SELECTION_SMART_RANGE_START = 1252;
5059
5060 // FIELD: smart text selection end offset in words (as defined by the ICU BreakIterator),
5061 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
5062 // CATEGORY: TEXT_SELECTION_SESSION
5063 // OS: P
5064 FIELD_SELECTION_SMART_RANGE_END = 1253;
5065
5066 // FIELD: the entity type of the text currently selected.
5067 // CATEGORY: TEXT_SELECTION_SESSION
5068 // OS: P
5069 FIELD_SELECTION_ENTITY_TYPE = 1254;
5070
5071 // FIELD: the type of widget the selection was made in.
5072 // CATEGORY: TEXT_SELECTION_SESSION
5073 // OS: P
5074 FIELD_SELECTION_WIDGET_TYPE = 1255;
5075
5076 // FIELD: the name of the text classifier model used.
5077 // CATEGORY: TEXT_SELECTION_SESSION
5078 // OS: P
5079 FIELD_TEXTCLASSIFIER_MODEL = 1256;
5080
Beverly625442d2017-11-03 17:27:02 -04005081 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Messages
5082 // CATEGORY: SETTINGS
5083 // OS: P
5084 NOTIFICATION_ZEN_MODE_MESSAGES = 1257;
5085
5086 // OPEN: Settings > Sound & notification > Do Not Disturb > Behavior > Calls
5087 // CATEGORY: SETTINGS
5088 // OS: P
5089 NOTIFICATION_ZEN_MODE_CALLS = 1258;
5090
5091 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Until you turn off
5092 // CATEGORY: SETTINGS
5093 // OS: P
5094 NOTIFICATION_ZEN_MODE_TOGGLE_ON_FOREVER = 1259;
5095
5096 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Time countdown manual rule (ie: for one hour)
5097 // CATEGORY: SETTINGS
5098 // OS: P
5099 NOTIFICATION_ZEN_MODE_TOGGLE_ON_COUNTDOWN = 1260;
5100
5101 // OPEN: Settings > Sound & notification > Do Not Disturb > TURN ON -> Next Alarm (ie: Until Tue 7:20 AM)
5102 // CATEGORY: SETTINGS
5103 // OS: P
5104 NOTIFICATION_ZEN_MODE_TOGGLE_ON_ALARM = 1261;
5105
Jan Althaus5d0a14b2017-11-15 11:20:58 +01005106 // FIELD: the version of the widget the selection was made in.
5107 // CATEGORY: TEXT_SELECTION_SESSION
5108 // OS: P
5109 FIELD_SELECTION_WIDGET_VERSION = 1262;
5110
jackqdyulei63193602017-11-27 13:46:48 -08005111 // OPEN: Settings > Battery(version 2)
5112 // CATEGORY: SETTINGS
5113 // OS: P
5114 FUELGAUGE_POWER_USAGE_SUMMARY_V2 = 1263;
5115
jackqdyulei6139eab2017-11-29 14:38:32 -08005116 // OPEN: Settings > Connected devices > Connection preferences
5117 // CATEGORY: SETTINGS
5118 // OS: P
5119 CONNECTION_DEVICE_ADVANCED = 1264;
5120
Fan Zhang5235c052017-12-05 13:49:35 -08005121 // OPEN: Settings > Security > Screen lock gear icon
5122 // CATEGORY: SETTINGS
5123 // OS: P
5124 SCREEN_LOCK_SETTINGS = 1265;
5125
Beverlybf16c142017-11-27 16:21:34 -05005126 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Delete rule (trash can icon)
5127 // CATEGORY: SETTINGS
5128 // OS: P
5129 NOTIFICATION_ZEN_MODE_DELETE_RULE_DIALOG = 1266;
Chris Wren3824c392017-11-27 12:54:14 -05005130
Beverlybf16c142017-11-27 16:21:34 -05005131 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name > OK
5132 // CATEGORY: SETTINGS
5133 // OS: P
5134 ACTION_ZEN_MODE_RULE_NAME_CHANGE_OK = 1267;
5135
5136 // OPEN: Settings > Sound > Do Not Disturb > TURN ON NOW/TURN OFF NOW
5137 // CATEGORY: SETTINGS
5138 // OS: P
5139 ACTION_ZEN_TOGGLE_DND_BUTTON = 1268;
5140
5141 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule > Event/Time
5142 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Select rule ("Event") > Rule name
5143 // CATEGORY: SETTINGS
5144 // OS: P
5145 NOTIFICATION_ZEN_MODE_RULE_NAME_DIALOG = 1269;
5146
5147 // OPEN: Settings > Sound > Do Not Disturb > Turn on automatically > Add rule
5148 // CATEGORY: SETTINGS
5149 // OS: P
5150 NOTIFICATION_ZEN_MODE_RULE_SELECTION_DIALOG = 1270;
5151
Felipe Leme5e047202017-12-05 16:30:06 -08005152 // Tag of a field for the number of ids in an autofill field classification request.
5153 FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS = 1271;
5154
5155 // An autofill service updated its user data
5156 // Package: Package of the autofill service that updated the user data
Felipe Leme6ef61b82018-02-15 16:26:02 -08005157 // Tag FIELD_AUTOFILL_NUM_VALUES: number of fields added (or 0 if reset)
5158 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
Felipe Leme5e047202017-12-05 16:30:06 -08005159 // OS: P
5160 AUTOFILL_USERDATA_UPDATED = 1272;
5161
5162 // Some data entered by the user matched the field classification requested by the service.
5163 // Package: Package of app that is autofilled
5164 // Counter: number of matches found
5165 // OS: P
5166 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
5167 // Tag FIELD_AUTOFILL_MATCH_SCORE: Average score of the matches, in the range of 0 to 100
Felipe Leme11166522018-05-07 10:18:47 -07005168 // Type FIELD_AUTOFILL_COMPAT_MODE: package is being autofilled on compatibility mode.
Felipe Leme5e047202017-12-05 16:30:06 -08005169 AUTOFILL_FIELD_CLASSIFICATION_MATCHES = 1273;
5170
5171 // Tag used to report autofill field classification scores
5172 FIELD_AUTOFILL_MATCH_SCORE = 1274;
5173
Jerry Zhang18be8db2017-12-15 15:24:41 -08005174 // ACTION: Usb config has been changed to charging
5175 // CATEGORY: SETTINGS
5176 // OS: P
5177 ACTION_USB_CONFIG_CHARGING = 1275;
5178
5179 // ACTION: Usb config has been changed to mtp (file transfer)
5180 // CATEGORY: SETTINGS
5181 // OS: P
5182 ACTION_USB_CONFIG_MTP = 1276;
5183
5184 // ACTION: Usb config has been changed to ptp (photo transfer)
5185 // CATEGORY: SETTINGS
5186 // OS: P
5187 ACTION_USB_CONFIG_PTP = 1277;
5188
5189 // ACTION: Usb config has been changed to rndis (usb tethering)
5190 // CATEGORY: SETTINGS
5191 // OS: P
5192 ACTION_USB_CONFIG_RNDIS = 1278;
5193
5194 // ACTION: Usb config has been changed to midi
5195 // CATEGORY: SETTINGS
5196 // OS: P
5197 ACTION_USB_CONFIG_MIDI = 1279;
5198
5199 // ACTION: Usb config has been changed to accessory
5200 // CATEGORY: SETTINGS
5201 // OS: P
5202 ACTION_USB_CONFIG_ACCESSORY = 1280;
5203
jackqdyuleie04138d2018-01-08 17:51:57 -08005204 // OPEN: Settings > Battery > Smart Battery
5205 // CATEGORY: SETTINGS
5206 // OS: P
5207 FUELGAUGE_SMART_BATTERY = 1281;
5208
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005209 // ACTION: User tapped Screenshot in the power menu.
5210 // CATEGORY: GLOBAL_SYSTEM_UI
5211 // OS: P
5212 ACTION_SCREENSHOT_POWER_MENU = 1282;
5213
Felipe Leme3e099112018-01-18 12:57:45 -08005214 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access
Felipe Leme12e15cc2018-01-12 09:14:16 -08005215 // CATEGORY: SETTINGS
5216 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005217 DIRECTORY_ACCESS = 1283;
Felipe Leme12e15cc2018-01-12 09:14:16 -08005218
Felipe Leme3e099112018-01-18 12:57:45 -08005219 // OPEN: Settings > Apps & Notifications -> Special app access -> Directory Access -> Package
Felipe Leme12e15cc2018-01-12 09:14:16 -08005220 // CATEGORY: SETTINGS
5221 // OS: P
Felipe Leme3e099112018-01-18 12:57:45 -08005222 APPLICATIONS_DIRECTORY_ACCESS_DETAIL = 1284;
Alison Cichowlasa2cd19e2017-12-06 10:51:21 -05005223
jackqdyuleid9821242018-01-09 17:42:52 -08005224 // OPEN: Settings > Battery > Smart Battery > Restricted apps
5225 // CATEGORY: SETTINGS
5226 // OS: P
5227 FUELGAUGE_RESTRICTED_APP_DETAILS = 1285;
5228
Beverly92c25682018-01-22 09:27:19 -05005229 // OPEN: Settings > Sound & notification > Do Not Disturb > Turn on now
5230 // CATEGORY: SETTINGS
5231 // OS: P
5232 NOTIFICATION_ZEN_MODE_ENABLE_DIALOG = 1286;
5233
Mike Digmanc94759d2018-01-23 11:01:21 -08005234 // ACTION: Rotate suggestion accepted in rotation locked mode
5235 // CATEGORY: GLOBAL_SYSTEM_UI
5236 // OS: P
5237 ACTION_ROTATION_SUGGESTION_ACCEPTED = 1287;
5238
5239 // OPEN: Rotation suggestion shown in rotation locked mode
5240 // CATEGORY: GLOBAL_SYSTEM_UI
5241 // OS: P
5242 ROTATION_SUGGESTION_SHOWN = 1288;
5243
Felipe Leme87b7f8f2018-01-30 18:39:28 +00005244 // An autofill service was bound using an unofficial(but still supported) permission.
5245 // Package: Package of the autofill service
5246 // OS: P
5247 AUTOFILL_INVALID_PERMISSION = 1289;
5248
Amin Shaikh4bd8e052018-01-29 09:52:15 -05005249 // OPEN: QS Alarm tile shown
5250 // ACTION: QS Alarm tile tapped
5251 // SUBTYPE: 0 is off, 1 is on
5252 // CATEGORY: QUICK_SETTINGS
5253 // OS: P
5254 QS_ALARM = 1290;
5255
Jerry Zhang79147972018-01-31 16:04:06 -08005256 // OPEN: Settings->Connected Devices->USB->(click on details link)
5257 // CATEGORY: SETTINGS
5258 // OS: P
5259 USB_DEVICE_DETAILS = 1291;
5260
Michael Wright98bdc512018-01-26 19:15:57 +00005261 // OPEN: Settings > Accessibility > Vibration
5262 // CATEGORY: SETTINGS
5263 // OS: P
5264 ACCESSIBILITY_VIBRATION = 1292;
5265
5266 // OPEN: Settings > Accessibility > Vibration > Ring & notification vibration
5267 // CATEGORY: SETTINGS
5268 // OS: P
5269 ACCESSIBILITY_VIBRATION_NOTIFICATION = 1293;
5270
5271 // OPEN: Settings > Accessibility > Vibration > Touch vibration
5272 // CATEGORY: SETTINGS
5273 // OS: P
5274 ACCESSIBILITY_VIBRATION_TOUCH = 1294;
5275
Julia Reynolds8b46ef22018-02-06 14:47:30 -05005276 // OPEN: Volume panel > output chooser dialog
5277 // OS: P
5278 OUTPUT_CHOOSER = 1295;
5279
5280 // Action: Volume panel > output chooser dialog > tap on device
5281 // OS: P
5282 ACTION_OUTPUT_CHOOSER_CONNECT = 1296;
5283
5284 // Action: Volume panel > output chooser dialog > tap on X next to connected device
5285 // OS: P
5286 ACTION_OUTPUT_CHOOSER_DISCONNECT = 1297;
5287
Leif Hendrik Wilden1e462a02018-02-12 13:50:33 -08005288 // OPEN: TV Settings > Home theater control
5289 // OS: P
5290 SETTINGS_TV_HOME_THEATER_CONTROL_CATEGORY = 1298;
5291
5292 // OPEN: TV Settings > TV Inputs (Inputs & Devices)
5293 // OS: P
5294 SETTINGS_TV_INPUTS_CATEGORY = 1299;
5295
5296 // OPEN: TV Settings > Device
5297 // OS: P
5298 SETTINGS_TV_DEVICE_CATEGORY = 1300;
5299
5300 // OPEN: TV Settings > Network > Proxy settings
5301 // OS: P
5302 DIALOG_TV_NETWORK_PROXY = 1301;
5303
Makoto Onuki698f7a02018-02-13 15:02:23 -08005304 // Events for battery saver turning on/off and/or the interactive state changes.
5305 // OS: P
5306 BATTERY_SAVER = 1302;
5307
5308 // Device interactive state -- i.e. the screen ON (=1) or OFF (=1)
5309 // OS: P
5310 FIELD_INTERACTIVE = 1303;
5311
5312 // Time spent in milliseconds in the current mode.
5313 // OS: P
5314 FIELD_DURATION_MILLIS = 1304;
5315
5316 // Battery level in uA (0 - ~3,000,000 depending on device) when the current "mode" started.
5317 // OS: P
5318 FIELD_START_BATTERY_UA = 1305;
5319
5320 // Battery level in uA (0 - ~3,000,000 depending on device) when this event was created.
5321 // OS: P
5322 FIELD_END_BATTERY_UA = 1306;
5323
5324 // Battery level in % (0-100) when the current "mode" started.
5325 // OS: P
5326 FIELD_START_BATTERY_PERCENT = 1307;
5327
5328 // Battery level in % (0-100) when this event was created.
5329 // OS: P
5330 FIELD_END_BATTERY_PERCENT = 1308;
5331
Christine Frankse257e452018-01-18 11:06:54 -08005332 // ACTION: Settings > Display > Night Light
5333 // SUBTYPE: com.android.server.display.ColorDisplayService.AutoMode value
5334 // CATEGORY: SETTINGS
5335 // OS: P
5336 ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED = 1309;
5337
5338 // ACTION: Settings > Display > Night Light
5339 // CATEGORY: SETTINGS
5340 // SUBTYPE: 0 is starting time, 1 is ending time
5341 // OS: P
5342 ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED = 1310;
5343
5344 // FIELD: Current mode corresponding to a QS tile
5345 // CATEGORY: QUICK SETTINGS
5346 // OS: P
5347 FIELD_QS_MODE = 1311;
5348
Calin Juravle759fbda2018-02-20 19:52:30 +00005349
Jerry Zhang92306d82018-02-12 18:12:41 -08005350 // OPEN: Settings->Developer Options->Default USB
5351 // CATEGORY: SETTINGS
5352 // OS: P
5353 USB_DEFAULT = 1312;
5354
Jan Althaus31efdc32018-02-19 22:23:13 +01005355 // CATEGORY: The category for all actions related to TextClassifier generateLinks.
5356 // OS: P
5357 TEXT_CLASSIFIER_GENERATE_LINKS = 1313;
5358
5359 // FIELD: milliseconds spent generating links.
5360 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5361 // OS: P
5362 FIELD_LINKIFY_LATENCY = 1314;
5363
5364 // FIELD: length of the input text in characters.
5365 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5366 // OS: P
5367 FIELD_LINKIFY_TEXT_LENGTH = 1315;
5368
5369 // FIELD: number of links detected.
5370 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5371 // OS: P
5372 FIELD_LINKIFY_NUM_LINKS = 1316;
5373
5374 // FIELD: length of all links in characters.
5375 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5376 // OS: P
5377 FIELD_LINKIFY_LINK_LENGTH = 1317;
5378
5379 // FIELD: the type of entity the stats are for.
5380 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5381 // OS: P
5382 FIELD_LINKIFY_ENTITY_TYPE = 1318;
5383
5384 // FIELD: a random uid for a single call to generateLinks
5385 // CATEGORY: TEXT_CLASSIFIER_GENERATE_LINKS
5386 // OS: P
5387 FIELD_LINKIFY_CALL_ID = 1319;
5388
Calin Juravle759fbda2018-02-20 19:52:30 +00005389 // FIELD: The compiler filter used when when optimizing the package.
5390 // Logged together with app transition events.
5391 // OS: P
5392 PACKAGE_OPTIMIZATION_COMPILATION_FILTER = 1320;
5393
5394 // FIELD: The reason for optimizing the package.
5395 // Logged together with app transition events.
5396 // OS: P
5397 PACKAGE_OPTIMIZATION_COMPILATION_REASON = 1321;
5398
Emilian Peev6bf0a552018-02-10 02:15:49 +00005399 // FIELD: The camera API level used.
5400 // CATEGORY: CAMERA
5401 // OS: P
5402 FIELD_CAMERA_API_LEVEL = 1322;
5403
jackqdyulei73e6b342018-02-26 14:44:50 -08005404 // OPEN: Settings > Battery > Battery tip > Battery tip Dialog
5405 // CATEGORY: SETTINGS
5406 // OS: P
5407 FUELGAUGE_BATTERY_TIP_DIALOG = 1323;
5408
jackqdyuleibb60ea22018-02-26 17:18:12 -08005409 // OPEN: Settings > Battery > Battery tip
5410 // CATEGORY: SETTINGS
5411 // OS: P
5412 ACTION_BATTERY_TIP_SHOWN = 1324;
5413
Maggieb9d76322018-02-16 18:00:30 -08005414 // OPEN: Settings > Security & Location > Location > See all
5415 // CATEGORY: SETTINGS
5416 // OS: P
5417 RECENT_LOCATION_REQUESTS_ALL = 1325;
5418
Evan Laird404a85c2018-02-28 15:31:29 -05005419 // FIELD: The x-location of a swipe gesture, conveyed as percent of total width
5420 // CATEGORY: GLOBAL_SYSTEM_UI
5421 // OS: P
5422 FIELD_GESTURE_X_PERCENT = 1326;
5423
5424 // FIELD: The y-location of a swipe gesture, conveyed as percent of total width
5425 // CATEGORY: GLOBAL_SYSTEM_UI
5426 // OS: P
5427 FIELD_GESTURE_Y_PERCENT = 1327;
5428
5429 // ACTION: Expand the notification panel while unlocked
5430 // CATEGORY: GLOBAL_SYSTEM_UI
5431 // OS: P
5432 ACTION_PANEL_VIEW_EXPAND = 1328;
5433
Evan Laird404a85c2018-02-28 15:31:29 -05005434 // FIELD: Rotation of the device
5435 // CATEGORY: GLOBAL_SYSTEM_UI
5436 // OS: P
5437 FIELD_DEVICE_ROTATION = 1329;
5438
Leif Hendrik Wildenaffcc6f2018-03-01 11:46:32 -08005439 // OPEN: TV Settings > Inputs > Input Options
5440 // CATEGORY: SETTINGS
5441 // OS: P
5442 SETTINGS_TV_INPUT_OPTIONS_CATEGORY = 1330;
5443
5444 // OPEN: TV Settings > Network & Internet > Add known WIFI network
5445 // CATEGORY: SETTINGS
5446 // OS: P
5447 SETTINGS_TV_WIFI_ADD_KNOWN_CATEGORY = 1331;
5448
Julia Reynoldsbce6d982018-03-02 14:53:15 -05005449 // ACTION: DND Settings > What to block > full screen intents
5450 // SUBTYPE: false is allowed, true is blocked
5451 // CATEGORY: SETTINGS
5452 // OS: 6.0
5453 ACTION_ZEN_BLOCK_FULL_SCREEN_INTENTS = 1332;
5454
5455 // ACTION: DND Settings > What to block
5456 // SUBTYPE: false is allowed, true is blocked
5457 // OS: P
5458 ACTION_ZEN_BLOCK_LIGHT = 1333;
5459
5460 // ACTION: DND Settings > What to block
5461 // SUBTYPE: false is allowed, true is blocked
5462 // OS: P
5463 ACTION_ZEN_BLOCK_PEEK = 1334;
5464
5465 // ACTION: DND Settings > What to block
5466 // SUBTYPE: false is allowed, true is blocked
5467 // OS: P
5468 ACTION_ZEN_BLOCK_STATUS = 1335;
5469
5470 // ACTION: DND Settings > What to block
5471 // SUBTYPE: false is allowed, true is blocked
5472 // OS: P
5473 ACTION_ZEN_BLOCK_BADGE = 1336;
5474
5475 // ACTION: DND Settings > What to block
5476 // SUBTYPE: false is allowed, true is blocked
5477 // OS: P
5478 ACTION_ZEN_BLOCK_AMBIENT = 1337;
5479
5480 // ACTION: DND Settings > What to block
5481 // SUBTYPE: false is allowed, true is blocked
5482 // OS: P
5483 ACTION_ZEN_BLOCK_NOTIFICATION_LIST = 1338;
5484
5485 // OPEN: DND Settings > What to block
5486 // OS: P
5487 ZEN_WHAT_TO_BLOCK = 1339;
5488
Beverly8fe33ba2018-03-05 14:32:35 -05005489 // ACTION: DND Settings > Priority only allows > System toggle
5490 // SUBTYPE: 0 is off, 1 is on
5491 // CATEGORY: SETTINGS
5492 // OS: P
5493 ACTION_ZEN_ALLOW_SYSTEM = 1340;
5494
5495 // OPEN: Settings > Sounds > Do Not Disturb > Duration
5496 // CATEGORY: SETTINGS
5497 // OS: P
5498 NOTIFICATION_ZEN_MODE_DURATION_DIALOG = 1341;
5499
5500 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Time Option (ie: for one hour)
5501 // CATEGORY: SETTINGS
5502 // OS: P
5503 NOTIFICATION_ZEN_MODE_DURATION_TIME = 1342;
5504
5505 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Until you turn off
5506 // CATEGORY: SETTINGS
5507 // OS: P
5508 NOTIFICATION_ZEN_MODE_DURATION_FOREVER = 1343;
5509
5510 // OPEN: Settings > Sound & notification > Do Not Disturb > Duration -> Ask every time
5511 // CATEGORY: SETTINGS
5512 // OS: P
5513 NOTIFICATION_ZEN_MODE_DURATION_PROMPT = 1344;
5514
Julia Reynolds8dff1862018-03-06 14:20:40 -05005515 // Notification Guts, active app ops variant
5516 // OS: P
5517 APP_OPS_GUTS = 1345;
5518
5519 // ACTION: Notification Guts, active app ops variant > Settings button
5520 // OS: P
5521 ACTION_OPS_GUTS_SETTINGS = 1346;
5522
Lei Yu5674d2d2018-03-08 10:19:43 -08005523 // ACTION: Settings > Battery settings > Battery tip > App restriction tip
5524 // OS: P
5525 ACTION_APP_RESTRICTION_TIP = 1347;
5526
5527 // ACTION: Settings > Battery settings > Battery tip > High usage tip
5528 // OS: P
5529 ACTION_HIGH_USAGE_TIP = 1348;
5530
Lei Yue93e5602018-03-08 12:15:38 -08005531 // ACTION: Settings > Battery settings > Battery tip > Summary tip
5532 // OS: P
5533 ACTION_SUMMARY_TIP = 1349;
5534
5535 // ACTION: Settings > Battery settings > Battery tip > Smart battery tip
5536 // OS: P
5537 ACTION_SMART_BATTERY_TIP = 1350;
5538
5539 // ACTION: Settings > Battery settings > Battery tip > Early warning tip
5540 // OS: P
5541 ACTION_EARLY_WARNING_TIP = 1351;
5542
5543 // ACTION: Settings > Battery settings > Battery tip > Low battery tip
5544 // OS: P
5545 ACTION_LOW_BATTERY_TIP = 1352;
5546
5547 // ACTION: Settings > Battery settings > Battery tip > App restriction list shown
5548 // OS: P
5549 ACTION_APP_RESTRICTION_TIP_LIST = 1353;
5550
5551 // ACTION: Settings > Battery settings > Battery tip > High usage list shown
5552 // OS: P
5553 ACTION_HIGH_USAGE_TIP_LIST = 1354;
5554
Victor Chang76817b82018-03-09 17:22:52 +00005555 // OPEN: Settings > Date & time > Select time zone -> Region
5556 // CATEGORY: SETTINGS
5557 // OS: P
5558 SETTINGS_ZONE_PICKER_REGION = 1355;
5559
5560 // OPEN: Settings > Date & time > Select time zone -> Time Zone
5561 // CATEGORY: SETTINGS
5562 // OS: P
5563 SETTINGS_ZONE_PICKER_TIME_ZONE = 1356;
5564
5565 // OPEN: Settings > Date & time > Select time zone -> Select UTC Offset
5566 // CATEGORY: SETTINGS
5567 // OS: P
5568 SETTINGS_ZONE_PICKER_FIXED_OFFSET = 1357;
5569
Julia Reynolds72cab0e2018-03-13 10:58:43 -04005570 // Action: notification shade > manage notifications
5571 // OS: P
5572 ACTION_MANAGE_NOTIFICATIONS = 1358;
5573
Chris Wrenaa571c62018-03-14 12:16:04 -04005574 // This value should never appear in log outputs - it is reserved for
5575 // internal platform metrics use.
5576 RESERVED_FOR_LOGBUILDER_LATENCY_MILLIS = 1359;
5577
Julia Reynoldsb998c8e2018-03-16 09:09:45 -04005578 // OPEN: Settings > Gestures > Prevent Ringing
5579 // OS: P
5580 SETTINGS_PREVENT_RINGING = 1360;
5581
Lei Yue92285a2018-03-12 11:28:40 -07005582 // ACTION: Settings > Battery settings > Battery tip > Open app restriction page
5583 // CATEGORY: SETTINGS
5584 // OS: P
5585 ACTION_TIP_OPEN_APP_RESTRICTION_PAGE = 1361;
5586
5587 // ACTION: Settings > Battery settings > Battery tip > Restrict app
5588 // CATEGORY: SETTINGS
5589 // OS: P
5590 ACTION_TIP_RESTRICT_APP = 1362;
5591
5592 // ACTION: Settings > Battery settings > Battery tip > Unrestrict app
5593 // CATEGORY: SETTINGS
5594 // OS: P
5595 ACTION_TIP_UNRESTRICT_APP = 1363;
5596
5597 // ACTION: Settings > Battery settings > Battery tip > Open smart battery page
5598 // CATEGORY: SETTINGS
5599 // OS: P
5600 ACTION_TIP_OPEN_SMART_BATTERY = 1364;
5601
5602 // ACTION: Settings > Battery settings > Battery tip > Turn on battery saver
5603 // CATEGORY: SETTINGS
5604 // OS: P
5605 ACTION_TIP_TURN_ON_BATTERY_SAVER = 1365;
5606
5607 // FIELD: type of anomaly in settings app
5608 // CATEGORY: SETTINGS
5609 // OS: P
5610 FIELD_ANOMALY_TYPE = 1366;
5611
Lei Yu4f704772018-03-20 10:51:58 -07005612 // ACTION: Settings > Anomaly receiver > Anomaly received
5613 // CATEGORY: SETTINGS
5614 // OS: P
5615 ACTION_ANOMALY_TRIGGERED = 1367;
5616
Fan Zhanga85b4872018-03-26 16:52:53 -07005617 // ACTION: Settings > Condition > Device muted
5618 // CATEGORY: SETTINGS
5619 // OS: P
5620 SETTINGS_CONDITION_DEVICE_MUTED = 1368;
5621
5622 // ACTION: Settings > Condition > Device vibrate
5623 // CATEGORY: SETTINGS
5624 // OS: P
5625 SETTINGS_CONDITION_DEVICE_VIBRATE = 1369;
5626
hughchen226196b2018-03-27 12:04:59 +08005627 // OPEN: Settings > Connected devices > previously connected devices
5628 // CATEGORY: SETTINGS
5629 // OS: P
5630 PREVIOUSLY_CONNECTED_DEVICES = 1370;
Fan Zhanga85b4872018-03-26 16:52:53 -07005631
Fan Zhang5b4c2b12018-04-02 15:02:18 -07005632 // ACTION: A Settings Slice is requested
5633 // CATEGORY: SETTINGS
5634 // OS: P
5635 ACTION_SETTINGS_SLICE_REQUESTED = 1371;
5636
5637 // ACTION: A Settings Slice is updated with new value
5638 // CATEGORY: SETTINGS
5639 // OS: P
5640 ACTION_SETTINGS_SLICE_CHANGED = 1372;
5641
Salvador Martinezc29c8c02018-04-04 14:45:42 -07005642 // OPEN: Settings > Network & Internet > Wi-Fi > Wi-Fi Preferences > Turn on Wi-Fi automatically
5643 // note: Wifi Scanning must be off for this dialog to show
5644 // CATEGORY: SETTINGS
5645 // OS: P
5646 WIFI_SCANNING_NEEDED_DIALOG = 1373;
5647
Mehdi Alizadeh1264d882018-04-03 18:38:34 -07005648 // OPEN: Settings > System > Gestures > Swipe up gesture
5649 // CATEGORY: SETTINGS
5650 // OS: P
5651 SETTINGS_GESTURE_SWIPE_UP = 1374;
5652
Jeff Sharkey46270712018-04-02 09:53:21 -06005653 // OPEN: Settings > Storage > Dialog to format a storage volume
5654 // CATEGORY: SETTINGS
5655 // OS: P
5656 DIALOG_VOLUME_FORMAT = 1375;
5657
Julia Reynolds8aca3e02018-04-09 13:57:21 -04005658 // OPEN: DND onboarding activity > screen on checkbox
5659 // CATEGORY: SETTINGS
5660 // OS: P
5661 ACTION_ZEN_ONBOARDING_SCREEN_ON = 1376;
5662
5663 // OPEN: DND onboarding activity > screen off checkbox
5664 // CATEGORY: SETTINGS
5665 // OS: P
5666 ACTION_ZEN_ONBOARDING_SCREEN_OFF = 1377;
5667
5668 // OPEN: DND onboarding activity > Ok button
5669 // CATEGORY: SETTINGS
5670 // OS: P
5671 ACTION_ZEN_ONBOARDING_OK = 1378;
5672
5673 // OPEN: DND onboarding activity > Settings link
5674 // CATEGORY: SETTINGS
5675 // OS: P
5676 ACTION_ZEN_ONBOARDING_SETTINGS = 1379;
5677
5678 // OPEN: DND onboarding activity
5679 // CATEGORY: SETTINGS
5680 // OS: P
5681 SETTINGS_ZEN_ONBOARDING = 1380;
5682
Fan Zhangd2ed8212018-04-10 12:57:56 -07005683 // OPEN: Settings > Display > Auto brightness
5684 // CATEGORY: SETTINGS
5685 // OS: P
5686 SETTINGS_AUTO_BRIGHTNESS = 1381;
5687
Kenny Guy23991102018-04-05 21:18:38 +01005688 // OPEN: Smart replies in a notification seen at least once
5689 // CATEGORY: NOTIFICATION
5690 // PACKAGE: App that posted the notification
5691 // SUBTYPE: Number of smart replies.
5692 // OS: P
5693 SMART_REPLY_VISIBLE = 1382;
5694
5695 // ACTION: Smart reply in a notification clicked.
5696 // CATEGORY: NOTIFICATION
5697 // PACKAGE: App that posted the notification
5698 // SUBTYPE: Index of smart reply clicked.
5699 // OS: P
5700 SMART_REPLY_ACTION = 1383;
5701
5702 // Tagged data for SMART_REPLY_VISIBLE. Count of number of smart replies.
5703 // OS: P
5704 NOTIFICATION_SMART_REPLY_COUNT = 1384;
5705
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005706 // Volume dialog > ringer toggle
5707 // OS: P
5708 ACTION_VOLUME_RINGER_TOGGLE = 1385;
5709
5710 // Volume dialog > settings button
5711 // OS: P
5712 ACTION_VOLUME_SETTINGS = 1386;
5713
Lei Yufc59a572018-04-10 10:52:08 -07005714 // ACTION: Settings > Anomaly receiver > Anomaly ignored, don't show up in battery settings
5715 // CATEGORY: SETTINGS
5716 // OS: P
5717 ACTION_ANOMALY_IGNORED = 1387;
Julia Reynolds5ba8dda2018-04-10 16:07:57 -04005718
Lei Yu97a13212018-04-11 15:45:31 -07005719 // ACTION: Settings > Battery settings > Battery tip > Open battery saver page
5720 // CATEGORY: SETTINGS
5721 // OS: P
5722 ACTION_TIP_OPEN_BATTERY_SAVER_PAGE = 1388;
5723
5724 // FIELD: the version code of an app
5725 // CATEGORY: SETTINGS
5726 // OS: P
5727 FIELD_APP_VERSION_CODE = 1389;
5728
Salvador Martinez7a9564f2018-04-04 14:42:59 -07005729 // OPEN: Settings > Connected Devices > Bluetooth
5730 // CATEGORY: SETTINGS
5731 // OS: P
5732 BLUETOOTH_FRAGMENT = 1390;
5733
Mathew Inwoodac1c19a2018-04-12 12:17:57 +01005734 // Enclosing category for group of FIELD_HIDDEN_API_FOO events, logged when
5735 // an app uses a hidden API.
5736 ACTION_HIDDEN_API_ACCESSED = 1391;
5737
5738 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The metod of the hidden API
5739 // access; see enum HiddenApiAccessMethod
5740 // OS: P
5741 FIELD_HIDDEN_API_ACCESS_METHOD = 1392;
5742
5743 // Tagged data for ACTION_HIDDEN_API_ACCESSED. Indicates that access was
5744 // denied to the API.
5745 // OS: P
5746 FIELD_HIDDEN_API_ACCESS_DENIED = 1393;
5747
5748 // Tagged data for ACTION_HIDDEN_API_ACCESSED. The signature of the hidden
5749 // API that was accessed.
5750 // OS: P
5751 FIELD_HIDDEN_API_SIGNATURE = 1394;
5752
Dieter Hsud39f0d52018-04-14 02:08:30 +08005753 // This value should never appear in log outputs - it is reserved for
5754 // internal platform metrics use.
5755 NOTIFICATION_SHADE_COUNT = 1395;
5756
Julia Reynolds5da746a2018-04-23 09:41:21 -04005757 // ACTION: DND Settings > What to block
5758 // OS: P
5759 ACTION_ZEN_SOUND_ONLY = 1396;
5760
5761 // ACTION: DND Settings > Notifications
5762 // OS: P
5763 ACTION_ZEN_SOUND_AND_VIS_EFFECTS = 1397;
5764
5765 // ACTION: DND Settings > Notifications
5766 // OS: P
5767 ACTION_ZEN_SHOW_CUSTOM = 1398;
5768
5769 // ACTION: DND Settings > Notifications
5770 // OS: P
5771 ACTION_ZEN_CUSTOM = 1399;
5772
5773 // Screen: DND Settings > Notifications
5774 // OS: P
5775 SETTINGS_ZEN_NOTIFICATIONS = 1400;
5776
Chris Wrend63dffd2018-04-19 11:12:46 -04005777 // An event category for slices.
5778 // OPEN: Slice became visible.
5779 // CLOSE: Slice became invisible.
5780 // ACTION: Slice was tapped.
5781 SLICE = 1401;
5782
5783 // The authority part of the slice URI
5784 FIELD_SLICE_AUTHORITY = 1402;
5785
5786 // The path part of the slice URI
5787 FIELD_SLICE_PATH = 1403;
5788
5789 // The authority part of the subslice URI
5790 FIELD_SUBSLICE_AUTHORITY = 1404;
5791
5792 // The path part of the subslice URI
5793 FIELD_SUBSLICE_PATH = 1405;
5794
Julia Reynolds2e6c19c2018-05-01 09:04:21 -04005795 // OPEN: DND onboarding activity > don't update button
5796 // CATEGORY: SETTINGS
5797 // OS: P
5798 ACTION_ZEN_ONBOARDING_KEEP_CURRENT_SETTINGS = 1406;
5799
Jeff Sharkeyadfc9b62018-05-02 16:14:43 -06005800 // ACTION: Storage initialization wizard initialization choice of external/portable
5801 // CATEGORY: SETTINGS
5802 // OS: P
5803 ACTION_STORAGE_INIT_EXTERNAL = 1407;
5804
5805 // ACTION: Storage initialization wizard initialization choice of internal/adoptable
5806 // CATEGORY: SETTINGS
5807 // OS: P
5808 ACTION_STORAGE_INIT_INTERNAL = 1408;
5809
5810 // ACTION: Storage initialization wizard benchmark fast choice of continue
5811 // CATEGORY: SETTINGS
5812 // OS: P
5813 ACTION_STORAGE_BENCHMARK_FAST_CONTINUE = 1409;
5814
5815 // ACTION: Storage initialization wizard benchmark slow choice of continue
5816 // CATEGORY: SETTINGS
5817 // OS: P
5818 ACTION_STORAGE_BENCHMARK_SLOW_CONTINUE = 1410;
5819
5820 // ACTION: Storage initialization wizard benchmark slow choice of abort
5821 // CATEGORY: SETTINGS
5822 // OS: P
5823 ACTION_STORAGE_BENCHMARK_SLOW_ABORT = 1411;
5824
5825 // ACTION: Storage initialization wizard migration choice of now
5826 // CATEGORY: SETTINGS
5827 // OS: P
5828 ACTION_STORAGE_MIGRATE_NOW = 1412;
5829
5830 // ACTION: Storage initialization wizard migration choice of later
5831 // CATEGORY: SETTINGS
5832 // OS: P
5833 ACTION_STORAGE_MIGRATE_LATER = 1413;
5834
Felipe Leme11166522018-05-07 10:18:47 -07005835 // Tag used to report whether an activity is being autofilled on compatibility mode.
5836 FIELD_AUTOFILL_COMPAT_MODE = 1414;
5837
hughchen2bde4092018-05-10 18:04:25 +08005838 // OPEN: Settings > Sound > Switch a2dp devices dialog
timhypengbe1a3122018-05-04 15:28:42 +08005839 // CATEGORY: SETTINGS
5840 // OS: P
hughchen2bde4092018-05-10 18:04:25 +08005841 DIALOG_SWITCH_A2DP_DEVICES = 1415;
5842
5843 // OPEN: Settings > Sound > Switch hfp devices dialog
5844 // CATEGORY: SETTINGS
5845 // OS: P
5846 DIALOG_SWITCH_HFP_DEVICES = 1416;
timhypengbe1a3122018-05-04 15:28:42 +08005847
Beverlyc4eb9342018-05-10 15:46:03 -04005848 // ACTION: User has started or ended charging
5849 // Type TYPE_DISMISS: Charging has ended
5850 // Type TYPE_ACTION: Charging has started, contains fields: battery level
5851 // Tag FIELD_BATTERY_LEVEL_START: Battery level at the start
5852 // Tag FIELD_BATTERY_LEVEL_END: Battery level at the end
5853 // Tag FIELD_CHARGING_DURATION: Time in ms phone was charging
5854 // Tag FIELD_PLUG_TYPE: Charging plug type
5855 ACTION_CHARGE = 1417;
5856
5857 // Tag used to determine battery level when device started charging
5858 FIELD_BATTERY_LEVEL_START = 1418;
5859
5860 // Tag used to determine battery level when device ended charging
5861 FIELD_BATTERY_LEVEL_END = 1419;
5862
5863 // Tag used to determine length of charging
5864 FIELD_CHARGING_DURATION_MILLIS = 1420;
5865
5866 // Tag used to determine what type of charging was started/ended
5867 // 1 = Plugged AC
5868 // 2 = Plugged USB
5869 // 3 = Wireless
5870 FIELD_PLUG_TYPE = 1421;
5871
Andrew Chantecdc0dc2018-05-10 14:16:07 -07005872 // ACTION: USB-C Connector connected.
5873 // CATEGORY: OTHER
5874 // OS: P
5875 ACTION_USB_CONNECTOR_CONNECTED = 1422;
5876
5877 // ACTION: USB-C Connector disconnected.
5878 // CATEGORY: OTHER
5879 // OS: P
5880 // uses FIELD_DURATION_MILLIS for connected duration
5881 ACTION_USB_CONNECTOR_DISCONNECTED = 1423;
5882
5883 // ACTION: USB-C Audio device connected
5884 // CATEGORY: OTHER
5885 // OS: P
5886 ACTION_USB_AUDIO_CONNECTED = 1424;
5887
5888 // FIELD: VIDPID of connected USB Audio device
5889 // CATEGORY: OTHER
5890 // OS: P
5891 FIELD_USB_AUDIO_VIDPID = 1425;
5892
5893 // ACTION: USB-C Audio device disconnected
5894 // CATEGORY: OTHER
5895 // OS: P
5896 // use FIELD_DURATION_MILLIS for time
5897 ACTION_USB_AUDIO_DISCONNECTED = 1426;
5898
5899 // ACTION: Hardware failure event
5900 // CATEGORY: OTHER
5901 // OS: P
5902 ACTION_HARDWARE_FAILED = 1427;
5903
5904 // FIELD: Hardware failure category
5905 // CATEGORY: OTHER
5906 // OS: P
5907 // Uses enum HardwareType
5908 FIELD_HARDWARE_TYPE = 1428;
5909
5910 // FIELD: Hardware failure category
5911 // CATEGORY: OTHER
5912 // OS: P
5913 // Uses enum HardwareFailureCode
5914 FIELD_HARDWARE_FAILURE_CODE = 1429;
5915
5916 // ACTION: Physical drop event
5917 // CATEGORY: OTHER
5918 // OS: P
5919 // use FIELD_DURATION_MILLIS for time
5920 ACTION_PHYSICAL_DROP = 1430;
5921
5922 // FIELD: Confidence in detection of drop, in integer percentage.
5923 // CATEGORY: OTHER
5924 // OS: P
5925 FIELD_CONFIDENCE_PERCENT = 1431;
5926
5927 // FIELD: Detected bounce acceleration, in 1/1000th of a G.
5928 // CATEGORY: OTHER
5929 // OS: P
5930 FIELD_ACCEL_MILLI_G = 1432;
5931
5932 // ACTION: Battery health snapshot
5933 // CATEGORY: OTHER
5934 // OS: P
5935 // uses FIELD_END_BATTERY_PERCENT for batt %
5936 // uses FIELD_END_BATTERY_UA for instantaneous current load
5937 ACTION_BATTERY_HEALTH = 1433;
5938
5939 // FIELD: Battery health snapshot type - min daily voltage, resistance, etc.
5940 // CATEGORY: OTHER
5941 // OS: P
5942 FIELD_BATTERY_HEALTH_SNAPSHOT_TYPE = 1434;
5943
5944 // FIELD: Battery temperature at snapshop.
5945 // CATEGORY: OTHER
5946 // OS: P
5947 FIELD_BATTERY_TEMPERATURE = 1435;
5948
5949 // FIELD: Battery voltage at snapshot.
5950 // CATEGORY: OTHER
5951 // OS: P
5952 FIELD_BATTERY_VOLTAGE = 1436;
5953
5954 // FIELD: Battery open circuit voltage at snapshot.
5955 // CATEGORY: OTHER
5956 // OS: P
5957 FIELD_BATTERY_OPEN_CIRCUIT_VOLTAGE = 1437;
5958
5959 // ACTION: Battery charge cycles
5960 // Number of times the battery has charged beyond a
5961 // fractional threshold of full capacity.
5962 // CATEGORY: OTHER
5963 // OS: P
5964 ACTION_BATTERY_CHARGE_CYCLES = 1438;
5965
5966 // FIELD: Battery charge cycles
5967 // Number of times the battery has charged beyond a
5968 // fractional threshold of full capacity.
5969 // CATEGORY: OTHER
5970 // OS: P
5971 FIELD_BATTERY_CHARGE_CYCLES = 1439;
5972
Beverlybf16c142017-11-27 16:21:34 -05005973 // ---- End P Constants, all P constants go above this line ----
Adrian Roos159ef7b2016-02-25 11:58:32 -08005974 // Add new aosp constants above this line.
5975 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05005976 }
5977}