blob: d0358b6e8349acf4d6ea07c564ce6a86e92e008c [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 Althaus019389a2017-09-14 17:52:23 +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
Chris Wren77781d32016-01-11 14:49:26 -0500174 // Known visual elements: views or controls.
175 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500176 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500177 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500178
179 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500180 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500181
182 // OPEN: Settings > Accessibility
183 // CATEGORY: SETTINGS
184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500185 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500186
187 // OPEN: Settings > Accessibility > Captions
188 // CATEGORY: SETTINGS
189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500190 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500191
192 // OPEN: Settings > Accessibility > [Service]
193 // CATEGORY: SETTINGS
194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500195 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500196
197 // OPEN: Settings > Accessibility > Color correction
198 // CATEGORY: SETTINGS
199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500200 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500201
202 // OPEN: Settings > Accessibility > Accessibility shortcut
203 // CATEGORY: SETTINGS
204 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500205 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500206
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700207 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
208 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
209 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500210 // CATEGORY: SETTINGS
211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500212 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500213
214 // OPEN: Settings > Accounts
215 // CATEGORY: SETTINGS
216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500217 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500218
219 // OPEN: Settings > Accounts > [Single Account Sync Settings]
220 // CATEGORY: SETTINGS
221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500222 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > Accounts > Add an account
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > Accounts > [List of accounts when more than one]
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OPEN: Settings > Cellular network settings > APNs
235 // CATEGORY: SETTINGS
236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500237 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500238
239 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
240 // CATEGORY: SETTINGS
241 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500242 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500243
244 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500245 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500246
247 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500248 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500249
250 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500251 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500252
253 // OPEN: Settings > Apps > Configure apps > App links > [App]
254 // CATEGORY: SETTINGS
255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500256 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500259 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Internal storage > Apps storage > [App]
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Apps > [App info]
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Memory > App usage > [App Memory usage]
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500277 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Settings > Memory > App usage
280 // CATEGORY: SETTINGS
281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500282 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Bluetooth
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OPEN: Choose Bluetooth device (ex: when sharing)
290 // CATEGORY: SETTINGS
291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500292 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500295 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500296
297 // OPEN: Settings > Security > Choose screen lock
298 // CATEGORY: SETTINGS
299 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500300 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500301
302 // OPEN: Settings > Security > Choose screen lock > Choose your password
303 // CATEGORY: SETTINGS
304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500305 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500306
307 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
308 // CATEGORY: SETTINGS
309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500310 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500311
312 // OPEN: Settings > Security > Choose screen lock > Confirm your password
313 // CATEGORY: SETTINGS
314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500315 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500316
317 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
318 // CATEGORY: SETTINGS
319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500320 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500321
322 // OPEN: Settings > Security > Encrypt phone
323 // CATEGORY: SETTINGS
324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500325 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500326
327 // OPEN: Settings > Security > Encrypt phone > Confirm
328 // CATEGORY: SETTINGS
329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500330 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OPEN: Settings > Search results
333 // CATEGORY: SETTINGS
334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500335 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings (Root page)
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500343 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500344
345 // OPEN: Settings > Data usage
346 // CATEGORY: SETTINGS
347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500348 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500349
350 // OPEN: Settings > Date & time
351 // CATEGORY: SETTINGS
352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500353 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > Developer options
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > About phone
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Settings > About phone > Status > IMEI information
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OPEN: Settings > Internal storage
371 // CATEGORY: SETTINGS
372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500373 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OPEN: Settings > About phone > Status > SIM status
376 // CATEGORY: SETTINGS
377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500378 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500379
380 // OPEN: Settings > About phone > Status
381 // CATEGORY: SETTINGS
382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500383 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500384
385 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500386 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500387
388 // OPEN: Settings > Display
389 // CATEGORY: SETTINGS
390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500391 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500392
393 // OPEN: Settings > Display > Daydream
394 // CATEGORY: SETTINGS
395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500396 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500397
398 // OPEN: Settings > Security > Screen lock > Secure start-up
399 // CATEGORY: SETTINGS
400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500401 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500402
403 // OPEN: Settings > Security > Nexus Imprint
404 // CATEGORY: SETTINGS
405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500406 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500407
408 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500409 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500410
411 // OPEN: Settings > Battery > History details
412 // CATEGORY: SETTINGS
413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500414 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500415
416 // OPEN: Settings > Battery > Battery saver
417 // CATEGORY: SETTINGS
418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500419 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500420
421 // OPEN: Settings > Battery > [App Use details]
422 // CATEGORY: SETTINGS
423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500424 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500425
426 // OPEN: Settings > Battery
427 // CATEGORY: SETTINGS
428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500429 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OPEN: Settings > Home
432 // CATEGORY: SETTINGS
433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500434 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > Security > SIM card lock settings
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > Language & input
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Language & input > Physical keyboard
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 // OPEN: Settings > Language & input > Spell checker
452 // CATEGORY: SETTINGS
453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500454 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500457 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500458
459 // OPEN: Settings > Language & input > Personal dictionary
460 // CATEGORY: SETTINGS
461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500462 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500463
464 // OPEN: Settings > Language & input > Add word
465 // CATEGORY: SETTINGS
466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500467 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > Location
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OPEN: Settings > Location > Location mode
475 // CATEGORY: SETTINGS
476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500477 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500478
479 // OPEN: Settings > Apps
480 // CATEGORY: SETTINGS
481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500482 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500483
484 // OPEN: Settings > Backup & reset > Factory data reset
485 // CATEGORY: SETTINGS
486 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500487 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500488
489 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
490 // CATEGORY: SETTINGS
491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500492 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500493
494 // OPEN: Settings > Data usage > Network restrictions
495 // CATEGORY: SETTINGS
496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500497 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500498
499 // OPEN: Settings > More > Android Beam
500 // CATEGORY: SETTINGS
501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500502 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: Settings > Tap & pay
505 // CATEGORY: SETTINGS
506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500507 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500508
509 // OPEN: Settings > Sound & notification
510 // CATEGORY: SETTINGS
511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500512 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500513
514 // OPEN: Settings > Sound & notification > App notifications > [App]
515 // CATEGORY: SETTINGS
516 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500517 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500518
519 // OPEN: Settings > Sound & notification > Other sounds
520 // CATEGORY: SETTINGS
521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500522 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500523
524 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500525 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: Settings Widget > Notification log
528 // CATEGORY: SETTINGS
529 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500530 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500531
532 // OPEN: Settings > Sound & notification > Do not disturb
533 // CATEGORY: SETTINGS
534 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500535 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500538 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Print job notification > Print job settings
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OPEN: Settings > Printing > [Print Service]
546 // CATEGORY: SETTINGS
547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500548 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 // OPEN: Settings > Printing
551 // CATEGORY: SETTINGS
552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500553 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > Backup & reset
556 // CATEGORY: SETTINGS
557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500558 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500561 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > Backup & reset > Network settings reset
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
569 // CATEGORY: SETTINGS
570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500571 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OPEN: Settings > Developer Options > Running Services
574 // CATEGORY: SETTINGS
575 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500576 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500577
578 // OPEN: Settings > Security > Screen pinning
579 // CATEGORY: SETTINGS
580 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500581 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OPEN: Settings > Security
584 // CATEGORY: SETTINGS
585 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500586 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Settings > SIM cards
589 // CATEGORY: SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500594 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500595
596 // OPEN: Settings > More > Tethering & portable hotspot
597 // CATEGORY: SETTINGS
598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500599 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500600
601 // OPEN: Settings > Security > Trust agents
602 // CATEGORY: SETTINGS
603 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500604 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OPEN: Settings > Security > Trusted credentials
607 // CATEGORY: SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
612 // CATEGORY: SETTINGS
613 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500614 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Settings > Language & input > Text-to-speech output
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Security > Apps with usage access
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: Settings > Users
627 // CATEGORY: SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: Settings > Users > [Restricted profile app & content access]
632 // CATEGORY: SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: Settings > Users > [User settings]
637 // CATEGORY: SETTINGS
638 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500639 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500640
641 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500642 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: Settings > More > VPN
645 // CATEGORY: SETTINGS
646 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500647 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 // OPEN: Settings > Display > Choose wallpaper from
650 // CATEGORY: SETTINGS
651 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500652 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500653
654 // OPEN: Settings > Display > Cast
655 // CATEGORY: SETTINGS
656 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500657 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500658
659 // OPEN: Settings > Wi-Fi
660 // CATEGORY: SETTINGS
661 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500662 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500663
664 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
665 // CATEGORY: SETTINGS
666 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500667 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500668
669 // OPEN: Settings > More > Wi-Fi Calling
670 // CATEGORY: SETTINGS
671 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500672 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500673
674 // OPEN: Settings > Wi-Fi > Saved networks
675 // CATEGORY: SETTINGS
676 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500677 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500678
679 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500680 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500681
682 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500683 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
686 // CATEGORY: SETTINGS
687 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500688 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500689
690 // OPEN: Settings > More
691 // CATEGORY: SETTINGS
692 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500693 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500694
695 // OPEN: Quick Settings Panel
696 // CATEGORY: QUICK_SETTINGS
697 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500698 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500699
700 // OPEN: QS Airplane mode tile shown
701 // ACTION: QS Airplane mode tile tapped
702 // SUBTYPE: 0 is off, 1 is on
703 // CATEGORY: QUICK_SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // OPEN: QS Bluetooth tile shown
708 // ACTION: QS Bluetooth tile tapped
709 // SUBTYPE: 0 is off, 1 is on
710 // CATEGORY: QUICK_SETTINGS
711 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500712 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500713
714 // OPEN: QS Cast tile shown
715 // ACTION: QS Cast tile tapped
716 // CATEGORY: QUICK_SETTINGS
717 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500718 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500719
720 // OPEN: QS Cellular tile shown
721 // ACTION: QS Cellular tile tapped
722 // CATEGORY: QUICK_SETTINGS
723 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500724 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500725
726 // OPEN: QS Color inversion tile shown
727 // ACTION: QS Color inversion tile tapped
728 // SUBTYPE: 0 is off, 1 is on
729 // CATEGORY: QUICK_SETTINGS
730 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500731 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // OPEN: QS Cellular tile > Cellular detail panel
734 // CATEGORY: QUICK_SETTINGS
735 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500736 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500737
738 // OPEN: QS Do not disturb tile shown
739 // ACTION: QS Do not disturb tile tapped
740 // SUBTYPE: 0 is off, 1 is on
741 // CATEGORY: QUICK_SETTINGS
742 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500743 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500744
745 // OPEN: QS Flashlight tile shown
746 // ACTION: QS Flashlight tile tapped
747 // SUBTYPE: 0 is off, 1 is on
748 // CATEGORY: QUICK_SETTINGS
749 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500750 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500751
752 // OPEN: QS Hotspot tile shown
753 // ACTION: QS Hotspot tile tapped
754 // SUBTYPE: 0 is off, 1 is on
755 // CATEGORY: QUICK_SETTINGS
756 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500757 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500758
759 // OPEN: QS 3P tile shown
760 // ACTION: QS 3P tile tapped
761 // CATEGORY: QUICK_SETTINGS
762 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500763 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500764
765 // OPEN: QS Location tile shown
766 // ACTION: QS Location tile tapped
767 // SUBTYPE: 0 is off, 1 is on
768 // CATEGORY: QUICK_SETTINGS
769 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500770 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: QS Rotation tile shown
773 // ACTION: QS Rotation 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_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500780 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500781
782 // OPEN: QS User list panel
783 // CATEGORY: QUICK_SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // OPEN: QS WiFi tile shown
788 // ACTION: QS WiFi tile tapped
789 // SUBTYPE: 0 is off, 1 is on
790 // CATEGORY: QUICK_SETTINGS
791 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500792 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500793
794 // OPEN: Notification Panel (including lockscreen)
795 // CATEGORY: NOTIFICATION
796 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500797 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // OPEN: Notification in panel became visible.
800 // PACKAGE: App that posted the notification.
801 // ACTION: Notification is tapped.
802 // PACKAGE: App that posted the notification
803 // DETAIL: Notification is expanded by user.
804 // PACKAGE: App that posted the notification
805 // DISMISS: Notification is dismissed.
806 // PACKAGE: App that posted the notification
807 // SUBTYPE: Dismiss reason from NotificationManagerService.java
808 // CATEGORY: NOTIFICATION
809 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500810 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500811
812 // ACTION: User tapped notification action
813 // PACKAGE: App that posted the notification
814 // SUBTYPE: Index of action on notification
815 // CATEGORY: NOTIFICATION
816 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500817 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500818
819 // OPEN: Settings > Apps > Configure apps > App permissions
820 // CATEGORY: SETTINGS
821 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500822 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500823
824 // OPEN: Settings > Location > Scanning
825 // CATEGORY: SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500830 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500831
832 // OPEN: Settings > Sound & notification > App notifications
833 // CATEGORY: SETTINGS
834 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500835 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500836
837 // ACTION: Settings > Wi-Fi > Overflow > Add Network
838 // CATEGORY: SETTINGS
839 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500840 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500841
842 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700843 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500844 // CATEGORY: SETTINGS
845 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500846 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // ACTION: Settings > Wi-Fi > Overflow > Refresh
849 // CATEGORY: SETTINGS
850 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500851 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500852
853 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
854 // CATEGORY: SETTINGS
855 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500856 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500857
858 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700859 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500860 // CATEGORY: SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // ACTION: Settings > Wi-Fi > Toggle on
865 // CATEGORY: SETTINGS
866 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500867 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500870 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500871
872 // OPEN: Settings > Sound & notification > DND > Priority only allows
873 // CATEGORY: SETTINGS
874 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500875 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500876
877 // OPEN: Settings > Sound & notification > DND > Automatic rules
878 // CATEGORY: SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // OPEN: Settings > Apps > Configure apps > App links
883 // CATEGORY: SETTINGS
884 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500885 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500886
887 // OPEN: Settings > Sound & notification > DND > [Time based rule]
888 // CATEGORY: SETTINGS
889 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500890 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500891
892 // OPEN: Settings > Sound & notification > DND > [External rule]
893 // CATEGORY: SETTINGS
894 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500895 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500896
897 // OPEN: Settings > Sound & notification > DND > [Event rule]
898 // CATEGORY: SETTINGS
899 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500900 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500901
902 // ACTION: App notification settings > Block Notifications
903 // CATEGORY: SETTINGS
904 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500905 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500906
907 // ACTION: Notification shade > Dismiss all button
908 // CATEGORY: NOTIFICATION
909 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500910 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // OPEN: QS Do Not Disturb detail panel
913 // CATEGORY: QUICK_SETTINGS
914 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500915 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // OPEN: QS Bluetooth detail panel
918 // CATEGORY: QUICK_SETTINGS
919 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500920 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500921
922 // OPEN: QS Cast detail panel
923 // CATEGORY: QUICK_SETTINGS
924 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500925 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500926
927 // OPEN: QS Wi-Fi detail panel
928 // CATEGORY: QUICK_SETTINGS
929 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500930 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500931
932 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
933 // SUBTYPE: 0 is off, 1 is on
934 // CATEGORY: QUICK_SETTINGS
935 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500936 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500937
938 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
939 // SUBTYPE: 0 is off, 1 is on
940 // CATEGORY: QUICK_SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: QS Cellular detail panel > Cellular toggle
945 // SUBTYPE: 0 is off, 1 is on
946 // CATEGORY: QUICK_SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: QS User list panel > Select different user
951 // CATEGORY: QUICK_SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // ACTION: QS Cast detail panel > Select cast device
956 // CATEGORY: QUICK_SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // ACTION: QS Cast detail panel > Disconnect cast device
961 // CATEGORY: QUICK_SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // ACTION: Settings > Bluetooth > Toggle
966 // SUBTYPE: 0 is off, 1 is on
967 // CATEGORY: SETTINGS
968 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500969 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500970
971 // ACTION: Settings > Bluetooth > Overflow > Refresh
972 // CATEGORY: SETTINGS
973 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500974 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500975
976 // ACTION: Settings > Bluetooth > Overflow > Rename this device
977 // CATEGORY: SETTINGS
978 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500979 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500980
981 // ACTION: Settings > Bluetooth > Overflow > Show received files
982 // CATEGORY: SETTINGS
983 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500984 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500985
986 // ACTION: QS DND details panel > Increase / Decrease exit time
987 // SUBTYPE: true is increase, false is decrease
988 // CATEGORY: QUICK_SETTINGS
989 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500990 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // ACTION: QS DND details panel > [Exit condition]
993 // CATEGORY: QUICK_SETTINGS
994 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500995 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500996
997 // ACTION: QS DND details panel > [DND mode]
998 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
999 // CATEGORY: QUICK_SETTINGS
1000 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001001 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: QS DND detail panel > DND toggle
1004 // SUBTYPE: 0 is off, 1 is on
1005 // CATEGORY: QUICK_SETTINGS
1006 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001007 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001008
1009 // ACTION: DND Settings > Priority only allows > Reminder toggle
1010 // SUBTYPE: 0 is off, 1 is on
1011 // CATEGORY: SETTINGS
1012 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001013 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001014
1015 // ACTION: DND Settings > Priority only allows > Event toggle
1016 // SUBTYPE: 0 is off, 1 is on
1017 // CATEGORY: SETTINGS
1018 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001019 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001020
1021 // ACTION: DND Settings > Priority only allows > Messages
1022 // SUBTYPE: 0 is off, 1 is on
1023 // CATEGORY: SETTINGS
1024 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001025 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001026
1027 // ACTION: DND Settings > Priority only allows > Calls
1028 // SUBTYPE: 0 is off, 1 is on
1029 // CATEGORY: SETTINGS
1030 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001031 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001032
1033 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1034 // SUBTYPE: 0 is off, 1 is on
1035 // CATEGORY: SETTINGS
1036 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001037 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // ACTION: DND Settings > Automatic rules > Add rule
1040 // CATEGORY: SETTINGS
1041 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001042 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // ACTION: DND Settings > Automatic rules > Add rule > OK
1045 // CATEGORY: SETTINGS
1046 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001047 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001048
1049 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1050 // CATEGORY: SETTINGS
1051 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001052 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001053
1054 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1055 // CATEGORY: SETTINGS
1056 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001057 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001058
1059 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1060 // SUBTYPE: 0 is off, 1 is on
1061 // CATEGORY: SETTINGS
1062 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001063 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001064
1065 // ACTION: Settings > More > Airplane mode toggle
1066 // SUBTYPE: 0 is off, 1 is on
1067 // CATEGORY: SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // ACTION: Settings > Data usage > Cellular data toggle
1072 // SUBTYPE: 0 is off, 1 is on
1073 // CATEGORY: SETTINGS
1074 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001075 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001076
1077 // OPEN: Settings > Sound & notification > Notification access
1078 // CATEGORY: SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // OPEN: Settings > Sound & notification > Do Not Disturb access
1083 // CATEGORY: SETTINGS
1084 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001085 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // OPEN: Settings > Apps > Configure apps > Default Apps
1088 // CATEGORY: SETTINGS
1089 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001090 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001091
1092 // OPEN: Settings > Internal storage > Apps storage
1093 // CATEGORY: SETTINGS
1094 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001095 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // OPEN: Settings > Security > Usage access
1098 // CATEGORY: SETTINGS
1099 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001100 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001101
1102 // OPEN: Settings > Battery > Battery optimization
1103 // CATEGORY: SETTINGS
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001108 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001109
1110 // ACTION: Lockscreen > Unlock gesture
1111 // CATEGORY: GLOBAL_SYSTEM_UI
1112 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001113 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001114
1115 // ACTION: Lockscreen > Pull shade open
1116 // CATEGORY: GLOBAL_SYSTEM_UI
1117 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001118 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001119
1120 // ACTION: Lockscreen > Tap on lock, shows hint
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: Lockscreen > Camera
1126 // CATEGORY: GLOBAL_SYSTEM_UI
1127 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001128 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // ACTION: Lockscreen > Dialer
1131 // CATEGORY: GLOBAL_SYSTEM_UI
1132 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001133 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001134
1135 // ACTION: Lockscreen > Tap on lock, locks phone
1136 // CATEGORY: GLOBAL_SYSTEM_UI
1137 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001138 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001139
1140 // ACTION: Lockscreen > Tap on notification, false touch rejection
1141 // CATEGORY: GLOBAL_SYSTEM_UI
1142 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001143 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // ACTION: Lockscreen > Swipe down to open quick settings
1146 // CATEGORY: GLOBAL_SYSTEM_UI
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // ACTION: Swipe down to open quick settings when unlocked
1151 // CATEGORY: GLOBAL_SYSTEM_UI
1152 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001153 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001154
1155 // ACTION: Notification shade > Tap to open quick settings
1156 // CATEGORY: GLOBAL_SYSTEM_UI
1157 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001158 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // OPEN: Lockscreen
1161 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1162 // CATEGORY: GLOBAL_SYSTEM_UI
1163 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001164 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001165
1166 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1167 // CATEGORY: GLOBAL_SYSTEM_UI
1168 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001169 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001170
1171 // OPEN: Screen turned on
1172 // SUBTYPE: 2 is user action
1173 // CATEGORY: GLOBAL_SYSTEM_UI
1174 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001175 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // OPEN: Notification caused sound, vibration, and/or LED blink
1178 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1179 // CATEGORY: NOTIFICATION
1180 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001181 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // ACTION: Lockscreen > Emergency Call button
1184 // CATEGORY: GLOBAL_SYSTEM_UI
1185 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001186 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1189 // CATEGORY: SETTINGS
1190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001191 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // OPEN: Settings > Memory
1194 // CATEGORY: SETTINGS
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // ACTION: Settings > Display > When device is rotated
1199 // CATEGORY: SETTINGS
1200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001201 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001202
1203 // ACTION: Long press on notification to view controls
1204 // CATEGORY: NOTIFICATION
1205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001206 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // ACTION: Notificatoin controls > Info button
1209 // CATEGORY: NOTIFICATION
1210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001211 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // ACTION: Notification controls > Settings button
1214 // CATEGORY: NOTIFICATION
1215 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001216 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001217
1218 // OPEN: Volume Dialog (with hardware buttons)
1219 // CATEGORY: GLOBAL_SYSTEM_UI
1220 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001221 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001222
1223 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1224 // CATEGORY: GLOBAL_SYSTEM_UI
1225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001226 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001227
1228 // ACTION: Volume dialog > Adjust volume slider
1229 // SUBTYPE: volume level (0-7)
1230 // CATEGORY: GLOBAL_SYSTEM_UI
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Volume dialog > Select non-active stream
1235 // SUBTYPE: stream (defined in AudioSystem.java)
1236 // CATEGORY: GLOBAL_SYSTEM_UI
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Adjust volume with hardware key
1241 // SUBTYPE: volume level (0-7)
1242 // CATEGORY: GLOBAL_SYSTEM_UI
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Volume dialog > Mute a stream by tapping icon
1247 // SUBTYPE: mute is 1, audible is 2
1248 // CATEGORY: GLOBAL_SYSTEM_UI
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // ACTION: Volume dialog > Change ringer mode by tapping icon
1253 // SUBTYPE: 2 is audible, 3 is vibrate
1254 // CATEGORY: GLOBAL_SYSTEM_UI
1255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001256 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // ACTION: Chooser shown (share target, file open, etc.)
1259 // CATEGORY: GLOBAL_SYSTEM_UI
1260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001261 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001262
1263 // ACTION: Chooser > User taps an app target
1264 // SUBTYPE: Index of target
1265 // CATEGORY: GLOBAL_SYSTEM_UI
1266 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001267 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001268
1269 // ACTION: Chooser > User taps a service target
1270 // SUBTYPE: Index of target
1271 // CATEGORY: GLOBAL_SYSTEM_UI
1272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001273 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // ACTION: Chooser > User taps a standard target
1276 // SUBTYPE: Index of target
1277 // CATEGORY: GLOBAL_SYSTEM_UI
1278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001279 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001280
1281 // ACTION: QS Brightness Slider (with auto brightness disabled)
1282 // SUBTYPE: slider value
1283 // CATEGORY: QUICK_SETTINGS
1284 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001285 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001286
1287 // ACTION: QS Brightness Slider (with auto brightness enabled)
1288 // SUBTYPE: slider value
1289 // CATEGORY: QUICK_SETTINGS
1290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001291 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001292
1293 // OPEN: Settings > Display > Brightness Slider
1294 // CATEGORY: SETTINGS
1295 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001296 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001297
Christine Franks47175c32017-03-14 10:21:25 -07001298 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001299 // CATEGORY: SETTINGS
1300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001301 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // OPEN: Display has entered dream mode
1304 // CATEGORY: GLOBAL_SYSTEM_UI
1305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001306 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001307
1308 // OPEN: Display has entered ambient notification mode
1309 // CATEGORY: GLOBAL_SYSTEM_UI
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // OPEN: Overview
1314 // CATEGORY: GLOBAL_SYSTEM_UI
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // OPEN: Settings > About phone > Legal information
1319 // CATEGORY: SETTINGS
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // OPEN: Settings > Search > Perform search
1324 // CATEGORY: SETTINGS
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // OPEN: Settings > System UI Tuner
1329 // CATEGORY: SETTINGS
1330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001331 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001332
1333 // OPEN: Settings > System UI Tuner > Quick Settings
1334 // CATEGORY: SETTINGS
1335 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001336 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001337
1338 // OPEN: Settings > System UI Tuner > Demo mode
1339 // CATEGORY: SETTINGS
1340 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001341 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001342
1343 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1344 // PACKAGE: Tile
1345 // CATEGORY: SETTINGS
1346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001347 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001348
1349 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1350 // PACKAGE: Tile
1351 // CATEGORY: SETTINGS
1352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001353 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1356 // PACKAGE: Tile
1357 // CATEGORY: SETTINGS
1358 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001359 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1362 // PACKAGE: Icon
1363 // CATEGORY: SETTINGS
1364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001365 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1368 // PACKAGE: Icon
1369 // CATEGORY: SETTINGS
1370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001371 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1374 // SUBTYPE: false is disabled, true is enabled
1375 // CATEGORY: SETTINGS
1376 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001377 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001378
1379 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1380 // SUBTYPE: false is disabled, true is enabled
1381 // CATEGORY: SETTINGS
1382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001383 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1386 // SUBTYPE: 0 is disabled, 1 is enabled
1387 // CATEGORY: SETTINGS
1388 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001389 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // OPEN: Settings > Developer options > Inactive apps
1392 // CATEGORY: SETTINGS
1393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001394 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001395
1396 // ACTION: Long press home to bring up assistant
1397 // CATEGORY: GLOBAL_SYSTEM_UI
1398 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001399 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001400
1401 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1402 // CATEGORY: SETTINGS
1403 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001404 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001405
1406 // OPEN: Fingerprint Enroll > Find Sensor
1407 // CATEGORY: SETTINGS
1408 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001409 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001410
1411 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1412 // CATEGORY: SETTINGS
1413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001414 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001415
1416 // OPEN: Fingerprint Enroll introduction
1417 // CATEGORY: SETTINGS
1418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001419 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001420
1421 // OPEN: Fingerprint Enroll onboarding
1422 // CATEGORY: SETTINGS
1423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001424 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001425
1426 // OPEN: Fingerprint Enroll > Let's Start!
1427 // CATEGORY: SETTINGS
1428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001429 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001430
1431 // OPEN: Fingerprint Enroll SUW > Let's Start!
1432 // CATEGORY: SETTINGS
1433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001434 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001435
1436 // OPEN: Fingerprint Enroll SUW > Find Sensor
1437 // CATEGORY: SETTINGS
1438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001439 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001440
1441 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1442 // CATEGORY: SETTINGS
1443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001444 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001445
1446 // OPEN: Fingerprint Enroll SUW introduction
1447 // CATEGORY: SETTINGS
1448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001449 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001450
1451 // OPEN: Fingerprint Enroll SUW onboarding
1452 // CATEGORY: SETTINGS
1453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001454 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001455
1456 // ACTION: Add fingerprint > Enroll fingerprint
1457 // CATEGORY: SETTINGS
1458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001459 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001460
1461 // ACTION: Authenticate using fingerprint
1462 // CATEGORY: SETTINGS
1463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001464 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001465
1466 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1467 // CATEGORY: SETTINGS
1468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001469 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001470
1471 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1472 // CATEGORY: SETTINGS
1473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001474 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001475
1476 // ACTION: Double tap camera shortcut
1477 // CATEGORY: GLOBAL_SYSTEM_UI
1478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001479 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001480
1481 // ACTION: Double twist camera shortcut
1482 // CATEGORY: GLOBAL_SYSTEM_UI
1483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001484 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001485
1486 // OPEN: QS Work Mode tile shown
1487 // ACTION: QS Work Mode tile tapped
1488 // SUBTYPE: 0 is off, 1 is on
1489 // CATEGORY: QUICK_SETTINGS
1490 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001491 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // OPEN: Settings > Developer Options > Background Check
1494 // CATEGORY: SETTINGS
1495 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001496 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001497
1498 // OPEN: QS Lock tile shown
1499 // ACTION: QS Lock tile tapped
1500 // SUBTYPE: 0 is off, 1 is on
1501 // CATEGORY: QUICK_SETTINGS
1502 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001503 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // OPEN: QS User Tile shown
1506 // CATEGORY: QUICK_SETTINGS
1507 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001508 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // OPEN: QS Battery tile shown
1511 // CATEGORY: QUICK_SETTINGS
1512 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001513 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001514
1515 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1516 // CATEGORY: SETTINGS
1517 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001518 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001519
1520 // ACTION: Visual interruptions > No screen interuptions toggle
1521 // SUBTYPE: 0 is off, 1 is on
1522 // CATEGORY: SETTINGS
1523 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001524 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001525
1526 // ACTION: Visual interruptions > No notification light toggle
1527 // SUBTYPE: 0 is off, 1 is on
1528 // CATEGORY: SETTINGS
1529 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001530 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001531
1532 // OPEN: Settings > Notifications > [App] > Topic Notifications
1533 // CATEGORY: SETTINGS
1534 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001535 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001536
1537 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1538 // PACKAGE: Selected SMS app
1539 // CATEGORY: SETTINGS
1540 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001541 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001542
1543 // OPEN: QS Color modification tile shown
1544 // ACTION: QS Color modification tile tapped
1545 // SUBTYPE: 0 is off, 1 is on
1546 // CATEGORY: QUICK_SETTINGS
1547 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001548 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001549
1550 // OPEN: QS Custom tile shown
1551 // ACTION: QS Work Mode tile tapped
1552 // CATEGORY: QUICK_SETTINGS
1553 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001554 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001555
1556 // ACTION: Visual interruptions > Never turn off the screen toggle
1557 // SUBTYPE: 0 is off, 1 is on
1558 // CATEGORY: SETTINGS
1559 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001560 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001561
Chris Wren7c516842016-03-01 16:44:32 -05001562 // ACTION: Overview > Long-press task, drag to enter split-screen
1563 // CATEGORY: GLOBAL_SYSTEM_UI
1564 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001565 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1566
Chris Wren7c516842016-03-01 16:44:32 -05001567 // ACTION: In App > Long-press Overview button to enter split-screen
1568 // CATEGORY: GLOBAL_SYSTEM_UI
1569 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001570 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1571
Chris Wren7c516842016-03-01 16:44:32 -05001572 // ACTION: In App > Swipe Overview button to enter split-screen
1573 // CATEGORY: GLOBAL_SYSTEM_UI
1574 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001575 ACTION_WINDOW_DOCK_SWIPE = 272;
1576
Chris Wren7c516842016-03-01 16:44:32 -05001577 // ACTION: Launch profile-specific app > Confirm credentials
1578 // CATEGORY: GLOBAL_SYSTEM_UI
1579 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001580 PROFILE_CHALLENGE = 273;
1581
Chris Wren7c516842016-03-01 16:44:32 -05001582 // OPEN: QS Battery detail panel
1583 // CATEGORY: GLOBAL_SYSTEM_UI
1584 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001585 QS_BATTERY_DETAIL = 274;
1586
Chris Wren7c516842016-03-01 16:44:32 -05001587 // OPEN: Overview > History
1588 // CATEGORY: GLOBAL_SYSTEM_UI
1589 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001590 OVERVIEW_HISTORY = 275;
1591
Chris Wren7c516842016-03-01 16:44:32 -05001592 // ACTION: Overview > Page by tapping Overview button
1593 // CATEGORY: GLOBAL_SYSTEM_UI
1594 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001595 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001596
Chris Wren7c516842016-03-01 16:44:32 -05001597 // ACTION: Overview > Select app
1598 // CATEGORY: GLOBAL_SYSTEM_UI
1599 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001600 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001601
Chris Wren7c516842016-03-01 16:44:32 -05001602 // ACTION: View emergency info
1603 // CATEGORY: GLOBAL_SYSTEM_UI
1604 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001605 ACTION_VIEW_EMERGENCY_INFO = 278;
1606
Chris Wren7c516842016-03-01 16:44:32 -05001607 // ACTION: Edit emergency info activity
1608 // CATEGORY: SETTINGS
1609 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001610 ACTION_EDIT_EMERGENCY_INFO = 279;
1611
Chris Wren7c516842016-03-01 16:44:32 -05001612 // ACTION: Edit emergency info field
1613 // CATEGORY: SETTINGS
1614 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001615 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1616
Chris Wren7c516842016-03-01 16:44:32 -05001617 // ACTION: Add emergency contact
1618 // CATEGORY: SETTINGS
1619 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001620 ACTION_ADD_EMERGENCY_CONTACT = 281;
1621
Chris Wren7c516842016-03-01 16:44:32 -05001622 // ACTION: Delete emergency contact
1623 // CATEGORY: SETTINGS
1624 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001625 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1626
Chris Wren7c516842016-03-01 16:44:32 -05001627 // ACTION: Call emergency contact
1628 // CATEGORY: SETTINGS
1629 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001630 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001631
Chris Wren7c516842016-03-01 16:44:32 -05001632 // OPEN: QS Data Saver tile shown
1633 // ACTION: QS Data Saver tile tapped
1634 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001635 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001636
Robin Lee8c1306e2016-02-01 11:37:02 +00001637 // OPEN: Settings > Security > User credentials
1638 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001639 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001640 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001641
Chris Wren7c516842016-03-01 16:44:32 -05001642 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1643 // CATEGORY: GLOBAL_SYSTEM_UI
1644 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001645 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001646
1647 // Logged when the user scrolls through overview manually
1648 OVERVIEW_SCROLL = 287;
1649
1650 // Logged when the overview times out automatically selecting an app
1651 OVERVIEW_SELECT_TIMEOUT = 288;
1652
1653 // Logged when a user dismisses a task in overview
1654 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001655
1656 // Logged when the user modifying the notification importance slider.
1657 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1658
1659 // Logged when the user saves a modification to notification importance. Negative numbers
1660 // indicate the user lowered the importance; positive means they increased it.
1661 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001662
Chris Wren7c516842016-03-01 16:44:32 -05001663 // ACTION: Long-press power button, then tap "Take bug report" option.
1664 // CATEGORY: GLOBAL_SYSTEM_UI
1665 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001666 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1667
Chris Wren7c516842016-03-01 16:44:32 -05001668 // ACTION: Long-press power button, then long-press "Take bug report" option.
1669 // CATEGORY: GLOBAL_SYSTEM_UI
1670 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001671 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1672
Chris Wren7c516842016-03-01 16:44:32 -05001673 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1674 // CATEGORY: SETTINGS
1675 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001676 // Interactive bug report initiated from Settings.
1677 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1678
Chris Wren7c516842016-03-01 16:44:32 -05001679 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1680 // CATEGORY: SETTINGS
1681 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001682 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001683 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1684
Chris Wren7c516842016-03-01 16:44:32 -05001685 // ACTION: User tapped notification action to cancel a bug report
1686 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001687 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001688 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1689
Chris Wren7c516842016-03-01 16:44:32 -05001690 // ACTION: User tapped notification action to launch bug report details screen
1691 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001692 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001693 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1694
Chris Wren7c516842016-03-01 16:44:32 -05001695 // ACTION: User tapped notification action to take adition screenshot on bug report
1696 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001697 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001698 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1699
Chris Wren7c516842016-03-01 16:44:32 -05001700 // ACTION: User tapped notification to share bug report
1701 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001702 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001703 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1704
Chris Wren7c516842016-03-01 16:44:32 -05001705 // ACTION: User changed bug report name using the details screen
1706 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001707 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001708 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1709
Chris Wren7c516842016-03-01 16:44:32 -05001710 // ACTION: User changed bug report title using the details screen
1711 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001712 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001713 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1714
Chris Wren7c516842016-03-01 16:44:32 -05001715 // ACTION: User changed bug report description using the details screen
1716 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001717 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001718 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1719
Chris Wren7c516842016-03-01 16:44:32 -05001720 // ACTION: User tapped Save in the bug report details screen.
1721 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001722 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001723 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1724
Chris Wren7c516842016-03-01 16:44:32 -05001725 // ACTION: User tapped Cancel in the bug report details screen.
1726 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001727 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001728 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001729
1730 // Tuner: Open/close calibrate dialog.
1731 TUNER_CALIBRATE_DISPLAY = 305;
1732
1733 // Tuner: Open/close color and appearance.
1734 TUNER_COLOR_AND_APPEARANCE = 306;
1735
1736 // Tuner: Apply calibrate dialog.
1737 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1738
1739 // Tuner: Open/close night mode.
1740 TUNER_NIGHT_MODE = 308;
1741
1742 // Tuner: Change night mode.
1743 ACTION_TUNER_NIGHT_MODE = 309;
1744
1745 // Tuner: Change night mode auto.
1746 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1747
1748 // Tuner: Change night mode adjust dark theme.
1749 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1750
1751 // Tuner: Change night mode adjust tint.
1752 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1753
1754 // Tuner: Change night mode adjust brightness.
1755 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1756
1757 // Tuner: Change do not disturb in volume panel.
1758 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1759
1760 // Tuner: Change do not disturb volume buttons shortcut.
1761 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001762
1763 // Logs the action the user takes when an app crashed.
1764 ACTION_APP_CRASH = 316;
1765
1766 // Logs the action the user takes when an app ANR'd.
1767 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001768
1769 // Logged when a user double taps the overview button to launch the previous task
1770 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001771
1772 // Logged when we execute an app transition. This indicates the total delay from startActivity
1773 // until the app transition is starting to animate, in milliseconds.
1774 APP_TRANSITION_DELAY_MS = 319;
1775
1776 // Logged when we execute an app transition. This indicates the reason why the transition
1777 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1778 APP_TRANSITION_REASON = 320;
1779
1780 // Logged when we execute an app transition and we drew a starting window. This indicates the
1781 // delay from startActivity until the starting window was drawn.
1782 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1783
1784 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1785 // the delay from startActivity until all windows have been drawn.
1786 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1787
1788 // Logged when we execute an app transition. This indicates the component name of the current
1789 // transition.
1790 APP_TRANSITION_COMPONENT_NAME = 323;
1791
1792 // Logged when we execute an app transition. This indicates whether the process was already
1793 // running.
1794 APP_TRANSITION_PROCESS_RUNNING = 324;
1795
1796 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1797 // the transition was executed.
1798 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001799
Chris Wren38f98812016-07-13 14:28:40 -04001800 // ACTION: app requested access to a scoped directory, user granted it.
1801 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1802 // CATEGORY: GLOBAL_SYSTEM_UI
1803 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001804 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1805
Chris Wren38f98812016-07-13 14:28:40 -04001806 // ACTION: app requested access to a scoped directory, user denied it.
1807 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1808 // CATEGORY: GLOBAL_SYSTEM_UI
1809 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001810 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1811
Chris Wren38f98812016-07-13 14:28:40 -04001812 // ACTION: app requested access to a scoped directory, user granted it.
1813 // PACKAGE: app that requested access
1814 // CATEGORY: GLOBAL_SYSTEM_UI
1815 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001816 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1817
Chris Wren38f98812016-07-13 14:28:40 -04001818 // ACTION: app requested access to a scoped directory, user denied it.
1819 // PACKAGE: app that requested access.
1820 // CATEGORY: GLOBAL_SYSTEM_UI
1821 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001822 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1823
Chris Wren38f98812016-07-13 14:28:40 -04001824 // ACTION: app requested access to a directory user has already been granted
1825 // access before.
1826 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1827 // CATEGORY: GLOBAL_SYSTEM_UI
1828 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001829 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1830
Chris Wren38f98812016-07-13 14:28:40 -04001831 // ACTION: app requested access to a directory user has already been granted
1832 // access before.
1833 // PACKAGE: app that requested access.
1834 // CATEGORY: GLOBAL_SYSTEM_UI
1835 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001836 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001837
Chris Wren38f98812016-07-13 14:28:40 -04001838 // ACTION: Logged when the user slides a notification and reveals the gear
1839 // beneath it.
1840 // CATEGORY: NOTIFICATION
1841 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001842 ACTION_REVEAL_GEAR = 332;
1843
Chris Wren38f98812016-07-13 14:28:40 -04001844 // ACTION: Logged when the user taps on the gear beneath a notification.
1845 // CATEGORY: NOTIFICATION
1846 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001847 ACTION_TOUCH_GEAR = 333;
1848
Ruben Brunke24b9a62016-02-16 21:38:24 -08001849 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001850 // CATEGORY: SETTINGS
1851 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001852 VR_MANAGE_LISTENERS = 334;
1853
Jason Monk6f5354d2016-03-08 14:18:08 -05001854 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001855 // CATEGORY: SETTINGS
1856 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001857 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001858
Jason Monk6f5354d2016-03-08 14:18:08 -05001859 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001860 // CATEGORY: SETTINGS
1861 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001862 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001863
Jason Monk6f5354d2016-03-08 14:18:08 -05001864 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001865 // CATEGORY: SETTINGS
1866 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001867 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001868
Jason Monk6f5354d2016-03-08 14:18:08 -05001869 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001870 // CATEGORY: SETTINGS
1871 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001872 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001873
Jason Monk6f5354d2016-03-08 14:18:08 -05001874 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001875 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001876 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001877
Jason Monk6f5354d2016-03-08 14:18:08 -05001878 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001879 // CATEGORY: SETTINGS
1880 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001881 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001882
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001884 // CATEGORY: SETTINGS
1885 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001886 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001887
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001889 // CATEGORY: SETTINGS
1890 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001891 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001892
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001894 // CATEGORY: SETTINGS
1895 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001896 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001897
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001899 // CATEGORY: SETTINGS
1900 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001902
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001904 // CATEGORY: SETTINGS
1905 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001906 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001907
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001909 // CATEGORY: SETTINGS
1910 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001911 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001912
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001914 // CATEGORY: SETTINGS
1915 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001916 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001917
Jason Monk6f5354d2016-03-08 14:18:08 -05001918 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001919 // CATEGORY: SETTINGS
1920 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001921 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001922
Jason Monk6f5354d2016-03-08 14:18:08 -05001923 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001924 // CATEGORY: SETTINGS
1925 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001926 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1927
1928 // Used for generic logging of Settings Preference Persistence, should not be used
1929 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001930 // CATEGORY: SETTINGS
1931 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001932 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001933
Jason Monk6f5354d2016-03-08 14:18:08 -05001934 // Settings -> Apps -> Gear -> Special access
1935 SPECIAL_ACCESS = 351;
1936
Muyuan Lia2129992016-03-03 18:30:39 -08001937 // Logs that the user docks window via shortcut key.
1938 WINDOW_DOCK_SHORTCUTS = 352;
1939
Felipe Lemeadccb992016-03-09 17:40:49 -08001940 // User already denied access to the request folder; action takes an integer
1941 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001942 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001943 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1944
1945 // User already denied access to the request folder; action pass package name
1946 // of calling package.
1947 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1948
1949 // User denied access to the request folder and checked 'Do not ask again';
1950 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001951 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001952 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1953
1954 // User denied access to the request folder and checked 'Do not ask again';
1955 // action pass package name of calling package.
1956 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1957
Winson3b6ba1a2016-03-22 15:37:54 -07001958 // Logged when a user dismisses all task in overview
1959 OVERVIEW_DISMISS_ALL = 357;
1960
Jason Monk96defbe2016-03-29 16:51:03 -04001961 // Quick Settings -> Edit
1962 QS_EDIT = 358;
1963
1964 // Quick Settings -> Edit -> Overflow -> Reset
1965 ACTION_QS_EDIT_RESET = 359;
1966
1967 // QS -> Edit - Drag a tile out of the active tiles.
1968 // The _SPEC contains either the spec of the tile or
1969 // the package of the 3rd party app in the PKG field.
1970 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1971 ACTION_QS_EDIT_REMOVE = 361;
1972
1973 // QS -> Edit - Drag a tile into the active tiles.
1974 // The _SPEC contains either the spec of the tile or
1975 // the package of the 3rd party app in the PKG field.
1976 ACTION_QS_EDIT_ADD_SPEC = 362;
1977 ACTION_QS_EDIT_ADD = 363;
1978
1979 // QS -> Edit - Drag a tile within the active tiles.
1980 // The _SPEC contains either the spec of the tile or
1981 // the package of the 3rd party app in the PKG field.
1982 ACTION_QS_EDIT_MOVE_SPEC = 364;
1983 ACTION_QS_EDIT_MOVE = 365;
1984
1985 // Long-press on a QS tile. Tile spec in package field.
1986 ACTION_QS_LONG_PRESS = 366;
1987
Anna Galuszadad131f2016-03-22 13:49:02 -07001988 // OPEN: SUW Welcome Screen -> Vision Settings
1989 // CATEGORY: SETTINGS
1990 // OS: N
1991 SUW_ACCESSIBILITY = 367;
1992
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001993 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1994 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1995 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001996 // ACTION: New magnification gesture configuration is chosen
1997 // SUBTYPE: 0 is off, 1 is on
1998 // CATEGORY: SETTINGS
1999 // OS: N
2000 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2001
2002 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2003 // ACTION: New font size is chosen
2004 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2005 // CATEGORY: SETTINGS
2006 // OS: N
2007 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2008
2009 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2010 // ACTION: New display size is chosen
2011 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2012 // CATEGORY: SETTINGS
2013 // OS: N
2014 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2015
2016 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2017 // ACTION: New screen reader configuration is chosen
2018 // SUBTYPE: 0 is off, 1 is on
2019 // CATEGORY: SETTINGS
2020 // OS: N
2021 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2022
Jason Monkc3620392016-03-30 15:46:03 -04002023 // ------- Begin N Settings conditionals -----
2024 // Conditionals are the green bars at the top of the settings dashboard
2025 // All conditionals will have visible/hide events onResume/onPause
2026 // but they will also be used as extra ints in the
2027 // dismiss/expand/collapse/click/button events
2028
2029 // swipe away conditional
2030 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2031
2032 // click on collapsed conditional or clicks expand button
2033 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2034
2035 // click collapse button on expanded conditional
2036 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2037
2038 // click main area of expanded conditional
2039 ACTION_SETTINGS_CONDITION_CLICK = 375;
2040
2041 // click a direct button on expanded conditional
2042 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2043
2044 // Airplane mode on
2045 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2046 // AKA Data saver on
2047 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2048 // Battery saver on
2049 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2050 // Cellular data off
2051 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2052 // Do not disturb on
2053 SETTINGS_CONDITION_DND = 381;
2054 // Hotspot on
2055 SETTINGS_CONDITION_HOTSPOT = 382;
2056 // Work profile off
2057 SETTINGS_CONDITION_WORK_MODE = 383;
2058
Jason Monk1b5d87b2016-03-30 16:03:15 -04002059 // ------- Begin N Settings suggestions -----
2060 // Since suggestions come from system apps, suggestions will
2061 // have generic constants and the package providing the suggestion
2062 // will be put in the package field. For suggestions in the Settings
2063 // package, the class name will be filled in instead (since settings
2064 // provides several suggetions).
2065
2066 // Settings shown/hidden on main settings dashboard.
2067 // These are actually visibility events, but visible/hidden doesn't
2068 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002069 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2070 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002071
2072 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002073 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002074
2075 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002076 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002077
Jason Monk397df682016-03-28 15:48:34 -04002078 // Settings > Apps > Gear > Special Access > Premium SMS access
2079 PREMIUM_SMS_ACCESS = 388;
2080
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002081 // Logged when the user resizes the docked stack. Arguments:
2082 // 0: Split 50:50
2083 // 1: Docked smaller
2084 // 2: Docked larger
2085 ACTION_WINDOW_DOCK_RESIZE = 389;
2086
2087 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2088 // 0: Docked gets maximized
2089 // 1: Fullscreen gets maximized
2090 ACTION_WINDOW_UNDOCK_MAX = 390;
2091
2092 // User tried to dock an unresizable app.
2093 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2094
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002095 // System UI Tuner > Other > Power notification controls
2096 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2097
2098 // System UI Tuner > Other > Power notification controls > Toggle on/off
2099 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2100
Chris Wren38f98812016-07-13 14:28:40 -04002101 // Action: user enable / disabled data saver using Settings
2102 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2103 // VALUE: 1 for enabled, 0 for disabled
2104 // CATEGORY: SETTINGS
2105 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002106 ACTION_DATA_SAVER_MODE = 394;
2107
Chris Wren38f98812016-07-13 14:28:40 -04002108 // User whitelisted an app for Data Saver mode; action pass package name of app
2109 // Action: user enable / disabled data saver using Settings
2110 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2111 // or
2112 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2113 // VALUE: package name of APP
2114 // CATEGORY: SETTINGS
2115 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002116 ACTION_DATA_SAVER_WHITELIST = 395;
2117
Chris Wren38f98812016-07-13 14:28:40 -04002118 // User blacklisted an app for Data Saver mode; action pass package name of app
2119 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2120 // VALUE: package name of APP
2121 // CATEGORY: SETTINGS
2122 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002123 ACTION_DATA_SAVER_BLACKLIST = 396;
2124
Adrian Roosceeb04c2016-04-25 14:00:54 -07002125 // User opened a remote input view associated with a notification. Passes package name of app
2126 // that posted the notification. Note that this can also happen transiently during notification
2127 // reinflation.
2128 ACTION_REMOTE_INPUT_OPEN = 397;
2129
2130 // User attempt to send data through a remote input view associated with a notification.
2131 // Passes package name of app that posted the notification. May succeed or fail.
2132 ACTION_REMOTE_INPUT_SEND = 398;
2133
2134 // Failed attempt to send data through a remote input view associated with a
2135 // notification. Passes package name of app that posted the notification.
2136 ACTION_REMOTE_INPUT_FAIL = 399;
2137
2138 // User closed a remote input view associated with a notification. Passes package name of app
2139 // that posted the notification. Note that this can also happen transiently during notification
2140 // reinflation.
2141 ACTION_REMOTE_INPUT_CLOSE = 400;
2142
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002143 // OPEN: Settings > Accounts > Work profile settings
2144 // CATEGORY: SETTINGS
2145 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2146
Jason Monk25118d12016-05-10 13:25:50 -04002147 // Settings -> Dev options -> Convert to file encryption
2148 CONVERT_FBE = 402;
2149
2150 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2151 CONVERT_FBE_CONFIRM = 403;
2152
2153 // Settings -> Dev options -> Running services
2154 RUNNING_SERVICES = 404;
2155
Jason Monka1f697f2016-05-06 15:09:44 -04002156 // The dialog shown by 3P intent to change current webview implementation.
2157 WEBVIEW_IMPLEMENTATION = 405;
2158
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002159 // Settings launched from expanded quick settings.
2160 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2161
Chris Wren698b1702016-05-23 11:16:32 -04002162 // Notification expansion state toggled by the expand affordance.
2163 ACTION_NOTIFICATION_EXPANDER = 407;
2164
2165 // Notification group expansion state toggled by the expand affordance.
2166 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2167
Chris Wren7ee84182016-05-27 13:34:02 -04002168
Chris Wren6abeeb92016-05-26 14:44:38 -04002169 // Notification expansion state toggled by the expand gesture.
2170 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2171
2172 // Notification group expansion state toggled by the expand gesture.
2173 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2174
Bhavik Singh3451da42016-06-01 18:25:59 -07002175 // User performs gesture that activates the ambient display
2176 // 1: Gesture performed is Nudge
2177 // 2: Gesture performed is Pickup
2178 // 4: Gesture performed is Double Tap
2179 ACTION_AMBIENT_GESTURE = 411;
2180
Jason Monk9fa5f822016-05-11 10:26:31 -04002181 // ---- End N Constants, all N constants go above this line ----
2182
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002183 // ------- Begin N App Disambig Shade -----
2184 // Application disambig shade opened or closed with a featured app.
2185 // These are actually visibility events, but visible/hidden doesn't
2186 // take a package, so these are being logged as actions.
2187 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002188 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2189 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002190
2191 // Application disambig shade opened or closed without a featured app.
2192 // These are actually visibility events, but visible/hidden doesn't
2193 // take a package, so these are being logged as actions.
2194 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002195 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2196 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002197
2198 // User opens in an app by pressing “Always” in the application disambig shade.
2199 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002200 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002201
2202 // User opens in an app by pressing “Just Once” in the application disambig shade.
2203 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002204 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002205
2206 // User opens in an app by tapping on its name in the application disambig shade.
2207 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002208 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002209
Daniel Nishi010aa492016-05-11 09:42:24 -07002210 // OPEN: Settings > Internal storage > Storage manager
2211 // CATEGORY: SETTINGS
2212 STORAGE_MANAGER_SETTINGS = 458;
2213
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002214 // OPEN: Settings -> Gestures
2215 // CATEGORY: SETTINGS
2216 SETTINGS_GESTURES = 459;
2217
Daniel Nishi597e67f2016-05-18 13:56:13 -07002218 // ------ Begin Deletion Helper ------
2219 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2220 // SUBTYPE: false is off, true is on
2221 // CATEGORY: SETTINGS
2222 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002223
Daniel Nishi597e67f2016-05-18 13:56:13 -07002224 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2225 // SUBTYPE: false is off, true is on
2226 // CATEGORY: SETTINGS
2227 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2228
2229 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2230 // CATEGORY: SETTINGS
2231 // PACKAGE: Unchecked app
2232 ACTION_DELETION_SELECTION_APP_ON = 462;
2233
2234 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2235 // CATEGORY: SETTINGS
2236 // PACKAGE: Checked app
2237 ACTION_DELETION_SELECTION_APP_OFF = 463;
2238
2239 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2240 // SUBTYPE: false is expanded, true is collapsed
2241 // CATEGORY: SETTINGS
2242 ACTION_DELETION_APPS_COLLAPSED = 464;
2243
2244 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2245 // SUBTYPE: false is off, true is on
2246 // CATEGORY: SETTINGS
2247 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2248
2249 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2250 // SUBTYPE: false is expanded, true is collapsed
2251 // CATEGORY: SETTINGS
2252 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2253
2254 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2255 // CATEGORY: SETTINGS
2256 ACTION_DELETION_HELPER_CLEAR = 467;
2257
2258 // ACTION: Settings > Storage > Free Up Space > Cancel
2259 // CATEGORY: SETTINGS
2260 ACTION_DELETION_HELPER_CANCEL = 468;
2261
2262 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2263 // CATEGORY: SETTINGS
2264 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2265
2266 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2267 // CATEGORY: SETTINGS
2268 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2269
2270 // Deletion helper encountered an error during package deletion.
2271 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2272
2273 // Deletion helper encountered an error during downloads folder deletion.
2274 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2275
2276 // Deletion helper encountered an error during photo and video deletion.
2277 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2278
Fan Zhang5e956e82016-05-06 10:51:47 -07002279 // OPEN: Settings (root page if there are multiple tabs)
2280 // CATEGORY: SETTINGS
2281 DASHBOARD_CONTAINER = 474;
2282
2283 // OPEN: Settings -> SUPPORT TAB
2284 // CATEGORY: SETTINGS
2285 SUPPORT_FRAGMENT = 475;
2286
2287 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002288 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002289 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002290
2291 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002292 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002293 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2294
Fan Zhanga1985502016-06-16 16:48:38 -07002295 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002296 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002297 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2298
2299 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002300 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002301 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2302
2303 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002304 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002305 ACTION_SUPPORT_SIGN_IN = 480;
2306
2307 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002308 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002309 ACTION_SUPPORT_PHONE = 481;
2310
2311 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002312 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002313 ACTION_SUPPORT_CHAT = 482;
2314
2315 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002316 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002317 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2318
2319 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002320 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002321 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2322
Fan Zhang80807212016-06-30 12:26:55 -07002323 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002324 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002325 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2326
2327 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002328 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002329 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2330
2331 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002332 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002333 ACTION_SUPPORT_DIAL_TOLLED = 487;
2334
Justin Klaassen19494272016-07-18 21:38:24 -07002335 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002336 // CATEGORY: SETTINGS
2337 NIGHT_DISPLAY_SETTINGS = 488;
2338
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002339 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002340 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002341 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2342
Jason Monk484fd362016-07-13 15:24:32 -04002343 // Settings launched from collapsed quick settings.
2344 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2345
Justin Klaassen19494272016-07-18 21:38:24 -07002346 // OPEN: QS Night Light tile shown
2347 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002348 // SUBTYPE: 0 is off, 1 is on
2349 // CATEGORY: QUICK_SETTINGS
2350 QS_NIGHT_DISPLAY = 491;
2351
Justin Klaassen19494272016-07-18 21:38:24 -07002352 // Night Light on
2353 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2354
Doris Ling3c00afb2016-07-19 17:04:21 -07002355 // System navigation key up.
2356 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2357
2358 // System navigation key down.
2359 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2360
Doris Ling6dd3e462016-08-04 13:17:27 -07002361 // OPEN: Settings > Display -> Ambient Display
2362 // CATEGORY: SETTINGS
2363 ACTION_AMBIENT_DISPLAY = 495;
2364
Adrian Roos159ef7b2016-02-25 11:58:32 -08002365 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2366
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002367 // ACTION: The lockscreen gets shown because the SIM card was removed
2368 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2369 // CATEGORY: GLOBAL_SYSTEM_UI
2370 // OS: N-MR2
2371 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2372
2373 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2374
Clara Bayarric17a5982016-04-15 12:26:47 +01002375 // ------- Begin N Keyboard Shortcuts Helper -----
2376 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002377 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002378
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002379 // OPEN: Print Preview screen
2380 // Package: Package of app where print job is from
2381 PRINT_PREVIEW = 501;
2382
2383 // OPEN: User expands full print job options shade in print preview.
2384 PRINT_JOB_OPTIONS = 502;
2385
2386 // OPEN: “All Printers” screen for selecting printer
2387 // Subtype: # of printers listed
2388 PRINT_ALL_PRINTERS = 503;
2389
2390 // OPEN: “Add Printers” screen for adding printers
2391 // Subtype: # of enabled print service listed
2392 PRINT_ADD_PRINTERS = 504;
2393
2394 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2395 // Package: Package of print service.
2396 ACTION_PRINT = 505;
2397
2398 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2399 // Count all ACTION_PRINTER_SELECT_ALL actions.
2400 // Package: Package of print service tied to printer
2401 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2402
2403 // ACTION: User selects a printer from the “All printers” screen.
2404 // Package: Package of print service tied to printer
2405 ACTION_PRINTER_SELECT_ALL = 507;
2406
2407 // ACTION: User changes an option for the print job from print preview.
2408 // Subtype: 1: Copies
2409 // 2: Color mode
2410 // 3: Duplex mode
2411 // 4: Media (==Paper) size
2412 // 5: Orientation
2413 // 6: Page range
2414 // Package: Package of print service tied to printer
2415 ACTION_PRINT_JOB_OPTIONS = 508;
2416
2417 // ACTION: User searches for printer from All Printers
2418 ACTION_PRINTER_SEARCH = 509;
2419
2420 // ACTION: User selects “Add print service” button from All Printers
2421 ACTION_PRINT_SERVICE_ADD = 510;
2422
2423 // ACTION: User Enables/Disables Print Service via any means.
2424 // Subtype: 0: Enabled
2425 // 1: Disabled
2426 ACTION_PRINT_SERVICE_TOGGLE = 511;
2427
2428 // ACTION: User installs print recommended print service
2429 // Package: Package of print service
2430 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2431
Doris Ling88a6b162016-08-08 16:17:43 -07002432 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2433 // SUBTYPE: sub settings classname
2434 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2435
Fan Zhang92c60382016-08-08 14:03:53 -07002436 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2437 USER_DICTIONARY_SETTINGS = 514;
2438
2439 // OPEN: Settings > Date & time > Select time zone
2440 ZONE_PICKER = 515;
2441
2442 // OPEN: Settings > Security > Device administrators
2443 DEVICE_ADMIN_SETTINGS = 516;
2444
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002445 // ACTION: Managed provisioning was launched to set this package as DPC app.
2446 // PACKAGE: DPC's package name.
2447 PROVISIONING_DPC_PACKAGE_NAME = 517;
2448
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002449 // ACTION: Managed provisioning triggered DPC installation.
2450 // PACKAGE: Package name of package which installed DPC.
2451 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2452
2453 // ACTION: Logged when provisioning activity finishes.
2454 // TIME: Indicates time taken by provisioning activity to finish in MS.
2455 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2456
2457 // ACTION: Logged when preprovisioning activity finishes.
2458 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2459 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2460
2461 // ACTION: Logged when encrypt device activity finishes.
2462 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2463 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2464
2465 // ACTION: Logged when web activity finishes.
2466 // TIME: Indicates total time taken by web activity to finish in MS.
2467 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2468
2469 // ACTION: Logged when trampoline activity finishes.
2470 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2471 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2472
2473 // ACTION: Logged when encryption activity finishes.
2474 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2475 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2476
2477 // ACTION: Logged when finalization activity finishes.
2478 // TIME: Indicates time taken by finalization activity to finish in MS.
2479 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002480
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002481 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002482 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002483
Fan Zhang95094182016-08-24 18:14:16 -07002484 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002485 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002486
2487 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002488 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002489
2490 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002491 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002492
2493 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002494 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002495
2496 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002497 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002498
Fan Zhangc1352ae2016-09-16 12:46:11 -07002499 // OPEN: Settings > Security > Use one lock dialog
2500 DIALOG_UNIFICATION_CONFIRMATION = 532;
2501
2502 // OPEN: Settings > Security > User Credential
2503 DIALOG_USER_CREDENTIAL = 533;
2504
2505 // OPEN: Settings > Accounts > Remove account
2506 DIALOG_REMOVE_USER = 534;
2507
2508 // OPEN: Settings > Accounts > Confirm auto sync dialog
2509 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2510
2511 // OPEN: Settings > Apps > Dialog for running service details
2512 DIALOG_RUNNIGN_SERVICE = 536;
2513
2514 // OPEN: Settings > Dialog for hiding home settings
2515 DIALOG_NO_HOME = 537;
2516
2517 // OPEN: Settings > Bluetooth > Rename this device
2518 DIALOG_BLUETOOTH_RENAME = 538;
2519
2520 // OPEN: Settings > Bluetooth > Paired device profile
2521 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2522
2523 // OPEN: Settings > Battery optimization > details for app
2524 DIALOG_HIGH_POWER_DETAILS = 540;
2525
2526 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2527 DIALOG_KEYBOARD_LAYOUT = 541;
2528
2529 // OPEN: Settings > Wifi > WPS Setup dialog
2530 DIALOG_WPS_SETUP = 542;
2531
2532 // OPEN: Settings > WIFI Scan permission dialog
2533 DIALOG_WIFI_SCAN_MODE = 543;
2534
2535 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2536 DIALOG_WIFI_SKIP = 544;
2537
2538 // OPEN: Settings > Wireless > VPN > Config dialog
2539 DIALOG_LEGACY_VPN_CONFIG = 545;
2540
2541 // OPEN: Settings > Wireless > VPN > Config dialog for app
2542 DIALOG_VPN_APP_CONFIG = 546;
2543
2544 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2545 DIALOG_VPN_CANNOT_CONNECT = 547;
2546
2547 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2548 DIALOG_VPN_REPLACE_EXISTING = 548;
2549
2550 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2551 DIALOG_BILLING_CYCLE = 549;
2552
2553 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2554 DIALOG_BILLING_BYTE_LIMIT = 550;
2555
2556 // OPEN: Settings > Billing cycle > turn on data limit dialog
2557 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2558
2559 // OPEN: Settings > Service > Turn off notification access dialog
2560 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2561
2562 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2563 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2564
2565 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2566 DIALOG_ZEN_ACCESS_GRANT = 554;
2567
2568 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2569 DIALOG_ZEN_ACCESS_REVOKE = 555;
2570
2571 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2572 DIALOG_ZEN_TIMEPICKER = 556;
2573
2574 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2575 DIALOG_SERVICE_ACCESS_WARNING = 557;
2576
2577 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2578 DIALOG_APP_INFO_ACTION = 558;
2579
2580 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2581 DIALOG_VOLUME_FORGET = 559;
2582
2583 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2584 DIALOG_VOLUME_SLOW_WARNING = 560;
2585
2586 // OPEN: Settings > Storage > Dialog for initializing a volume
2587 DIALOG_VOLUME_INIT = 561;
2588
2589 // OPEN: Settings > Storage > Dialog for unmounting a volume
2590 DIALOG_VOLUME_UNMOUNT = 562;
2591
2592 // OPEN: Settings > Storage > Dialog for renaming a volume
2593 DIALOG_VOLUME_RENAME = 563;
2594
2595 // OPEN: Settings > Storage > Dialog for clear cache
2596 DIALOG_STORAGE_CLEAR_CACHE = 564;
2597
2598 // OPEN: Settings > Storage > Dialog for system info
2599 DIALOG_STORAGE_SYSTEM_INFO = 565;
2600
2601 // OPEN: Settings > Storage > Dialog for other info
2602 DIALOG_STORAGE_OTHER_INFO = 566;
2603
2604 // OPEN: Settings > Storage > Dialog for user info
2605 DIALOG_STORAGE_USER_INFO = 567;
2606
2607 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2608 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2609
2610 // OPEN: Settings > Add fingerprint > Error dialog
2611 DIALOG_FINGERPINT_ERROR = 569;
2612
2613 // OPEN: Settings > Fingerprint > Rename or delete dialog
2614 DIALOG_FINGERPINT_EDIT = 570;
2615
2616 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2617 DIALOG_FINGERPINT_DELETE_LAST = 571;
2618
2619 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2620 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2621
2622 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2623 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2624
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002625 // OPEN: Settings > Proxy Selector error dialog
2626 DIALOG_PROXY_SELECTOR_ERROR = 574;
2627
2628 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2629 DIALOG_WIFI_P2P_DISCONNECT = 575;
2630
2631 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2632 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2633
2634 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2635 DIALOG_WIFI_P2P_RENAME = 577;
2636
2637 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2638 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2639
2640 // OPEN: Settings > APN > Restore default dialog
2641 DIALOG_APN_RESTORE_DEFAULT = 579;
2642
2643 // OPEN: Settings > Dream > When to dream dialog
2644 DIALOG_DREAM_START_DELAY = 580;
2645
2646 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2647 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2648
2649 // OPEN: Settings > Tether > AP setting dialog
2650 DIALOG_AP_SETTINGS = 582;
2651
2652 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2653 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2654
2655 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2656 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2657
2658 // OPEN: Settings > Account > Remove account dialog
2659 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2660
2661 // OPEN: Settings > Account > Remove account failed dialog
2662 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2663
2664 // OPEN: Settings > Account > Cannot do onetime sync dialog
2665 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2666
2667 // OPEN: Settings > Display > Night light > Set start time dialog
2668 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2669
2670 // OPEN: Settings > Display > Night light > Set end time dialog
2671 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2672
2673 // OPEN: Settings > User > Edit info dialog
2674 DIALOG_USER_EDIT = 590;
2675
2676 // OPEN: Settings > User > Confirm remove dialog
2677 DIALOG_USER_REMOVE = 591;
2678
2679 // OPEN: Settings > User > Enable calling dialog
2680 DIALOG_USER_ENABLE_CALLING = 592;
2681
2682 // OPEN: Settings > User > Enable calling and sms dialog
2683 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2684
2685 // OPEN: Settings > User > Cannot manage device message dialog
2686 DIALOG_USER_CANNOT_MANAGE = 594;
2687
2688 // OPEN: Settings > User > Add user dialog
2689 DIALOG_USER_ADD = 595;
2690
2691 // OPEN: Settings > User > Setup user dialog
2692 DIALOG_USER_SETUP = 596;
2693
2694 // OPEN: Settings > User > Setup profile dialog
2695 DIALOG_USER_SETUP_PROFILE = 597;
2696
2697 // OPEN: Settings > User > Choose user type dialog
2698 DIALOG_USER_CHOOSE_TYPE = 598;
2699
2700 // OPEN: Settings > User > Need lockscreen dialog
2701 DIALOG_USER_NEED_LOCKSCREEN = 599;
2702
2703 // OPEN: Settings > User > Confirm exit guest mode dialog
2704 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2705
2706 // OPEN: Settings > User > Edit user profile dialog
2707 DIALOG_USER_EDIT_PROFILE = 601;
2708
2709 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2710 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2711
2712 // OPEN: Settings > Wifi > Edit AP dialog
2713 DIALOG_WIFI_AP_EDIT = 603;
2714
2715 // OPEN: Settings > Wifi > PBC Config dialog
2716 DIALOG_WIFI_PBC = 604;
2717
2718 // OPEN: Settings > Wifi > Display pin dialog
2719 DIALOG_WIFI_PIN = 605;
2720
2721 // OPEN: Settings > Wifi > Write config to NFC dialog
2722 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002723 // OPEN: Settings > Date > Date picker dialog
2724 DIALOG_DATE_PICKER = 607;
2725
2726 // OPEN: Settings > Date > Time picker dialog
2727 DIALOG_TIME_PICKER = 608;
2728
2729 // OPEN: Settings > Wireless > Manage wireless plan dialog
2730 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002731
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002732 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002733 PROVISIONING_NETWORK_TYPE = 610;
2734
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002735 // ACTION: Logs action which triggered provisioning.
2736 PROVISIONING_ACTION = 611;
2737
Mahaver Chopraab282072016-10-06 19:19:23 +01002738 // ACTION: Logs extra passed by the dpc while provisioning.
2739 PROVISIONING_EXTRA = 612;
2740
Salvador Martinez64867c12016-10-14 15:25:09 -07002741 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2742 BLUETOOTH_DIALOG_FRAGMENT = 613;
2743
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002744 // ACTION: Logs provisioning started by zero touch.
2745 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2746
2747 // ACTION: Logs provisioning started by NFC bump.
2748 PROVISIONING_ENTRY_POINT_NFC = 615;
2749
2750 // ACTION: Logs provisioning started using QR code.
2751 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2752
2753 // ACTION: Logs provisioning started using adb.
2754 PROVISIONING_ENTRY_POINT_ADB = 617;
2755
2756 // ACTION: Logs provisioning started by trusted source.
2757 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2758
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002759 // ACTION: Logged when copy account task finishes.
2760 // TIME: Indicates time taken by copy account task to finish in MS.
2761 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2762
2763 // ACTION: Logged when create profile task finishes.
2764 // TIME: Indicates time taken by create profile task to finish in MS.
2765 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2766
2767 // ACTION: Logged when start profile task finishes.
2768 // TIME: Indicates time taken by start profile task to finish in MS.
2769 PROVISIONING_START_PROFILE_TASK_MS = 621;
2770
2771 // ACTION: Logged when download package task finishes.
2772 // TIME: Indicates time taken by download package task to finish in MS.
2773 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2774
2775 // ACTION: Logged when install package task finishes.
2776 // TIME: Indicates time taken by install package task to finish in MS.
2777 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2778
2779 // ACTION: User cancelled provisioning.
2780 PROVISIONING_CANCELLED = 624;
2781
2782 // ACTION: Logged when provisioning throws an error.
2783 PROVISIONING_ERROR = 625;
2784
2785 // ACTION: Logs the status of copying user account during provisioning.
2786 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2787
2788 // ACTION: Logs the end to end time taken by all provisioning tasks.
2789 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2790
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002791 // OPEN: Settings > Privacy
2792 // CATEGORY: SETTINGS
2793 // OS: O
2794 ENTERPRISE_PRIVACY_SETTINGS = 628;
2795
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002796 // ACTION: Longpress on a TextView.
2797 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2798 // CATEGORY: TEXT_CONTROLS
2799 // OS: O
2800 TEXT_LONGPRESS = 629;
2801
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002802 // ACTION: An app requested an unknown permission
2803 // PACKAGE: The package name of the app requesting the permission
2804 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2805
2806 // ACTION: An app was granted an unknown permission
2807 // PACKAGE: The package name of the app that was granted the permission
2808 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2809
2810 // ACTION: An app requested an unknown permission and the request was denied
2811 // PACKAGE: The package name of the app requesting the permission
2812 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2813
2814 // ACTION: An unknown permission was revoked for an app
2815 // PACKAGE: The package name of the app the permission was revoked for
2816 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2817
2818 // ACTION: An app requested the permission READ_CALENDAR
2819 // PACKAGE: The package name of the app requesting the permission
2820 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2821
2822 // ACTION: An app was granted the permission READ_CALENDAR
2823 // PACKAGE: The package name of the app that was granted the permission
2824 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2825
2826 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2827 // PACKAGE: The package name of the app requesting the permission
2828 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2829
2830 // ACTION: The permission READ_CALENDAR was revoked for an app
2831 // PACKAGE: The package name of the app the permission was revoked for
2832 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2833
2834 // ACTION: An app requested the permission WRITE_CALENDAR
2835 // PACKAGE: The package name of the app requesting the permission
2836 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2837
2838 // ACTION: An app was granted the permission WRITE_CALENDAR
2839 // PACKAGE: The package name of the app that was granted the permission
2840 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2841
2842 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2843 // PACKAGE: The package name of the app requesting the permission
2844 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2845
2846 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2847 // PACKAGE: The package name of the app the permission was revoked for
2848 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2849
2850 // ACTION: An app requested the permission CAMERA
2851 // PACKAGE: The package name of the app requesting the permission
2852 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2853
2854 // ACTION: An app was granted the permission CAMERA
2855 // PACKAGE: The package name of the app that was granted the permission
2856 ACTION_PERMISSION_GRANT_CAMERA = 643;
2857
2858 // ACTION: An app requested the permission CAMERA and the request was denied
2859 // PACKAGE: The package name of the app requesting the permission
2860 ACTION_PERMISSION_DENIED_CAMERA = 644;
2861
2862 // ACTION: The permission CAMERA was revoked for an app
2863 // PACKAGE: The package name of the app the permission was revoked for
2864 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2865
2866 // ACTION: An app requested the permission READ_CONTACTS
2867 // PACKAGE: The package name of the app requesting the permission
2868 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2869
2870 // ACTION: An app was granted the permission READ_CONTACTS
2871 // PACKAGE: The package name of the app that was granted the permission
2872 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2873
2874 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2875 // PACKAGE: The package name of the app requesting the permission
2876 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2877
2878 // ACTION: The permission READ_CONTACTS was revoked for an app
2879 // PACKAGE: The package name of the app the permission was revoked for
2880 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2881
2882 // ACTION: An app requested the permission WRITE_CONTACTS
2883 // PACKAGE: The package name of the app requesting the permission
2884 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2885
2886 // ACTION: An app was granted the permission WRITE_CONTACTS
2887 // PACKAGE: The package name of the app that was granted the permission
2888 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2889
2890 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2891 // PACKAGE: The package name of the app requesting the permission
2892 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2893
2894 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2895 // PACKAGE: The package name of the app the permission was revoked for
2896 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2897
2898 // ACTION: An app requested the permission GET_ACCOUNTS
2899 // PACKAGE: The package name of the app requesting the permission
2900 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2901
2902 // ACTION: An app was granted the permission GET_ACCOUNTS
2903 // PACKAGE: The package name of the app that was granted the permission
2904 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2905
2906 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2907 // PACKAGE: The package name of the app requesting the permission
2908 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2909
2910 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2911 // PACKAGE: The package name of the app the permission was revoked for
2912 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2913
2914 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2915 // PACKAGE: The package name of the app requesting the permission
2916 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2917
2918 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2919 // PACKAGE: The package name of the app that was granted the permission
2920 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2921
2922 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2923 // PACKAGE: The package name of the app requesting the permission
2924 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2925
2926 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2927 // PACKAGE: The package name of the app the permission was revoked for
2928 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2929
2930 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2931 // PACKAGE: The package name of the app requesting the permission
2932 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2933
2934 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2935 // PACKAGE: The package name of the app that was granted the permission
2936 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2937
2938 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2939 // PACKAGE: The package name of the app requesting the permission
2940 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2941
2942 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2943 // PACKAGE: The package name of the app the permission was revoked for
2944 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2945
2946 // ACTION: An app requested the permission RECORD_AUDIO
2947 // PACKAGE: The package name of the app requesting the permission
2948 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2949
2950 // ACTION: An app was granted the permission RECORD_AUDIO
2951 // PACKAGE: The package name of the app that was granted the permission
2952 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2953
2954 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2955 // PACKAGE: The package name of the app requesting the permission
2956 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2957
2958 // ACTION: The permission RECORD_AUDIO was revoked for an app
2959 // PACKAGE: The package name of the app the permission was revoked for
2960 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2961
2962 // ACTION: An app requested the permission READ_PHONE_STATE
2963 // PACKAGE: The package name of the app requesting the permission
2964 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2965
2966 // ACTION: An app was granted the permission READ_PHONE_STATE
2967 // PACKAGE: The package name of the app that was granted the permission
2968 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2969
2970 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2971 // PACKAGE: The package name of the app requesting the permission
2972 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2973
2974 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2975 // PACKAGE: The package name of the app the permission was revoked for
2976 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2977
2978 // ACTION: An app requested the permission CALL_PHONE
2979 // PACKAGE: The package name of the app requesting the permission
2980 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2981
2982 // ACTION: An app was granted the permission CALL_PHONE
2983 // PACKAGE: The package name of the app that was granted the permission
2984 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2985
2986 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2987 // PACKAGE: The package name of the app requesting the permission
2988 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2989
2990 // ACTION: The permission CALL_PHONE was revoked for an app
2991 // PACKAGE: The package name of the app the permission was revoked for
2992 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2993
2994 // ACTION: An app requested the permission READ_CALL_LOG
2995 // PACKAGE: The package name of the app requesting the permission
2996 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2997
2998 // ACTION: An app was granted the permission READ_CALL_LOG
2999 // PACKAGE: The package name of the app that was granted the permission
3000 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
3001
3002 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
3003 // PACKAGE: The package name of the app requesting the permission
3004 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
3005
3006 // ACTION: The permission READ_CALL_LOG was revoked for an app
3007 // PACKAGE: The package name of the app the permission was revoked for
3008 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
3009
3010 // ACTION: An app requested the permission WRITE_CALL_LOG
3011 // PACKAGE: The package name of the app requesting the permission
3012 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3013
3014 // ACTION: An app was granted the permission WRITE_CALL_LOG
3015 // PACKAGE: The package name of the app that was granted the permission
3016 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3017
3018 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3019 // PACKAGE: The package name of the app requesting the permission
3020 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3021
3022 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3023 // PACKAGE: The package name of the app the permission was revoked for
3024 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3025
3026 // ACTION: An app requested the permission ADD_VOICEMAIL
3027 // PACKAGE: The package name of the app requesting the permission
3028 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3029
3030 // ACTION: An app was granted the permission ADD_VOICEMAIL
3031 // PACKAGE: The package name of the app that was granted the permission
3032 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3033
3034 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3035 // PACKAGE: The package name of the app requesting the permission
3036 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3037
3038 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3039 // PACKAGE: The package name of the app the permission was revoked for
3040 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3041
3042 // ACTION: An app requested the permission USE_SIP
3043 // PACKAGE: The package name of the app requesting the permission
3044 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3045
3046 // ACTION: An app was granted the permission USE_SIP
3047 // PACKAGE: The package name of the app that was granted the permission
3048 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3049
3050 // ACTION: An app requested the permission USE_SIP and the request was denied
3051 // PACKAGE: The package name of the app requesting the permission
3052 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3053
3054 // ACTION: The permission USE_SIP was revoked for an app
3055 // PACKAGE: The package name of the app the permission was revoked for
3056 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3057
3058 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3059 // PACKAGE: The package name of the app requesting the permission
3060 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3061
3062 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3063 // PACKAGE: The package name of the app that was granted the permission
3064 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3065
3066 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3067 // PACKAGE: The package name of the app requesting the permission
3068 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3069
3070 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3071 // PACKAGE: The package name of the app the permission was revoked for
3072 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3073
3074 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3075 // PACKAGE: The package name of the app requesting the permission
3076 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3077
3078 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3079 // PACKAGE: The package name of the app that was granted the permission
3080 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3081
3082 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3083 // PACKAGE: The package name of the app requesting the permission
3084 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3085
3086 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3087 // PACKAGE: The package name of the app the permission was revoked for
3088 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3089
3090 // ACTION: An app requested the permission BODY_SENSORS
3091 // PACKAGE: The package name of the app requesting the permission
3092 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3093
3094 // ACTION: An app was granted the permission BODY_SENSORS
3095 // PACKAGE: The package name of the app that was granted the permission
3096 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3097
3098 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3099 // PACKAGE: The package name of the app requesting the permission
3100 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3101
3102 // ACTION: The permission BODY_SENSORS was revoked for an app
3103 // PACKAGE: The package name of the app the permission was revoked for
3104 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3105
3106 // ACTION: An app requested the permission SEND_SMS
3107 // PACKAGE: The package name of the app requesting the permission
3108 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3109
3110 // ACTION: An app was granted the permission SEND_SMS
3111 // PACKAGE: The package name of the app that was granted the permission
3112 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3113
3114 // ACTION: An app requested the permission SEND_SMS and the request was denied
3115 // PACKAGE: The package name of the app requesting the permission
3116 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3117
3118 // ACTION: The permission SEND_SMS was revoked for an app
3119 // PACKAGE: The package name of the app the permission was revoked for
3120 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3121
3122 // ACTION: An app requested the permission RECEIVE_SMS
3123 // PACKAGE: The package name of the app requesting the permission
3124 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3125
3126 // ACTION: An app was granted the permission RECEIVE_SMS
3127 // PACKAGE: The package name of the app that was granted the permission
3128 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3129
3130 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3131 // PACKAGE: The package name of the app requesting the permission
3132 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3133
3134 // ACTION: The permission RECEIVE_SMS was revoked for an app
3135 // PACKAGE: The package name of the app the permission was revoked for
3136 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3137
3138 // ACTION: An app requested the permission READ_SMS
3139 // PACKAGE: The package name of the app requesting the permission
3140 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3141
3142 // ACTION: An app was granted the permission READ_SMS
3143 // PACKAGE: The package name of the app that was granted the permission
3144 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3145
3146 // ACTION: An app requested the permission READ_SMS and the request was denied
3147 // PACKAGE: The package name of the app requesting the permission
3148 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3149
3150 // ACTION: The permission READ_SMS was revoked for an app
3151 // PACKAGE: The package name of the app the permission was revoked for
3152 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3153
3154 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3155 // PACKAGE: The package name of the app requesting the permission
3156 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3157
3158 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3159 // PACKAGE: The package name of the app that was granted the permission
3160 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3161
3162 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3163 // PACKAGE: The package name of the app requesting the permission
3164 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3165
3166 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3167 // PACKAGE: The package name of the app the permission was revoked for
3168 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3169
3170 // ACTION: An app requested the permission RECEIVE_MMS
3171 // PACKAGE: The package name of the app requesting the permission
3172 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3173
3174 // ACTION: An app was granted the permission RECEIVE_MMS
3175 // PACKAGE: The package name of the app that was granted the permission
3176 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3177
3178 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3179 // PACKAGE: The package name of the app requesting the permission
3180 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3181
3182 // ACTION: The permission RECEIVE_MMS was revoked for an app
3183 // PACKAGE: The package name of the app the permission was revoked for
3184 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3185
3186 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3187 // PACKAGE: The package name of the app requesting the permission
3188 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3189
3190 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3191 // PACKAGE: The package name of the app that was granted the permission
3192 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3193
3194 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3195 // PACKAGE: The package name of the app requesting the permission
3196 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3197
3198 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3199 // PACKAGE: The package name of the app the permission was revoked for
3200 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3201
3202 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3203 // PACKAGE: The package name of the app requesting the permission
3204 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3205
3206 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3207 // PACKAGE: The package name of the app that was granted the permission
3208 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3209
3210 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3211 // PACKAGE: The package name of the app requesting the permission
3212 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3213
3214 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3215 // PACKAGE: The package name of the app the permission was revoked for
3216 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3217
Mahaverfa6566e2016-11-29 21:08:14 +00003218 // ACTION: Logged when a provisioning session has started
3219 PROVISIONING_SESSION_STARTED = 734;
3220
3221 // ACTION: Logged when a provisioning session has completed
3222 PROVISIONING_SESSION_COMPLETED = 735;
3223
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003224 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003225 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003226 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003227
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003228 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003229 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003230 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003231
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003232 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003233 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003234 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003235
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003236 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003237 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003238 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003239
Santos Cordon3107d292016-09-20 15:50:35 -07003240 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3241 // SUBTYPE: slider value
3242 // CATEGORY: QUICK_SETTINGS
3243 // OS: 6.0
3244 ACTION_BRIGHTNESS_FOR_VR = 498;
3245
Hugo Benichie1cbf152016-12-08 09:36:52 +09003246 // ACTION: A captive portal was detected during network validation
3247 // CATEGORY: NOTIFICATION
3248 // OS: N-MR2
3249 NOTIFICATION_NETWORK_SIGN_IN = 740;
3250
3251 // ACTION: An unvalidated network without Internet was selected by the user
3252 // CATEGORY: NOTIFICATION
3253 // OS: N-MR2
3254 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3255
3256 // ACTION: A validated network failed revalidation and lost Internet access
3257 // CATEGORY: NOTIFICATION
3258 // OS: N-MR2
3259 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3260
3261 // ACTION: The system default network switched to a different network
3262 // CATEGORY: NOTIFICATION
3263 // OS: N-MR2
3264 NOTIFICATION_NETWORK_SWITCH = 743;
3265
Fan Zhang074c4cb2016-12-21 12:10:33 -08003266 // OPEN: Settings > System
3267 SETTINGS_SYSTEM_CATEGORY = 744;
3268
3269 // OPEN: Settings > Storage
3270 SETTINGS_STORAGE_CATEGORY = 745;
3271
3272 // OPEN: Settings > Network & Internet
3273 SETTINGS_NETWORK_CATEGORY = 746;
3274
3275 // OPEN: Settings > Connected Device
3276 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3277
3278 // OPEN: Settings > App & Notification
3279 SETTINGS_APP_NOTIF_CATEGORY = 748;
3280
3281 // OPEN: Settings > System > Input & Gesture
3282 SETTINGS_INPUT_CATEGORY = 749;
3283
3284 // OPEN: Settings > System > Language & Region
3285 SETTINGS_LANGUAGE_CATEGORY = 750;
3286
3287 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3288 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3289
3290 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3291 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3292
3293 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3294 SETTINGS_GESTURE_PICKUP = 753;
3295
3296 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3297 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3298
3299 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3300 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3301
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003302 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3303 // CATEGORY: Settings
3304 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3305
Alison Cichowlas803054d2016-12-13 14:38:01 -05003306 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003307 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003308 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3309 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3310 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003311
Salvador Martinezc43ab062016-12-21 11:09:11 -08003312 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3313 // user accepted
3314 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003315
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003316 // Enclosing category for group of APP_TRANSITION_FOO events,
3317 // logged when we execute an app transition.
3318 APP_TRANSITION = 761;
3319
Fan Zhang945deea2017-01-11 16:37:49 -08003320 // ACTION: User leaves Settings search UI without entering any query.
3321 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3322
3323 // ACTION: Clicking on any search result in Settings.
3324 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003325
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003326 // ACTION: Allow Battery optimization for an app
3327 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3328
3329 // ACTION: Deny Battery optimization for an app
3330 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3331
3332 // ACTION: Enable Device Admin app
3333 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3334
3335 // ACTION: Disable Device Admin app
3336 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3337
3338 // ACTION: Allow "Do Not Disturb access" for an app
3339 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3340
3341 // ACTION: Deny "Do Not Disturb access" for an app
3342 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3343
3344 // ACTION: Allow "Draw over other apps" for an app
3345 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3346
Christine Franks47175c32017-03-14 10:21:25 -07003347 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003348 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3349
3350 // ACTION: Allow "VR helper services" for an app
3351 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3352
3353 // ACTION: Deny "VR helper services" for an app
3354 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3355
3356 // ACTION: Allow "Modify system settings" for an app
3357 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3358
3359 // ACTION: Deny "Modify system settings" for an app
3360 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3361
3362 // ACTION: Allow "Notification access" for an app
3363 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3364
3365 // ACTION: Deny "Notification access" for an app
3366 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3367
3368 // ACTION: "Premium SMS access" for an app - "ask user" option
3369 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3370
3371 // ACTION: "Premium SMS access" for an app - "never allow" option
3372 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3373
3374 // ACTION: "Premium SMS access" for an app - "always allow" option
3375 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3376
3377 // ACTION: Allow "Unrestricted data access" for an app
3378 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3379
3380 // ACTION: Deny "Unrestricted data access" for an app
3381 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3382
3383 // ACTION: Allow "Usage access" for an app
3384 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3385
3386 // ACTION: Deny "Usage access" for an app
3387 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3388
Fan Zhangad5dacc2017-01-18 14:18:54 -08003389 // OPEN: Settings > Apps > Default Apps > Default browser
3390 DEFAULT_BROWSER_PICKER = 785;
3391
3392 // OPEN: Settings > Apps > Default Apps > Default emergency app
3393 DEFAULT_EMERGENCY_APP_PICKER = 786;
3394
3395 // OPEN: Settings > Apps > Default Apps > Default home
3396 DEFAULT_HOME_PICKER = 787;
3397
3398 // OPEN: Settings > Apps > Default Apps > Default phone
3399 DEFAULT_PHONE_PICKER = 788;
3400
3401 // OPEN: Settings > Apps > Default Apps > Default sms
3402 DEFAULT_SMS_PICKER = 789;
3403
3404 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3405 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3406
3407 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3408 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3409
Jason Long1b51da62017-01-24 11:35:31 -08003410 // OPEN: Settings > Apps > Default Apps > Default autofill app
3411 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003412
Chris Wren26ca65d2016-11-29 10:43:28 -05003413 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003414 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003415 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3416 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3417 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3418 NOTIFICATION_ID = 796;
3419 NOTIFICATION_TAG = 797;
3420 NOTIFICATION_SHADE_INDEX = 798;
3421 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003422
Anas Karbilaf7648f42016-12-11 00:55:02 +01003423 // OPEN: QS NFC tile shown
3424 // ACTION: QS NFC tile tapped
3425 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003426 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003427
Chris Wren26ca65d2016-11-29 10:43:28 -05003428 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003429 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003430 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3431 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3432 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3433 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3434 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3435 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3436
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003437 // ACTION: "Force stop" action on an app
3438 ACTION_APP_FORCE_STOP = 807;
3439
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003440 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3441 // CATEGORY: SETTINGS
3442 // OS: 8.0
3443 MANAGE_EXTERNAL_SOURCES = 808;
3444
Mahaver6cd47162017-01-23 09:59:33 +00003445 // ACTION: Logged when terms activity finishes.
3446 // TIME: Indicates time taken by terms activity to finish in MS.
3447 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3448
3449 // Indicates number of terms displayed on the terms screen.
3450 PROVISIONING_TERMS_COUNT = 810;
3451
3452 // Indicates number of terms read on the terms screen.
3453 PROVISIONING_TERMS_READ = 811;
3454
Winson Chung59fda9e2017-01-20 16:14:51 -08003455 // Logs that the user has edited the picture-in-picture settings.
3456 // CATEGORY: SETTINGS
3457 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3458
Winson Chungf4ac0632017-03-17 12:34:12 -07003459 // ACTION: Allow "Enable picture-in-picture" for an app
3460 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003461
Winson Chungf4ac0632017-03-17 12:34:12 -07003462 // ACTION: Deny "Enable picture-in-picture" for an app
3463 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003464
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003465 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3466 // CATEGORY: SETTINGS
3467 // OS: 8.0
3468 TTS_SLIDERS = 815;
3469
Jason Monk524fb402017-01-25 10:33:31 -05003470 // ACTION: Settings -> Display -> Theme
3471 ACTION_THEME = 816;
3472
chchaob8e253a2017-01-25 12:12:09 -08003473 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3474 // ACTION: Select to Speak configuration is chosen
3475 // SUBTYPE: 0 is off, 1 is on
3476 // CATEGORY: SETTINGS
3477 // OS: N
3478 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3479
Anton Philippov95a553e2017-01-27 00:08:24 +00003480 // OPEN: Settings > System > Backup
3481 // CATEGORY: SETTINGS
3482 // OS: O
3483 BACKUP_SETTINGS = 818;
3484
Winson Chung14fbe142016-12-19 16:18:24 -08003485 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003486 // VALUE: true if it was entered while hiding as a result of moving to
3487 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003488 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3489
3490 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3491 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3492 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3493
3494 // ACTION: The activity currently in picture-in-picture was minimized
3495 // VALUE: True if the PiP was minimized, false otherwise
3496 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3497
3498 // ACTION: Picture-in-picture was dismissed via the dismiss button
3499 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3500 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3501
3502 // ACTION: The visibility of the picture-in-picture meny
3503 // VALUE: Whether or not the menu is visible
3504 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3505
3506 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3507 // logged when the aspect ratio changes
3508 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3509
3510 // The current aspect ratio of the PiP, logged when it changes.
3511 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3512
Chris Wren27a52fa2017-02-01 14:21:43 -05003513 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3514 // CATEGORY: GLOBAL_SYSTEM_UI
3515 // OS: O
3516 FIELD_GESTURE_LENGTH = 826;
3517
3518 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3519 // CATEGORY: GLOBAL_SYSTEM_UI
3520 // OS: O
3521 FIELD_GESTURE_VELOCITY = 827;
3522
Christine Franks27fde392017-02-07 10:21:55 -08003523 // OPEN: Carrier demo mode password dialog
3524 CARRIER_DEMO_MODE_PASSWORD = 828;
3525
Fan Zhang70967f32017-02-13 16:02:24 -08003526 // ACTION: Create a Settings shortcut item.
3527 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3528
3529 // ACTION: A tile in Settings information architecture is clicked
3530 ACTION_SETTINGS_TILE_CLICK = 830;
3531
Julia Reynolds520df6e2017-02-13 09:05:10 -05003532 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3533 // updated
3534 // CATEGORY: NOTIFICATION
3535 // OS: O
3536 NOTIFICATION_SNOOZED = 831;
3537
3538 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3539 // OS: O
3540 NOTIFICATION_SNOOZED_CRITERIA = 832;
3541
Fan Zhang65899432017-02-14 13:36:53 -08003542 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003543 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003544 FIELD_CONTEXT = 833;
3545
Fan Zhangd95dcb42017-02-14 13:48:09 -08003546 // ACTION: Settings advanced button is expanded
3547 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3548
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003549 // ACTION: Logs the number of times the saved network evaluator was used to
3550 // recommend a wifi network
3551 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3552
3553 // ACTION: Logs the number of times the recommended network evaluator was
3554 // used to recommend a wifi network
3555 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3556
3557 // ACTION: Logs the number of times a recommended network was resulted in a
3558 // successful connection
3559 // VALUE: true if the connection was successful, false if the connection failed
3560 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3561
Daniel Nishic581bfc2017-02-08 10:18:19 -08003562 // OPEN: Settings > Storage > Games
3563 // CATEGORY: SETTINGS
3564 // OS: O
3565 APPLICATIONS_STORAGE_GAMES = 838;
3566
3567 // OPEN: Settings > Storage > Audio and Music
3568 // CATEGORY: SETTINGS
3569 // OS: O
3570 APPLICATIONS_STORAGE_MUSIC = 839;
3571
3572 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3573 // CATEGORY: SETTINGS
3574 // OS: O
3575 STORAGE_FREE_UP_SPACE_NOW = 840;
3576
3577 // ACTION: Settings > Storage > Files to open the File Manager
3578 // CATEGORY: SETTINGS
3579 // OS: O
3580 STORAGE_FILES = 841;
3581
Fan Zhangb1d49222017-02-15 17:12:58 -08003582 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003583 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003584
Fan Zhang7f2cace2017-02-17 12:05:48 -08003585 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3586 DEFAULT_ASSIST_PICKER = 843;
3587
3588 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3589 DEFAULT_VOICE_INPUT_PICKER = 844;
3590
Daniel Nishi4058a842017-02-21 17:11:35 -08003591 // OPEN: Settings > Storage > [Profile]
3592 SETTINGS_STORAGE_PROFILE = 845;
3593
Doris Lingedb84c32017-02-23 10:56:01 -08003594 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3595 // CATEGORY: SETTINGS
3596 // OS: O
3597 ENCRYPTION_AND_CREDENTIAL = 846;
3598
Fan Zhangb66e5422017-02-24 14:37:45 -08003599 // ACTION: Settings > About device > Build number
3600 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3601
3602 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3603 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3604
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003605 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3606 // CATEGORY: SETTINGS
3607 // OS: O
3608 WIFI_NETWORK_DETAILS = 849;
3609
jackqdyuleia2a14342017-02-28 16:20:48 -08003610 // ACTION: Settings > Battery > Menu > Usage Alerts
3611 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3612
3613 // ACTION: Settings > Battery > Menu > Optimization
3614 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3615
3616 // ACTION: Settings > Battery > Menu > Apps Toggle
3617 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3618
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003619 // ACTION: Settings > Any preference is changed
3620 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3621
3622 // FIELD: The name of preference when it is changed in Settings
3623 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3624
3625 // FIELD: The new value of preference when it is changed in Settings
3626 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3627
Julia Reynoldsd373d782017-03-03 13:32:57 -05003628 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3629 // channel updated
3630 // PACKAGE: the package the channel belongs too
3631 // CATEGORY: NOTIFICATION
3632 // OS: O
3633 ACTION_NOTIFICATION_CHANNEL = 856;
3634
3635 // Tagged data for notification channel. String.
3636 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3637
3638 // Tagged data for notification channel. int.
3639 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3640
3641 // OPEN: Notification channel group created.
3642 // PACKAGE: the package the group belongs to
3643 // CATEGORY: NOTIFICATION
3644 // OS: O
3645 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3646
3647 // Tagged data for notification channel group. String.
3648 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3649
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003650 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3651 // CATEGORY: SETTINGS
3652 // OS: O
3653 SETTINGS_NETWORK_SCORER = 861;
3654
Fan Zhang99861312017-03-07 14:32:38 -08003655 // OPEN: Settings > About device > Model > Hardware info dialog
3656 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3657
mariagpuyol0f5512e2017-03-01 12:09:56 -08003658 // ACTION: Checks whether a contact's phone still exists
3659 // Value 0: It doesn't exist anymore
3660 // Value 1: It still exists
3661 // Value 2: A SecurityException was thrown
3662 // CATEGORY: SETTINGS
3663 // OS: N
3664 ACTION_PHONE_EXISTS = 863;
3665
3666 // ACTION: Retrieves a contact from CP2
3667 // Value 0: Contact retrieved without issues
3668 // Value 1: An IllegalArgumentException was thrown
3669 // CATEGORY: SETTINGS
3670 // OS: N
3671 ACTION_GET_CONTACT = 864;
3672
Chris Wren4d6b54d2017-04-27 16:56:54 -04003673 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003674 // internal platform metrics use.
3675 RESERVED_FOR_LOGBUILDER_PID = 865;
3676
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003677 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3678 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3679
3680 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3681 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3682
3683 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3684 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3685
3686 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3687 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3688
3689 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3690 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3691
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003692 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003693 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003694
Fan Zhang082d21c2017-03-13 15:25:54 -07003695 // ACTION: Settings > App detail > Uninstall
3696 ACTION_SETTINGS_UNINSTALL_APP = 872;
3697
3698 // ACTION: Settings > App detail > Uninstall Device admin app
3699 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3700
3701 // ACTION: Settings > App detail > Disable app
3702 ACTION_SETTINGS_DISABLE_APP = 874;
3703
3704 // ACTION: Settings > App detail > Enable app
3705 ACTION_SETTINGS_ENABLE_APP = 875;
3706
3707 // ACTION: Settings > App detail > Clear data
3708 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3709
3710 // ACTION: Settings > App detail > Clear cache
3711 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3712
3713 // ACTION: Clicking on any search result in Settings.
3714 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3715
3716 // FIELD: Settings inline search result name
3717 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3718
3719 // FIELD: Settings inline search result value
3720 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3721
Fan Zhang53797932017-03-13 17:46:24 -07003722 // ACTION: Settings > Search > Click saved queries
3723 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3724
Doris Lingbf8d9de2017-03-15 11:52:50 -07003725 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3726 // CATEGORY: SETTINGS
3727 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3728
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003729 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3730 // PACKAGE: The package name of the app requesting the permission
3731 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3732
3733 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3734 // PACKAGE: The package name of the app that was granted the permission
3735 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3736
3737 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3738 // PACKAGE: The package name of the app requesting the permission
3739 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3740
3741 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3742 // PACKAGE: The package name of the app the permission was revoked for
3743 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3744
3745 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3746 // PACKAGE: The package name of the app requesting the permission
3747 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3748
3749 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3750 // PACKAGE: The package name of the app that was granted the permission
3751 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3752
3753 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3754 // PACKAGE: The package name of the app requesting the permission
3755 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3756
3757 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3758 // PACKAGE: The package name of the app the permission was revoked for
3759 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3760
3761 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3762 // PACKAGE: The package name of the app requesting the permission
3763 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3764
3765 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3766 // PACKAGE: The package name of the app that was granted the permission
3767 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3768
3769 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3770 // PACKAGE: The package name of the app requesting the permission
3771 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3772
3773 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3774 // PACKAGE: The package name of the app the permission was revoked for
3775 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3776
3777 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3778 // PACKAGE: The package name of the app requesting the permission
3779 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3780
3781 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3782 // PACKAGE: The package name of the app that was granted the permission
3783 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3784
3785 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3786 // PACKAGE: The package name of the app requesting the permission
3787 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3788
3789 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3790 // PACKAGE: The package name of the app the permission was revoked for
3791 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3792
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003793 // ACTION: Phase 1 of instant application resolution occurred
3794 // OS: O
3795 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3796
3797 // ACTION: Phase 2 of instant application resolution occurred
3798 // OS: O
3799 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3800
3801 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3802 // OS: O
3803 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3804
3805 // FIELD: The status of an ephemeral resolution phase
3806 // Value 0: success
3807 // Value 1: no full hash match
3808 // OS: O
3809 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3810
3811 // FIELD - A token to identify all events that are part of the same instant application launch
3812 // OS: O
3813 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3814
3815 // FIELD - The name of the package responsible for launching the activity
3816 // OS: O
3817 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3818
3819 // FIELD - Whether or not the launched activity is part of an instant application
3820 // OS: O
3821 APP_TRANSITION_IS_EPHEMERAL = 905;
3822
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003823 // An autofill session was started
3824 // Package: Package of app that is autofilled
3825 AUTOFILL_SESSION_STARTED = 906;
3826
3827 // An autofill request was processed by a service
3828 // Type TYPE_SUCCESS: The request succeeded
3829 // Type TYPE_FAILURE: The request failed
3830 // Package: Package of app that is autofilled
3831 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3832 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3833 AUTOFILL_REQUEST = 907;
3834
3835 // Tag of a field for a package of an autofill service
3836 FIELD_AUTOFILL_SERVICE = 908;
3837
3838 // Tag of a field for the number of datasets
3839 FIELD_AUTOFILL_NUM_DATASETS = 909;
3840
3841 // An autofill dataset selection UI was shown
3842 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3843 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3844 // Type TYPE_ACTION: dataset was selected
3845 // Type TYPE_DETAIL: authentication was selected
3846 // Package: Package of app that was autofilled
3847 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3848 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3849 AUTOFILL_FILL_UI = 910;
3850
3851 // Tag of a field for the length of the filter text
3852 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3853
Felipe Lemeb4cd6222017-09-26 09:11:32 -07003854 // An autofill authentication succeeded
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003855 // Package: Package of app that was autofilled
3856 AUTOFILL_AUTHENTICATED = 912;
3857
3858 // An activity was autofilled and all values could be applied
3859 // Package: Package of app that is autofilled
3860 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3861 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3862 AUTOFILL_DATASET_APPLIED = 913;
3863
3864 // Tag of a field for the number values to be filled in
3865 FIELD_AUTOFILL_NUM_VALUES = 914;
3866
3867 // Tag of a field for the number of views that were filled
3868 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3869
3870 // An autofill save UI was shown
3871 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3872 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3873 // Type TYPE_ACTION: data was saved
3874 // Package: Package of app that was autofilled
3875 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3876 AUTOFILL_SAVE_UI = 916;
3877
3878 // Tag of a field for the number of saveable ids
3879 FIELD_AUTOFILL_NUM_IDS = 917;
3880
3881 // ACTION: An autofill service was reqiested to save data
3882 // Type TYPE_SUCCESS: The request succeeded
3883 // Type TYPE_FAILURE: The request failed
3884 // Package: Package of app that was autofilled
3885 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3886 AUTOFILL_DATA_SAVE_REQUEST = 918;
3887
3888 // An auto-fill session was finished
3889 // Package: Package of app that was autofilled
3890 AUTOFILL_SESSION_FINISHED = 919;
3891
Chris Wren148805582017-03-17 17:18:11 -04003892 // meta-event: a reader has checkpointed the log here.
3893 METRICS_CHECKPOINT = 920;
3894
Fan Zhanged1845f2017-03-23 14:46:59 -07003895 // OPEN: Settings -> Display -> When in VR Mode
3896 VR_DISPLAY_PREFERENCE = 921;
3897
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003898 // OPEN: Settings > Accessibility > Magnification
3899 // CATEGORY: SETTINGS
3900 // OS: O
3901 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003902
3903 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3904 // app.
3905 // VALUE: The package name of the app
3906 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3907
Fan Zhang1a34e752017-03-24 13:44:51 -07003908 // OPEN: Settings -> System -> Reset options
3909 RESET_DASHBOARD = 924;
3910
Jason Monk8c09ac72017-03-16 11:53:40 -04003911 // ACTION: QS -> Tile clicked
3912 ACTION_QS_CLICK = 925;
3913
3914 // ACTION: QS -> Secondary click
3915 ACTION_QS_SECONDARY_CLICK = 926;
3916
3917 // FIELD: Position info in QS clicks
3918 FIELD_QS_POSITION = 927;
3919
3920 // FIELD: The value of a QS tile when clicked (if applicable)
3921 FIELD_QS_VALUE = 928;
3922
3923 // ACTION: QS -> Detail panel -> more settings
3924 ACTION_QS_MORE_SETTINGS = 929;
3925
3926 // ACTION: QS -> Click date
3927 ACTION_QS_DATE = 930;
3928
Jason Monk1b775652017-03-31 15:42:27 -04003929 // ACTION: Event on nav button
3930 ACTION_NAV_BUTTON_EVENT = 931;
3931
3932 // FIELD: Flags for a nav button event
3933 FIELD_FLAGS = 932;
3934
3935 // FIELD: Action for a nav button event
3936 FIELD_NAV_ACTION = 933;
3937
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003938 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3939 // CATEGORY: SETTINGS
3940 // OS: O
3941 FINGERPRINT_REMOVE_SIDECAR = 934;
3942
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003943 // OPEN: Settings > Storage > Movies & TV
3944 // CATEGORY: SETTINGS
3945 // OS: O
3946 APPLICATIONS_STORAGE_MOVIES = 935;
3947
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003948 // OPEN: Text selection "assist" menu item shown.
3949 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3950 // CATEGORY: TEXT_CONTROLS
3951 // OS: O
3952 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3953
3954 // ACTION: Text selection "assist" menu item clicked.
3955 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3956 // CATEGORY: TEXT_CONTROLS
3957 // OS: O
3958 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3959
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003960 // OPEN: Settings > Security > Managed Device Info > Apps installed
3961 // CATEGORY: SETTINGS
3962 // OS: O
3963 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3964
3965 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3966 // CATEGORY: SETTINGS
3967 // OS: O
3968 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3969
3970 // OPEN: Settings > Security > Managed Device Info > Default apps
3971 // CATEGORY: SETTINGS
3972 // OS: O
3973 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3974
Julia Reynolds80b18072017-04-23 12:27:07 -04003975 // OPEN: Settings > Notifications > An app > A channel > Importance
3976 // CATEGORY: SETTINGS
3977 // OS: O
3978 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3979
3980 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3981 // CATEGORY: SETTINGS
3982 // OS: O
3983 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3984
Chris Wren4d6b54d2017-04-27 16:56:54 -04003985 // This value should never appear in log outputs - it is reserved for
3986 // internal platform metrics use.
3987 RESERVED_FOR_LOGBUILDER_UID = 943;
3988
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003989 // OPEN: Running background apps notification > List of background apps
3990 // CATEGORY: GLOBAL_SYSTEM_UI
3991 // OS: O
3992 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3993
Jorim Jaggi515dd682017-05-05 15:05:07 +02003994 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3995 // client.
3996 // OS: O
3997 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3998
Chris Wrenb3921792017-06-01 13:34:46 -04003999 // FIELD - The group ID of a notification.
4000 // Type: string
4001 // OS: O
4002 FIELD_NOTIFICATION_GROUP_ID = 946;
4003
4004 // FIELD - If the notification is a group summary: 1.
4005 // Type: int encoded boolean
4006 // OS: O
4007 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
4008
Felipe Leme23e61a92017-11-30 17:41:57 -08004009 // An app attempted to forge a different component name in the AssisStructure that would be
4010 // passed to the autofill service.
4011 // OS: O (security patch)
4012 // Package: Real package of the app being autofilled
4013 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
4014 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
4015 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
4016
4017 // FIELD - The component that an app tried tro forged.
4018 // Type: string
4019 // OS: O (security patch)
4020 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
4021
Chris Wren26ca65d2016-11-29 10:43:28 -05004022 // ---- End O Constants, all O constants go above this line ----
4023
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004024 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4025 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4026
jackqdyulei92e492e2017-04-28 13:04:42 -07004027 // OPEN: Settings > Battery > High Usage > Abnormal app page
4028 // CATEGORY: SETTINGS
4029 FUELGAUGE_ANOMALY_DETAIL = 987;
4030
4031 // OPEN: Settings > Battery > High Usage
4032 DIALOG_HANDLE_ANOMALY = 988;
4033
Jonathan Solnita4138162017-05-10 21:06:04 -07004034 // ACTION: Camera lift gesture
4035 // CATEGORY: GLOBAL_SYSTEM_UI
4036 // OS: O
4037 ACTION_CAMERA_LIFT_TRIGGER = 989;
4038
Maurice Lam76ae09c2017-05-05 12:03:49 -07004039 // OPEN: Choose screen lock dialog in Settings
4040 // CATEGORY: SETTINGS
4041 // OS: O DR
4042 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4043
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004044 // OPEN: Assist Gesture training intro in Settings
4045 // CATEGORY: SETTINGS
4046 // OS: O DR
4047 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4048
4049 // OPEN: Assist Gesture training enrolling in Settings
4050 // CATEGORY: SETTINGS
4051 // OS: O DR
4052 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4053
4054 // OPEN: Assist Gesture training finished in Settings
4055 // CATEGORY: SETTINGS
4056 // OS: O DR
4057 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4058
Fan Zhangc666a202017-05-18 17:50:20 -07004059 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4060 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4061
4062 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4063 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4064
Philip Quinn0f9566d2017-05-23 10:32:08 -07004065 // OPEN: Settings > System > Languages & input > Assist gesture
4066 // CATEGORY: SETTINGS
4067 // OS: O DR
4068 SETTINGS_ASSIST_GESTURE = 996;
4069
4070 // ACTION: Assist gesture released without triggering
4071 // CATEGORY: GLOBAL_SYSTEM_UI
4072 // OS: O DR
4073 ASSIST_GESTURE_RELEASED = 997;
4074
4075 // ACTION: Assist gesture primed
4076 // CATEGORY: GLOBAL_SYSTEM_UI
4077 // OS: O DR
4078 ASSIST_GESTURE_PRIMED = 998;
4079
4080 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004081 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004082 // CATEGORY: GLOBAL_SYSTEM_UI
4083 // OS: O DR
4084 ASSIST_GESTURE_TRIGGERED = 999;
4085
Fan Zhang238162b2017-05-25 14:01:41 -07004086 // ACTION: Update default app from Settings
4087 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4088
4089 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004090 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004091
4092 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004093 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004094
Adrian Roos1c81d772017-05-25 18:00:21 -07004095 // OPEN: Settings > Display > Ambient Display
4096 // CATEGORY: SETTINGS
4097 // OS: O DR
4098 AMBIENT_DISPLAY_SETTINGS = 1003;
4099
Hugo Benichi11da42b2017-05-31 11:11:37 +09004100 // ACTION: CaptivePortalLoginActivity starts
4101 // CATEGORY: GLOBAL_SYSTEM_UI
4102 // OS: O DR
4103 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4104
4105 // ACTION: CaptivePortalLoginActivity auto-closes
4106 // CATEGORY: GLOBAL_SYSTEM_UI
4107 // OS: O DR
4108 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4109
4110 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4111 // CATEGORY: GLOBAL_SYSTEM_UI
4112 // OS: O DR
4113 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4114
4115 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4116 // CATEGORY: GLOBAL_SYSTEM_UI
4117 // OS: O DR
4118 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4119
4120 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4121 // CATEGORY: SETTINGS
4122 // OS: O DR
4123 ACTION_WIFI_SIGNIN = 1008;
4124
Antony Sargentf3cc3172017-05-04 14:58:06 -07004125 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4126 // CATEGORY: SETTINGS
4127 // OS: O DR
4128 BLUETOOTH_DEVICE_DETAILS = 1009;
4129
fanzhang172255759d2017-06-05 21:43:47 -07004130 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4131 CONFIGURE_KEYGUARD_DIALOG = 1010;
4132
Fan Zhange33c70d2017-06-06 12:37:13 -07004133 // Open: Settings > Search > No Result View
4134 SETTINGS_SEARCH_NO_RESULT = 1011;
4135
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004136 // OPEN: Assist Gesture before training
4137 // CATEGORY: SETTINGS
4138 // OS: O DR
4139 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4140
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004141 // CaptivePortalLoginActivity displays SSL error page
4142 // CATEGORY: GLOBAL_SYSTEM_UI
4143 // OS: O DR
4144 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4145
Fan Zhang1a0fc992017-06-13 13:45:21 -07004146 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4147 WIFI_TETHER_SETTINGS = 1014;
4148
Antony Sargentc3b5da62017-06-16 11:50:13 -07004149 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4150 // -> Edit name button.
4151 // CATEGORY: SETTINGS
4152 // OS: O DR
4153 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4154
Fan Zhang543587d2017-06-19 12:32:14 -07004155 // ACTION: Settings > Notification Settings > Open application notification
4156 // CATEGORY: SETTINGS
4157 // OS: O DR
4158 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4159
4160 // ACTION: Settings > App Info > Open app settings
4161 // CATEGORY: SETTINGS
4162 // OS: O DR
4163 ACTION_OPEN_APP_SETTING = 1017;
4164
jackqdyulei2f1a3592017-06-19 13:11:05 -07004165 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4166 // CATEGORY: SETTINGS
4167 // OS: O DR
4168 BLUETOOTH_PAIRING = 1018;
4169
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004170 // ACTION: Collect PSD Signals
4171 // CATEGORY: SETTINGS
4172 // OS: O DR
4173 ACTION_PSD_LOADER = 1019;
4174
jackqdyulei602bcc92017-06-21 15:17:53 -07004175 // ACTION: Background check action on an app
4176 // CATEGORY: SETTINGS
4177 // OS: O DR
4178 ACTION_APP_BACKGROUND_CHECK = 1020;
4179
4180 // ACTION: Location check action on an app
4181 // CATEGORY: SETTINGS
4182 // OS: O DR
4183 ACTION_APP_LOCATION_CHECK = 1021;
4184
Charlie Wang15a36ed2017-06-14 14:46:39 -07004185 // Device headset status
4186 // CATEGORY: OTHER
4187 // SUBTYPE: 1 is DON, 2 is DOFF
4188 // OS: O DR
4189 ACTION_HEADSET_STATUS = 1022;
4190
4191 // Device Headset Plug status
4192 // CATEGORY: OTHER
4193 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4194 // OS: O DR
4195 ACTION_HEADSET_PLUG = 1023;
4196
4197 // Device Headset battery level on Plug
4198 // CATEGORY: OTHER
4199 // FIELD - The battery percentage when the user decided to plug in
4200 // Type: integer
4201 // OS: O DR
4202 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4203
Charlie Wang566ec702017-06-26 15:30:03 -07004204 // Device Headset battery level on Plug
4205 // CATEGORY: OTHER
4206 // FIELD - The battery percentage when the user decided to plug in
4207 // Type: integer
4208 // OS: O DR
4209 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4210
Charlie Wang15a36ed2017-06-14 14:46:39 -07004211 // Device Headset Pose status
4212 // CATEGORY: OTHER
4213 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4214 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004215 ACTION_HEADSET_POSE_STATUS = 1026;
4216
4217 // Device Headset Usage session time
4218 // CATEGORY: OTHER
4219 // FIELD - The time the headset was used in a session
4220 // OS: O DR
4221 FIELD_SESSION_TIME_MS = 1027;
4222
4223 // Device Headset Idle time
4224 // CATEGORY: OTHER
4225 // FIELD - The time in between each session
4226 // OS: O DR
4227 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4228
4229 // Device Headset charge session time
4230 // CATEGORY: OTHER
4231 // FIELD - The time taken for each charge
4232 // OS: O DR
4233 FIELD_TIME_OF_CHARGE_MS = 1029;
4234
4235 // Device Headset time between charge
4236 // CATEGORY: OTHER
4237 // FIELD - The time in between each charge
4238 // OS: O DR
4239 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004240
Antony Sargentca701a22017-07-05 17:02:00 -07004241 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4242 // -> Forget button.
4243 // CATEGORY: SETTINGS
4244 // OS: O DR
4245 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4246
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004247 // An event from the camera service
4248 // CATEGORY: OTHER
4249 // SUBTYPE: CameraEvent
4250 // OS: O DR
4251 ACTION_CAMERA_EVENT = 1032;
4252
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004253 // OPEN: Settings > Trampoline Intent > Settings page
4254 // CATEGORY: SETTINGS
4255 // OS: O DR
4256 TRAMPOLINE_SETTINGS_EVENT = 1033;
4257
Chris Wren9a4f2662017-06-29 10:10:02 -04004258 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4259
Malcolm Chen21062542017-06-20 11:36:01 -07004260 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4261 // CATEGORY: SETTINGS
4262 // OS: O MR
4263 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4264
4265 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4266 // CATEGORY: SETTINGS
4267 // OS: O MR
4268 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4269
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004270 // FIELD - State of asynchronous ranking when Settings search result is clicked
4271 // CATEGORY: SETTINGS
4272 // OS: O MR
4273 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4274
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004275 // ACTION: Settings > Connected devices > SMS Mirroring
4276 // CATEGORY: SETTINGS
4277 // OS: O MR
4278 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4279
Kang Li2c571892017-07-05 14:47:32 -07004280 // ACTION: Chooser picked a ranked target.
4281 // CATEGORY: GLOBAL_SYSTEM_UI
4282 // OS: O MR
4283 ACTION_TARGET_SELECTED = 1085;
4284
4285 // FIELD - is category used in Chooser: 1.
4286 // Type: int encoded boolean
4287 // CATEGORY: GLOBAL_SYSTEM_UI
4288 // OS: O MR
4289 FIELD_IS_CATEGORY_USED = 1086;
4290
4291 // FIELD - ranked position of selected target for Chooser.
4292 // CATEGORY: GLOBAL_SYSTEM_UI
4293 // OS: O MR
4294 FIELD_RANKED_POSITION = 1087;
4295
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004296 // OPEN: Settings > Data plan usage
4297 // CATEGORY: SETTINGS
4298 // OS: O MR
4299 DATA_PLAN_USAGE_SUMMARY = 1088;
4300
Doris Ling2b5f30c2017-08-08 13:03:41 -07004301 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4302 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4303
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004304 // ACTION: Logged when the app has notified that it has fully drawn. See
4305 // Activity.reportFullyDrawn().
4306 APP_TRANSITION_REPORTED_DRAWN = 1090;
4307
4308 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4309 // the app transition.
4310 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4311
Daniel Nishi4325c182017-08-23 10:27:08 -07004312 // OPEN: Settings > Storage > Photos & Videos
4313 // CATEGORY: SETTINGS
4314 // OS: O MR
4315 APPLICATIONS_STORAGE_PHOTOS = 1092;
4316
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004317 // ACTION: Logged when the status bar icons change.
4318 // OS: O MR
4319 STATUS_BAR_ICONS_CHANGED = 1093;
4320
4321 // FIELD: Bitfield indicating which icons are shown.
4322 // OS: O MR
4323 FIELD_STATUS_ICONS = 1094;
4324
4325 // FIELD: Number of status icons currently shown.
4326 // OS: O MR
4327 FIELD_NUM_STATUS_ICONS = 1095;
4328
Jack He47d881a2017-08-30 19:24:37 -07004329 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4330 // CATEGORY: SETTINGS
4331 // OS: O MR
4332 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
4333
Soroosh Mariooryad652c4322017-09-07 08:45:18 -07004334 // FIELD - Whether smart suggestion ranking was enabled or not
4335 // Type: int encoded boolean
4336 // CATEGORY: SETTINGS
4337 // OS: O MR
4338 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4339
James Hawkins45248762017-09-12 13:16:03 -07004340 // ACTION: The device boots
4341 ACTION_BOOT = 1098;
4342
4343 // FIELD: A string value representing some state of the platform, e.g., boot reason
4344 FIELD_PLATFORM_REASON = 1099;
4345
Jan Althaus019389a2017-09-14 17:52:23 +02004346 // CATEGORY: The category for all actions relating to selection session logging.
4347 // OS: O MR
4348 TEXT_SELECTION_SESSION = 1100;
4349
4350 // ACTION: A selection session started (i.e. the selection handles appeared)
4351 // CATEGORY: TEXT_SELECTION_SESSION
4352 // OS: O MR
4353 ACTION_TEXT_SELECTION_START = 1101;
4354
4355 // ACTION: The user modified the selection (e.g. by dragging the handles)
4356 // CATEGORY: TEXT_SELECTION_SESSION
4357 // OS: O MR
4358 ACTION_TEXT_SELECTION_MODIFY = 1102;
4359
4360 // ACTION: The user modified the selection by pressing the "select all" button.
4361 // CATEGORY: TEXT_SELECTION_SESSION
4362 // OS: O MR
4363 ACTION_TEXT_SELECTION_SELECT_ALL = 1103;
4364
4365 // ACTION: The user modified the selection by pressing on a word in a multi word selection
4366 // CATEGORY: TEXT_SELECTION_SESSION
4367 // OS: O MR
4368 ACTION_TEXT_SELECTION_RESET = 1104;
4369
4370 // ACTION: Smart selection made a single word prediction
4371 // CATEGORY: TEXT_SELECTION_SESSION
4372 // OS: O MR
4373 ACTION_TEXT_SELECTION_SMART_SINGLE = 1105;
4374
4375 // ACTION: Smart selection made a multi word prediction
4376 // CATEGORY: TEXT_SELECTION_SESSION
4377 // OS: O MR
4378 ACTION_TEXT_SELECTION_SMART_MULTI = 1106;
4379
4380 // ACTION: The app made an automatic selection on the user's behalf (not smart selection)
4381 // CATEGORY: TEXT_SELECTION_SESSION
4382 // OS: O MR
4383 ACTION_TEXT_SELECTION_AUTO = 1107;
4384
4385 // ACTION: A selection session ended with the user typing over the text
4386 // CATEGORY: TEXT_SELECTION_SESSION
4387 // OS: O MR
4388 ACTION_TEXT_SELECTION_OVERTYPE = 1108;
4389
4390 // ACTION: A selection session ended with the user copying the text
4391 // CATEGORY: TEXT_SELECTION_SESSION
4392 // OS: O MR
4393 ACTION_TEXT_SELECTION_COPY = 1109;
4394
4395 // ACTION: A selection session ended with the user pasting over the text
4396 // CATEGORY: TEXT_SELECTION_SESSION
4397 // OS: O MR
4398 ACTION_TEXT_SELECTION_PASTE = 1110;
4399
4400 // ACTION: A selection session ended with the user cutting the text
4401 // CATEGORY: TEXT_SELECTION_SESSION
4402 // OS: O MR
4403 ACTION_TEXT_SELECTION_CUT = 1111;
4404
4405 // ACTION: A selection session ended with the user pressing the share button
4406 // CATEGORY: TEXT_SELECTION_SESSION
4407 // OS: O MR
4408 ACTION_TEXT_SELECTION_SHARE = 1112;
4409
4410 // ACTION: A selection session ended with the user pressing the smart share button
4411 // CATEGORY: TEXT_SELECTION_SESSION
4412 // OS: O MR
4413 ACTION_TEXT_SELECTION_SMART_SHARE = 1113;
4414
4415 // ACTION: A selection session ended with the user dragging the text
4416 // CATEGORY: TEXT_SELECTION_SESSION
4417 // OS: O MR
4418 ACTION_TEXT_SELECTION_DRAG = 1114;
4419
4420 // ACTION: A selection session ended with the user abandoning the selection
4421 // CATEGORY: TEXT_SELECTION_SESSION
4422 // OS: O MR
4423 ACTION_TEXT_SELECTION_ABANDON = 1115;
4424
4425 // ACTION: A selection session ended with the user picking an unhandled action bar item
4426 // CATEGORY: TEXT_SELECTION_SESSION
4427 // OS: O MR
4428 ACTION_TEXT_SELECTION_OTHER = 1116;
4429
4430 // FIELD: Time in milliseconds from the start of the session to this event
4431 // CATEGORY: TEXT_SELECTION_SESSION
4432 // OS: O MR
4433 FIELD_SELECTION_SINCE_START = 1117;
4434
4435 // FIELD: time in milliseconds between the last event in the session and this one
4436 // CATEGORY: TEXT_SELECTION_SESSION
4437 // OS: O MR
4438 FIELD_SELECTION_SINCE_PREVIOUS = 1118;
4439
4440 // FIELD: a random uid for a selection session (lasting from select start to end)
4441 // CATEGORY: TEXT_SELECTION_SESSION
4442 // OS: O MR
4443 FIELD_SELECTION_SESSION_ID = 1119;
4444
4445 // FIELD: the sequence number of the event in the session
4446 // CATEGORY: TEXT_SELECTION_SESSION
4447 // OS: O MR
4448 FIELD_SELECTION_SESSION_INDEX = 1120;
4449
4450 // FIELD: a concatenation of the widget type and ML model version.
4451 // CATEGORY: TEXT_SELECTION_SESSION
4452 // OS: O MR
4453 FIELD_SELECTION_VERSION_TAG = 1121;
4454
4455 // FIELD: text select start offset in words (as defined by the ICU BreakIterator), stored as two
4456 // packed 16bit integers. (start in MSBs, end in LSBs)
4457 // CATEGORY: TEXT_SELECTION_SESSION
4458 // OS: O MR
4459 FIELD_SELECTION_RANGE = 1122;
4460
4461 // FIELD: smart text selection start offset in words (as defined by the ICU BreakIterator),
4462 // stored as two packed 16bit integers. (start in MSBs, end in LSBs)
4463 // CATEGORY: TEXT_SELECTION_SESSION
4464 // OS: O MR
4465 FIELD_SELECTION_SMART_RANGE = 1123;
4466
Felipe Lemeb22d6352017-09-08 20:03:53 -07004467 // The value of an autofillable and savable view was reset
4468 // Package: Package of app that was autofilled
4469 // OS: O MR
4470 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4471 // Tag FIELD_AUTOFILL_PREVIOUS_LENGTH: the previous length of the value
4472 AUTOFILL_VALUE_RESET = 1124;
4473
4474 // Tag of AUTOFILL_VALUE_RESET
4475 // OS: O MR
4476 FIELD_AUTOFILL_PREVIOUS_LENGTH = 1125;
4477
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004478 // An autofill dataset authentication succeeded
Felipe Lemeb22d6352017-09-08 20:03:53 -07004479 // Package: Package of app that was autofilled
4480 // OS: O MR
4481 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4482 AUTOFILL_DATASET_AUTHENTICATED = 1126;
4483
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004484 // An autofill service provided an invalid dataset authentication
Felipe Lemeb22d6352017-09-08 20:03:53 -07004485 // Package: Package of app that was autofilled
4486 // OS: O MR
4487 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4488 AUTOFILL_INVALID_DATASET_AUTHENTICATION = 1127;
4489
Felipe Lemeb4cd6222017-09-26 09:11:32 -07004490 // An autofill service provided an invalid authentication extra
Felipe Lemeb22d6352017-09-08 20:03:53 -07004491 // Package: Package of app that was autofilled
4492 // OS: O MR
4493 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4494 AUTOFILL_INVALID_AUTHENTICATION = 1128;
4495
4496 // An autofill service used a custom description (using RemoteViews) in the Save affordance
4497 // Package: Package of app that is autofilled
4498 // OS: O MR
4499 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4500 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4501 AUTOFILL_SAVE_CUSTOM_DESCRIPTION = 1129;
4502
4503 // FIELD - Type of save object passed by the service when the Save UI is shown
4504 // OS: O MR
4505 FIELD_AUTOFILL_SAVE_TYPE = 1130;
4506
4507 // An autofill service used a custom subtitle (String) in the Save affordance
4508 // Package: Package of app that is autofilled
4509 // OS: O MR
4510 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4511 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4512 AUTOFILL_SAVE_CUSTOM_SUBTITLE = 1131;
4513
4514 // User tapped a link in the custom description of the Save affordance provided by an autofill service
4515 // Package: Package of app that is autofilled
4516 // OS: O MR
4517 // Type TYPE_UNKNOWN: The link was not properly set by the service
4518 // Type TYPE_OPEN: The link launched an activity
4519 // Type TYPE_FAILURE: The link could not launc an activity
4520 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4521 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4522 AUTOFILL_SAVE_LINK_TAPPED = 1132;
4523
4524 // Result of the validation on save when an autofill service provided a validator
4525 // Package: Package of app that is autofilled
4526 // OS: O MR
4527 // Type TYPE_FAILURE: The validation could not be performed due to an error
4528 // Type TYPE_SUCCESS: The validation passed
4529 // Type TYPE_DISMISS: The validation failed
4530 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4531 // Tag FIELD_AUTOFILL_SAVE_TYPE: Type of save object passed by the service
4532 AUTOFILL_SAVE_VALIDATION = 1133;
4533
4534 // Result of an operation in the autofill save affordance after the user tapped a link in the custom description
4535 // provided by the autofill service
4536 // Package: Package of app that is autofilled
4537 // OS: O MR
4538 // Type TYPE_OPEN: The save affordance was restored
4539 // Type TYPE_DISMISS: The save affordcance was destroyed
4540 // Type TYPE_FAILURE: An invalid opperation was reported by the app's AutofillManager
4541 AUTOFILL_PENDING_SAVE_UI_OPERATION = 1134;
4542
Felipe Leme9d414492017-09-20 13:55:28 -07004543 // Autofill service called API that disables itself
4544 // Package: Package of the autofill service
4545 // OS: O MR
4546 AUTOFILL_SERVICE_DISABLED_SELF = 1135;
4547
Felipe Lemeb659adb2018-01-18 15:21:36 -08004548 // Reports how long it took to show the autofill UI after a field was focused
4549 // Tag FIELD_AUTOFILL_DURATION: Duration in ms
Felipe Leme021b8782017-09-22 09:23:02 -07004550 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
4551 // Package: Package of the autofill service
4552 // OS: O MR
4553 AUTOFILL_UI_LATENCY = 1136;
4554
Chris Wren21a2e722017-10-02 17:44:53 -04004555 // Action: the snooze leave-behind was shown after the user clicked the snooze icon
4556 // OS: O MR
4557 NOTIFICATION_SNOOZE_CLICKED = 1137;
4558
4559 // Action: user selected a notification snooze duration from the drop down
4560 // OS: O MR
4561 NOTIFICATION_SELECT_SNOOZE = 1138;
4562
4563 // attached to NOTIFICATION_SNOOZED and NOTIFICATION_SELECT_SNOOZE events
4564 // OS: O MR
4565 FIELD_NOTIFICATION_SNOOZE_DURATION_MS = 1139;
4566
4567 // attached to NOTIFICATION_SELECT_SNOOZE events to indicate the option selected
4568 // OS: O MR
4569 FIELD_NOTIFICATION_SNOOZE_INDEX = 1140;
4570
4571 // Action: user tapped undo on the notification snooze leave-behind
4572 // OS: O MR
4573 NOTIFICATION_UNDO_SNOOZE = 1141;
4574
4575 // Action: user togged the visibility of the notification snooze options drop down
4576 // OS: O MR
4577 NOTIFICATION_SNOOZE_OPTIONS = 1142;
4578
Romain Guy62e8c172017-10-24 21:37:34 +01004579 // OPEN: Settings > Display > Colors
4580 // CATEGORY: SETTINGS
4581 // OS: O MR
4582 COLOR_MODE_SETTINGS = 1143;
4583
Jorim Jaggia9d40822017-10-20 14:33:18 +02004584 // Enclosing category for group of APP_TRANSITION_FOO events,
4585 // logged when we cancel an app transition.
4586 APP_TRANSITION_CANCELLED = 1144;
4587
Felipe Lemeb659adb2018-01-18 15:21:36 -08004588 // Tag of a field representing a duration on autofill-related metrics.
4589 FIELD_AUTOFILL_DURATION = 1145;
4590
James Hawkins45248762017-09-12 13:16:03 -07004591 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4592
Malcolm Chen917b51f2017-07-25 15:48:44 -07004593 // OPEN: Settings > Network & Internet > Mobile network
4594 // CATEGORY: SETTINGS
4595 SETTINGS_MOBILE_NETWORK_CATEGORY = 1200;
4596
4597 // ACTION: Settings > Network & Internet > Mobile network > Roaming
4598 // CATEGORY: SETTINGS
4599 ACTION_MOBILE_NETWORK_DATA_ROAMING_TOGGLE = 1201;
4600
4601 // ACTION: Settings > Network & Internet > Mobile network > Advanced
4602 // CATEGORY: SETTINGS
4603 ACTION_MOBILE_NETWORK_EXPAND_ADVANCED_FIELDS = 1202;
4604
4605 // ACTION: Settings > Network & Internet > Mobile network > Enhanced 4G LTE Mode
4606 // CATEGORY: SETTINGS
4607 ACTION_MOBILE_ENHANCED_4G_LTE_MODE_TOGGLE = 1203;
4608
4609 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type
4610 // CATEGORY: SETTINGS
4611 ACTION_MOBILE_NETWORK_SELECT_PREFERRED_NETWORK = 1204;
4612
4613 // ACTION: Settings > Network & Internet > Mobile network > Preferred network type (enabled networks)
4614 // CATEGORY: SETTINGS
4615 ACTION_MOBILE_NETWORK_SELECT_ENABLED_NETWORK = 1205;
4616
4617 // OPEN: Settings > Network & Internet > Mobile network > Carrier
4618 // CATEGORY: SETTINGS
4619 ACTION_MOBILE_NETWORK_EUICC_SETTING = 1206;
4620
4621 // OPEN: Settings > Network & Internet > Mobile network > Wi-Fi calling
4622 // CATEGORY: SETTINGS
4623 ACTION_MOBILE_NETWORK_WIFI_CALLING = 1207;
4624
4625 // ACTION: Settings > Network & Internet > Mobile network > Carrier video calling
4626 // CATEGORY: SETTINGS
4627 ACTION_MOBILE_NETWORK_VIDEO_CALLING_TOGGLE = 1208;
4628
4629 // ACTION: Settings > Network & Internet > Mobile network > Automatically select network
4630 // CATEGORY: SETTINGS
4631 ACTION_MOBILE_NETWORK_AUTO_SELECT_NETWORK_TOGGLE = 1209;
4632
4633 // ACTION: Settings > Network & Internet > Mobile network > Network
4634 // CATEGORY: SETTINGS
4635 ACTION_MOBILE_NETWORK_MANUAL_SELECT_NETWORK = 1210;
4636
4637 // FIELD - Manually selected mobile network
4638 FIELD_MOBILE_NETWORK = 1211;
4639
4640 // OPEN: Settings > Network & Internet > Mobile network > Access Point Names
4641 // CATEGORY: SETTINGS
4642 ACTION_MOBILE_NETWORK_APN_SETTINGS = 1212;
4643
4644 // OPEN: Settings > Network & Internet > Mobile network > Carrier settings
4645 // CATEGORY: SETTINGS
4646 ACTION_MOBILE_NETWORK_CARRIER_SETTINGS = 1213;
4647
4648 // OPEN: Settings > Network & Internet > Mobile network > System select
4649 // CATEGORY: SETTINGS
4650 ACTION_MOBILE_NETWORK_CDMA_SYSTEM_SELECT = 1214;
4651
4652 // OPEN: Settings > Network & Internet > Mobile network > CDMA subscription
4653 // CATEGORY: SETTINGS
4654 ACTION_MOBILE_NETWORK_CDMA_SUBSCRIPTION_SELECT = 1215;
4655
4656 // ACTION: Settings > Network & Internet > Mobile network > Set up data service
4657 // CATEGORY: SETTINGS
4658 ACTION_MOBILE_NETWORK_SET_UP_DATA_SERVICE = 1216;
4659
Adrian Roos159ef7b2016-02-25 11:58:32 -08004660 // Add new aosp constants above this line.
4661 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004662 }
4663}