blob: 484129966d5e283139444533ff55bd16990d28ba [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
36 // The view switched to detail mode (most relevant for quick settings tiles)
37 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;
Chris Wren5e334f62016-11-14 10:16:21 -050065 }
66
Chris Wren65f07fe2017-03-14 14:10:37 -040067 // Types of alerts, as bit field values
68 enum Alert {
69 // Vibrate the device.
70 ALERT_BUZZ = 1;
71
72 // Make sound through the speaker.
73 ALERT_BEEP = 2;
74
75 // Flash a notificaiton light.
76 ALERT_BLINK = 4;
77 }
78
79 // Reasons that a notification might be dismissed.
80 enum DismissReason {
81 // from android.service.notification.NotificationListenerService
82
83 // Notification was canceled by the status bar reporting a notification click
84 REASON_CLICK = 1;
85
86 // Notification was canceled by the status bar reporting a user dismissal.
87 REASON_CANCEL = 2;
88
89 // Notification was canceled by the status bar reporting a user dismiss all.
90 REASON_CANCEL_ALL = 3;
91
92 // Notification was canceled by the status bar reporting an inflation error.
93 REASON_ERROR = 4;
94
95 // Notification was canceled by the package manager modifying the package.
96 REASON_PACKAGE_CHANGED = 5;
97
98 // Notification was canceled by the owning user context being stopped.
99 REASON_USER_STOPPED = 6;
100
101 // Notification was canceled by the user banning the package.
102 REASON_PACKAGE_BANNED = 7;
103
104 // Notification was canceled by the app canceling this specific notification.
105 REASON_APP_CANCEL = 8;
106
107 //Notification was canceled by the app cancelling all its notifications.
108 REASON_APP_CANCEL_ALL = 9;
109
110 // Notification was canceled by a listener reporting a user dismissal.
111 REASON_LISTENER_CANCEL = 10;
112
113 //Notification was canceled by a listener reporting a user dismiss all.
114 REASON_LISTENER_CANCEL_ALL = 11;
115
116 // Notification was canceled because it was a member of a canceled group.
117 REASON_GROUP_SUMMARY_CANCELED = 12;
118
119 // Notification was canceled because it was an invisible member of a group.
120 REASON_GROUP_OPTIMIZATION = 13;
121
122 // Notification was canceled by the device administrator suspending the package.
123 REASON_PACKAGE_SUSPENDED = 14;
124
125 // Notification was canceled by the owning managed profile being turned off.
126 REASON_PROFILE_TURNED_OFF = 15;
127
128 // Autobundled summary notification was canceled because its group was unbundled.
129 REASON_UNAUTOBUNDLED = 16;
130
131 // Notification was canceled by the user banning the channel.
132 REASON_CHANNEL_BANNED = 17;
133
134 // Notification was snoozed.
135 REASON_SNOOZED = 18;
136
137 // Notification was canceled due to timeout.
138 REASON_TIMEOUT = 19;
139 }
140
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700141 // Subtypes of camera events for ACTION_CAMERA_EVENT
142 enum CameraEvent {
143 // A back-facing camera was used
144 CAMERA_BACK_USED = 0;
145
146 // A front-facing camera was used
147 CAMERA_FRONT_USED = 1;
148
149 // An external camera was used
150 CAMERA_EXTERNAL_USED = 2;
151 }
152
Chris Wren77781d32016-01-11 14:49:26 -0500153 // Known visual elements: views or controls.
154 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500155 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500156 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500157
158 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500159 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500160
161 // OPEN: Settings > Accessibility
162 // CATEGORY: SETTINGS
163 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500164 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500165
166 // OPEN: Settings > Accessibility > Captions
167 // CATEGORY: SETTINGS
168 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500169 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500170
171 // OPEN: Settings > Accessibility > [Service]
172 // CATEGORY: SETTINGS
173 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500174 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500175
176 // OPEN: Settings > Accessibility > Color correction
177 // CATEGORY: SETTINGS
178 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500179 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500180
181 // OPEN: Settings > Accessibility > Accessibility shortcut
182 // CATEGORY: SETTINGS
183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500184 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500185
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700186 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
187 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
188 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500189 // CATEGORY: SETTINGS
190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500191 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500192
193 // OPEN: Settings > Accounts
194 // CATEGORY: SETTINGS
195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500196 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500197
198 // OPEN: Settings > Accounts > [Single Account Sync Settings]
199 // CATEGORY: SETTINGS
200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500201 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500202
203 // OPEN: Settings > Accounts > Add an account
204 // CATEGORY: SETTINGS
205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500206 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500207
208 // OPEN: Settings > Accounts > [List of accounts when more than one]
209 // CATEGORY: SETTINGS
210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500211 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500212
213 // OPEN: Settings > Cellular network settings > APNs
214 // CATEGORY: SETTINGS
215 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500216 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500217
218 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
219 // CATEGORY: SETTINGS
220 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500221 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500222
223 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500224 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500225
226 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500227 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500230 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500231
232 // OPEN: Settings > Apps > Configure apps > App links > [App]
233 // CATEGORY: SETTINGS
234 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500235 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500236
237 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500238 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500239
240 // OPEN: Settings > Internal storage > Apps storage > [App]
241 // CATEGORY: SETTINGS
242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500243 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500244
245 // OPEN: Settings > Apps > [App info]
246 // CATEGORY: SETTINGS
247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500248 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500249
250 // OPEN: Settings > Memory > App usage > [App Memory usage]
251 // CATEGORY: SETTINGS
252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500253 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500254
255 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500256 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > Memory > App usage
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OPEN: Settings > Bluetooth
264 // CATEGORY: SETTINGS
265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500266 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500267
268 // OPEN: Choose Bluetooth device (ex: when sharing)
269 // CATEGORY: SETTINGS
270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500271 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500274 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Security > Choose screen lock
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OPEN: Settings > Security > Choose screen lock > Choose your password
282 // CATEGORY: SETTINGS
283 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500284 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500285
286 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
287 // CATEGORY: SETTINGS
288 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500289 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OPEN: Settings > Security > Choose screen lock > Confirm your password
292 // CATEGORY: SETTINGS
293 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500294 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500295
296 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
297 // CATEGORY: SETTINGS
298 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500299 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500300
301 // OPEN: Settings > Security > Encrypt phone
302 // CATEGORY: SETTINGS
303 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500304 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500305
306 // OPEN: Settings > Security > Encrypt phone > Confirm
307 // CATEGORY: SETTINGS
308 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500309 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500310
311 // OPEN: Settings > Search results
312 // CATEGORY: SETTINGS
313 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500314 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500315
316 // OPEN: Settings (Root page)
317 // CATEGORY: SETTINGS
318 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500319 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500320
321 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500322 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Data usage
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OPEN: Settings > Date & time
330 // CATEGORY: SETTINGS
331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500332 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500333
334 // OPEN: Settings > Developer options
335 // CATEGORY: SETTINGS
336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500337 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500338
339 // OPEN: Settings > About phone
340 // CATEGORY: SETTINGS
341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500342 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500343
344 // OPEN: Settings > About phone > Status > IMEI information
345 // CATEGORY: SETTINGS
346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500347 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500348
349 // OPEN: Settings > Internal storage
350 // CATEGORY: SETTINGS
351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500352 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OPEN: Settings > About phone > Status > SIM status
355 // CATEGORY: SETTINGS
356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500357 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500358
359 // OPEN: Settings > About phone > Status
360 // CATEGORY: SETTINGS
361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500362 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500363
364 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500365 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > Display
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > Display > Daydream
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > Security > Screen lock > Secure start-up
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OPEN: Settings > Security > Nexus Imprint
383 // CATEGORY: SETTINGS
384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500385 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500388 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500389
390 // OPEN: Settings > Battery > History details
391 // CATEGORY: SETTINGS
392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500393 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500394
395 // OPEN: Settings > Battery > Battery saver
396 // CATEGORY: SETTINGS
397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500398 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500399
400 // OPEN: Settings > Battery > [App Use details]
401 // CATEGORY: SETTINGS
402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500403 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > Battery
406 // CATEGORY: SETTINGS
407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500408 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500409
410 // OPEN: Settings > Home
411 // CATEGORY: SETTINGS
412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500413 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500414
415 // OPEN: Settings > Security > SIM card lock settings
416 // CATEGORY: SETTINGS
417 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500418 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500419
420 // OPEN: Settings > Language & input
421 // CATEGORY: SETTINGS
422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500423 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500424
425 // OPEN: Settings > Language & input > Physical keyboard
426 // CATEGORY: SETTINGS
427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500428 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500429
430 // OPEN: Settings > Language & input > Spell checker
431 // CATEGORY: SETTINGS
432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500433 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500436 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Language & input > Personal dictionary
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OPEN: Settings > Language & input > Add word
444 // CATEGORY: SETTINGS
445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500446 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500447
448 // OPEN: Settings > Location
449 // CATEGORY: SETTINGS
450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500451 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Settings > Location > Location mode
454 // CATEGORY: SETTINGS
455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500456 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500457
458 // OPEN: Settings > Apps
459 // CATEGORY: SETTINGS
460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500461 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500462
463 // OPEN: Settings > Backup & reset > Factory data reset
464 // CATEGORY: SETTINGS
465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500466 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500467
468 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
469 // CATEGORY: SETTINGS
470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500471 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500472
473 // OPEN: Settings > Data usage > Network restrictions
474 // CATEGORY: SETTINGS
475 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500476 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500477
478 // OPEN: Settings > More > Android Beam
479 // CATEGORY: SETTINGS
480 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500481 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500482
483 // OPEN: Settings > Tap & pay
484 // CATEGORY: SETTINGS
485 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500486 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500487
488 // OPEN: Settings > Sound & notification
489 // CATEGORY: SETTINGS
490 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500491 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > Sound & notification > App notifications > [App]
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OPEN: Settings > Sound & notification > Other sounds
499 // CATEGORY: SETTINGS
500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500501 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500502
503 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500504 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings Widget > Notification log
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OPEN: Settings > Sound & notification > Do not disturb
512 // CATEGORY: SETTINGS
513 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500514 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500517 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500518
519 // OPEN: Print job notification > Print job settings
520 // CATEGORY: SETTINGS
521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500522 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500523
524 // OPEN: Settings > Printing > [Print Service]
525 // CATEGORY: SETTINGS
526 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500527 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500528
529 // OPEN: Settings > Printing
530 // CATEGORY: SETTINGS
531 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500532 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OPEN: Settings > Backup & reset
535 // CATEGORY: SETTINGS
536 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500537 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500538
539 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500540 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500541
542 // OPEN: Settings > Backup & reset > Network settings reset
543 // CATEGORY: SETTINGS
544 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500545 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
548 // CATEGORY: SETTINGS
549 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500550 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500551
552 // OPEN: Settings > Developer Options > Running Services
553 // CATEGORY: SETTINGS
554 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500555 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500556
557 // OPEN: Settings > Security > Screen pinning
558 // CATEGORY: SETTINGS
559 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500560 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500561
562 // OPEN: Settings > Security
563 // CATEGORY: SETTINGS
564 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500565 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 // OPEN: Settings > SIM cards
568 // CATEGORY: SETTINGS
569 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500570 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500571
572 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500573 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > More > Tethering & portable hotspot
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: Settings > Security > Trust agents
581 // CATEGORY: SETTINGS
582 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500583 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500584
585 // OPEN: Settings > Security > Trusted credentials
586 // CATEGORY: SETTINGS
587 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500588 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500589
590 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
591 // CATEGORY: SETTINGS
592 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500593 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500594
595 // OPEN: Settings > Language & input > Text-to-speech output
596 // CATEGORY: SETTINGS
597 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500598 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OPEN: Settings > Security > Apps with usage access
601 // CATEGORY: SETTINGS
602 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500603 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500604
605 // OPEN: Settings > Users
606 // CATEGORY: SETTINGS
607 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500608 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500609
610 // OPEN: Settings > Users > [Restricted profile app & content access]
611 // CATEGORY: SETTINGS
612 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500613 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500614
615 // OPEN: Settings > Users > [User settings]
616 // CATEGORY: SETTINGS
617 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500618 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500619
620 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500621 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: Settings > More > VPN
624 // CATEGORY: SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OPEN: Settings > Display > Choose wallpaper from
629 // CATEGORY: SETTINGS
630 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500631 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500632
633 // OPEN: Settings > Display > Cast
634 // CATEGORY: SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: Settings > Wi-Fi
639 // CATEGORY: SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
644 // CATEGORY: SETTINGS
645 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500646 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Settings > More > Wi-Fi Calling
649 // CATEGORY: SETTINGS
650 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500651 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500652
653 // OPEN: Settings > Wi-Fi > Saved networks
654 // CATEGORY: SETTINGS
655 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500656 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500659 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500662 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500663
664 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
665 // CATEGORY: SETTINGS
666 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500667 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500668
669 // OPEN: Settings > More
670 // CATEGORY: SETTINGS
671 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500672 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500673
674 // OPEN: Quick Settings Panel
675 // CATEGORY: QUICK_SETTINGS
676 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500677 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500678
679 // OPEN: QS Airplane mode tile shown
680 // ACTION: QS Airplane mode tile tapped
681 // SUBTYPE: 0 is off, 1 is on
682 // CATEGORY: QUICK_SETTINGS
683 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500684 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: QS Bluetooth tile shown
687 // ACTION: QS Bluetooth tile tapped
688 // SUBTYPE: 0 is off, 1 is on
689 // CATEGORY: QUICK_SETTINGS
690 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500691 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500692
693 // OPEN: QS Cast tile shown
694 // ACTION: QS Cast tile tapped
695 // CATEGORY: QUICK_SETTINGS
696 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500697 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500698
699 // OPEN: QS Cellular tile shown
700 // ACTION: QS Cellular tile tapped
701 // CATEGORY: QUICK_SETTINGS
702 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500703 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // OPEN: QS Color inversion tile shown
706 // ACTION: QS Color inversion tile tapped
707 // SUBTYPE: 0 is off, 1 is on
708 // CATEGORY: QUICK_SETTINGS
709 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500710 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500711
712 // OPEN: QS Cellular tile > Cellular detail panel
713 // CATEGORY: QUICK_SETTINGS
714 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500715 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: QS Do not disturb tile shown
718 // ACTION: QS Do not disturb tile tapped
719 // SUBTYPE: 0 is off, 1 is on
720 // CATEGORY: QUICK_SETTINGS
721 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500722 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OPEN: QS Flashlight tile shown
725 // ACTION: QS Flashlight tile tapped
726 // SUBTYPE: 0 is off, 1 is on
727 // CATEGORY: QUICK_SETTINGS
728 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500729 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500730
731 // OPEN: QS Hotspot tile shown
732 // ACTION: QS Hotspot tile tapped
733 // SUBTYPE: 0 is off, 1 is on
734 // CATEGORY: QUICK_SETTINGS
735 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500736 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500737
738 // OPEN: QS 3P tile shown
739 // ACTION: QS 3P tile tapped
740 // CATEGORY: QUICK_SETTINGS
741 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500742 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500743
744 // OPEN: QS Location tile shown
745 // ACTION: QS Location tile tapped
746 // SUBTYPE: 0 is off, 1 is on
747 // CATEGORY: QUICK_SETTINGS
748 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500749 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500750
751 // OPEN: QS Rotation tile shown
752 // ACTION: QS Rotation tile tapped
753 // SUBTYPE: 0 is off, 1 is on
754 // CATEGORY: QUICK_SETTINGS
755 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500756 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500757
758 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500759 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OPEN: QS User list panel
762 // CATEGORY: QUICK_SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: QS WiFi tile shown
767 // ACTION: QS WiFi tile tapped
768 // SUBTYPE: 0 is off, 1 is on
769 // CATEGORY: QUICK_SETTINGS
770 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500771 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500772
773 // OPEN: Notification Panel (including lockscreen)
774 // CATEGORY: NOTIFICATION
775 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500776 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500777
778 // OPEN: Notification in panel became visible.
779 // PACKAGE: App that posted the notification.
780 // ACTION: Notification is tapped.
781 // PACKAGE: App that posted the notification
782 // DETAIL: Notification is expanded by user.
783 // PACKAGE: App that posted the notification
784 // DISMISS: Notification is dismissed.
785 // PACKAGE: App that posted the notification
786 // SUBTYPE: Dismiss reason from NotificationManagerService.java
787 // CATEGORY: NOTIFICATION
788 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500789 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500790
791 // ACTION: User tapped notification action
792 // PACKAGE: App that posted the notification
793 // SUBTYPE: Index of action on notification
794 // CATEGORY: NOTIFICATION
795 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500796 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500797
798 // OPEN: Settings > Apps > Configure apps > App permissions
799 // CATEGORY: SETTINGS
800 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500801 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500802
803 // OPEN: Settings > Location > Scanning
804 // CATEGORY: SETTINGS
805 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500806 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500807
808 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500809 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500810
811 // OPEN: Settings > Sound & notification > App notifications
812 // CATEGORY: SETTINGS
813 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500814 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500815
816 // ACTION: Settings > Wi-Fi > Overflow > Add Network
817 // CATEGORY: SETTINGS
818 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500819 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500820
821 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700822 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500823 // CATEGORY: SETTINGS
824 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500825 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500826
827 // ACTION: Settings > Wi-Fi > Overflow > Refresh
828 // CATEGORY: SETTINGS
829 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500830 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500831
832 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
833 // CATEGORY: SETTINGS
834 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500835 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500836
837 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700838 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500839 // CATEGORY: SETTINGS
840 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500841 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500842
843 // ACTION: Settings > Wi-Fi > Toggle on
844 // CATEGORY: SETTINGS
845 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500846 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500849 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500850
851 // OPEN: Settings > Sound & notification > DND > Priority only allows
852 // CATEGORY: SETTINGS
853 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500854 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // OPEN: Settings > Sound & notification > DND > Automatic rules
857 // CATEGORY: SETTINGS
858 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500859 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500860
861 // OPEN: Settings > Apps > Configure apps > App links
862 // CATEGORY: SETTINGS
863 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500864 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500865
866 // OPEN: Settings > Sound & notification > DND > [Time based rule]
867 // CATEGORY: SETTINGS
868 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500869 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500870
871 // OPEN: Settings > Sound & notification > DND > [External rule]
872 // CATEGORY: SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // OPEN: Settings > Sound & notification > DND > [Event rule]
877 // CATEGORY: SETTINGS
878 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500879 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500880
881 // ACTION: App notification settings > Block Notifications
882 // CATEGORY: SETTINGS
883 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500884 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500885
886 // ACTION: Notification shade > Dismiss all button
887 // CATEGORY: NOTIFICATION
888 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500889 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500890
891 // OPEN: QS Do Not Disturb detail panel
892 // CATEGORY: QUICK_SETTINGS
893 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500894 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500895
896 // OPEN: QS Bluetooth detail panel
897 // CATEGORY: QUICK_SETTINGS
898 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500899 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500900
901 // OPEN: QS Cast detail panel
902 // CATEGORY: QUICK_SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // OPEN: QS Wi-Fi detail panel
907 // CATEGORY: QUICK_SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
912 // SUBTYPE: 0 is off, 1 is on
913 // CATEGORY: QUICK_SETTINGS
914 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500915 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
918 // SUBTYPE: 0 is off, 1 is on
919 // CATEGORY: QUICK_SETTINGS
920 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500921 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500922
923 // ACTION: QS Cellular detail panel > Cellular toggle
924 // SUBTYPE: 0 is off, 1 is on
925 // CATEGORY: QUICK_SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // ACTION: QS User list panel > Select different user
930 // CATEGORY: QUICK_SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // ACTION: QS Cast detail panel > Select cast device
935 // CATEGORY: QUICK_SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // ACTION: QS Cast detail panel > Disconnect cast device
940 // CATEGORY: QUICK_SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: Settings > Bluetooth > Toggle
945 // SUBTYPE: 0 is off, 1 is on
946 // CATEGORY: SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: Settings > Bluetooth > Overflow > Refresh
951 // CATEGORY: SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // ACTION: Settings > Bluetooth > Overflow > Rename this device
956 // CATEGORY: SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // ACTION: Settings > Bluetooth > Overflow > Show received files
961 // CATEGORY: SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // ACTION: QS DND details panel > Increase / Decrease exit time
966 // SUBTYPE: true is increase, false is decrease
967 // CATEGORY: QUICK_SETTINGS
968 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500969 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500970
971 // ACTION: QS DND details panel > [Exit condition]
972 // CATEGORY: QUICK_SETTINGS
973 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500974 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500975
976 // ACTION: QS DND details panel > [DND mode]
977 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
978 // CATEGORY: QUICK_SETTINGS
979 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500980 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // ACTION: QS DND detail panel > DND toggle
983 // SUBTYPE: 0 is off, 1 is on
984 // CATEGORY: QUICK_SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // ACTION: DND Settings > Priority only allows > Reminder toggle
989 // SUBTYPE: 0 is off, 1 is on
990 // CATEGORY: SETTINGS
991 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500992 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: DND Settings > Priority only allows > Event toggle
995 // SUBTYPE: 0 is off, 1 is on
996 // CATEGORY: SETTINGS
997 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500998 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500999
1000 // ACTION: DND Settings > Priority only allows > Messages
1001 // SUBTYPE: 0 is off, 1 is on
1002 // CATEGORY: SETTINGS
1003 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001004 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // ACTION: DND Settings > Priority only allows > Calls
1007 // SUBTYPE: 0 is off, 1 is on
1008 // CATEGORY: SETTINGS
1009 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001010 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001011
1012 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1013 // SUBTYPE: 0 is off, 1 is on
1014 // CATEGORY: SETTINGS
1015 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: DND Settings > Automatic rules > Add rule
1019 // CATEGORY: SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: DND Settings > Automatic rules > Add rule > OK
1024 // CATEGORY: SETTINGS
1025 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1029 // CATEGORY: SETTINGS
1030 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001031 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001032
1033 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1034 // CATEGORY: SETTINGS
1035 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001036 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001037
1038 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1039 // SUBTYPE: 0 is off, 1 is on
1040 // CATEGORY: SETTINGS
1041 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001042 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // ACTION: Settings > More > Airplane mode toggle
1045 // SUBTYPE: 0 is off, 1 is on
1046 // CATEGORY: SETTINGS
1047 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001048 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // ACTION: Settings > Data usage > Cellular data toggle
1051 // SUBTYPE: 0 is off, 1 is on
1052 // CATEGORY: SETTINGS
1053 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001054 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // OPEN: Settings > Sound & notification > Notification access
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // OPEN: Settings > Sound & notification > Do Not Disturb access
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001064 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001065
1066 // OPEN: Settings > Apps > Configure apps > Default Apps
1067 // CATEGORY: SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // OPEN: Settings > Internal storage > Apps storage
1072 // CATEGORY: SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // OPEN: Settings > Security > Usage access
1077 // CATEGORY: SETTINGS
1078 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001079 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // OPEN: Settings > Battery > Battery optimization
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001087 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // ACTION: Lockscreen > Unlock gesture
1090 // CATEGORY: GLOBAL_SYSTEM_UI
1091 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001092 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // ACTION: Lockscreen > Pull shade open
1095 // CATEGORY: GLOBAL_SYSTEM_UI
1096 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001097 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // ACTION: Lockscreen > Tap on lock, shows hint
1100 // CATEGORY: GLOBAL_SYSTEM_UI
1101 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001102 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001103
1104 // ACTION: Lockscreen > Camera
1105 // CATEGORY: GLOBAL_SYSTEM_UI
1106 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001107 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001108
1109 // ACTION: Lockscreen > Dialer
1110 // CATEGORY: GLOBAL_SYSTEM_UI
1111 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001112 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001113
1114 // ACTION: Lockscreen > Tap on lock, locks phone
1115 // CATEGORY: GLOBAL_SYSTEM_UI
1116 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // ACTION: Lockscreen > Tap on notification, false touch rejection
1120 // CATEGORY: GLOBAL_SYSTEM_UI
1121 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001122 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // ACTION: Lockscreen > Swipe down to open quick settings
1125 // CATEGORY: GLOBAL_SYSTEM_UI
1126 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001127 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001128
1129 // ACTION: Swipe down to open quick settings when unlocked
1130 // CATEGORY: GLOBAL_SYSTEM_UI
1131 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001132 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001133
1134 // ACTION: Notification shade > Tap to open quick settings
1135 // CATEGORY: GLOBAL_SYSTEM_UI
1136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001137 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001138
1139 // OPEN: Lockscreen
1140 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1141 // CATEGORY: GLOBAL_SYSTEM_UI
1142 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001143 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1146 // CATEGORY: GLOBAL_SYSTEM_UI
1147 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001148 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // OPEN: Screen turned on
1151 // SUBTYPE: 2 is user action
1152 // CATEGORY: GLOBAL_SYSTEM_UI
1153 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001154 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // OPEN: Notification caused sound, vibration, and/or LED blink
1157 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1158 // CATEGORY: NOTIFICATION
1159 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001160 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Lockscreen > Emergency Call button
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001165 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1168 // CATEGORY: SETTINGS
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // OPEN: Settings > Memory
1173 // CATEGORY: SETTINGS
1174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001175 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // ACTION: Settings > Display > When device is rotated
1178 // CATEGORY: SETTINGS
1179 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001180 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001181
1182 // ACTION: Long press on notification to view controls
1183 // CATEGORY: NOTIFICATION
1184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001185 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // ACTION: Notificatoin controls > Info button
1188 // CATEGORY: NOTIFICATION
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // ACTION: Notification controls > Settings button
1193 // CATEGORY: NOTIFICATION
1194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001195 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001196
1197 // OPEN: Volume Dialog (with hardware buttons)
1198 // CATEGORY: GLOBAL_SYSTEM_UI
1199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001200 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1203 // CATEGORY: GLOBAL_SYSTEM_UI
1204 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001205 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001206
1207 // ACTION: Volume dialog > Adjust volume slider
1208 // SUBTYPE: volume level (0-7)
1209 // CATEGORY: GLOBAL_SYSTEM_UI
1210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001211 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // ACTION: Volume dialog > Select non-active stream
1214 // SUBTYPE: stream (defined in AudioSystem.java)
1215 // CATEGORY: GLOBAL_SYSTEM_UI
1216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001217 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // ACTION: Adjust volume with hardware key
1220 // SUBTYPE: volume level (0-7)
1221 // CATEGORY: GLOBAL_SYSTEM_UI
1222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001223 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Volume dialog > Mute a stream by tapping icon
1226 // SUBTYPE: mute is 1, audible is 2
1227 // CATEGORY: GLOBAL_SYSTEM_UI
1228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001229 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // ACTION: Volume dialog > Change ringer mode by tapping icon
1232 // SUBTYPE: 2 is audible, 3 is vibrate
1233 // CATEGORY: GLOBAL_SYSTEM_UI
1234 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001235 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001236
1237 // ACTION: Chooser shown (share target, file open, etc.)
1238 // CATEGORY: GLOBAL_SYSTEM_UI
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Chooser > User taps an app target
1243 // SUBTYPE: Index of target
1244 // CATEGORY: GLOBAL_SYSTEM_UI
1245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001246 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001247
1248 // ACTION: Chooser > User taps a service target
1249 // SUBTYPE: Index of target
1250 // CATEGORY: GLOBAL_SYSTEM_UI
1251 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001252 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001253
1254 // ACTION: Chooser > User taps a standard target
1255 // SUBTYPE: Index of target
1256 // CATEGORY: GLOBAL_SYSTEM_UI
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // ACTION: QS Brightness Slider (with auto brightness disabled)
1261 // SUBTYPE: slider value
1262 // CATEGORY: QUICK_SETTINGS
1263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001264 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001265
1266 // ACTION: QS Brightness Slider (with auto brightness enabled)
1267 // SUBTYPE: slider value
1268 // CATEGORY: QUICK_SETTINGS
1269 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001270 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001271
1272 // OPEN: Settings > Display > Brightness Slider
1273 // CATEGORY: SETTINGS
1274 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001275 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001276
Christine Franks47175c32017-03-14 10:21:25 -07001277 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001278 // CATEGORY: SETTINGS
1279 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001280 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // OPEN: Display has entered dream mode
1283 // CATEGORY: GLOBAL_SYSTEM_UI
1284 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001285 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001286
1287 // OPEN: Display has entered ambient notification mode
1288 // CATEGORY: GLOBAL_SYSTEM_UI
1289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001290 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001291
1292 // OPEN: Overview
1293 // CATEGORY: GLOBAL_SYSTEM_UI
1294 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001295 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001296
1297 // OPEN: Settings > About phone > Legal information
1298 // CATEGORY: SETTINGS
1299 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001300 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001301
1302 // OPEN: Settings > Search > Perform search
1303 // CATEGORY: SETTINGS
1304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001305 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001306
1307 // OPEN: Settings > System UI Tuner
1308 // CATEGORY: SETTINGS
1309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001310 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001311
1312 // OPEN: Settings > System UI Tuner > Quick Settings
1313 // CATEGORY: SETTINGS
1314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001315 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001316
1317 // OPEN: Settings > System UI Tuner > Demo mode
1318 // CATEGORY: SETTINGS
1319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001320 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001321
1322 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1323 // PACKAGE: Tile
1324 // CATEGORY: SETTINGS
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1329 // PACKAGE: Tile
1330 // CATEGORY: SETTINGS
1331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001332 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001333
1334 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1335 // PACKAGE: Tile
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1341 // PACKAGE: Icon
1342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1347 // PACKAGE: Icon
1348 // CATEGORY: SETTINGS
1349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001350 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1353 // SUBTYPE: false is disabled, true is enabled
1354 // CATEGORY: SETTINGS
1355 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001356 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001357
1358 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1359 // SUBTYPE: false is disabled, true is enabled
1360 // CATEGORY: SETTINGS
1361 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001362 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001363
1364 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1365 // SUBTYPE: 0 is disabled, 1 is enabled
1366 // CATEGORY: SETTINGS
1367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001368 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001369
1370 // OPEN: Settings > Developer options > Inactive apps
1371 // CATEGORY: SETTINGS
1372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001373 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001374
1375 // ACTION: Long press home to bring up assistant
1376 // CATEGORY: GLOBAL_SYSTEM_UI
1377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001378 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001379
1380 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1381 // CATEGORY: SETTINGS
1382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001383 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // OPEN: Fingerprint Enroll > Find Sensor
1386 // CATEGORY: SETTINGS
1387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001388 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001389
1390 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1391 // CATEGORY: SETTINGS
1392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001393 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001394
1395 // OPEN: Fingerprint Enroll introduction
1396 // CATEGORY: SETTINGS
1397 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001398 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001399
1400 // OPEN: Fingerprint Enroll onboarding
1401 // CATEGORY: SETTINGS
1402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001403 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001404
1405 // OPEN: Fingerprint Enroll > Let's Start!
1406 // CATEGORY: SETTINGS
1407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001408 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001409
1410 // OPEN: Fingerprint Enroll SUW > Let's Start!
1411 // CATEGORY: SETTINGS
1412 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001413 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001414
1415 // OPEN: Fingerprint Enroll SUW > Find Sensor
1416 // CATEGORY: SETTINGS
1417 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001418 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001419
1420 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1421 // CATEGORY: SETTINGS
1422 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001423 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001424
1425 // OPEN: Fingerprint Enroll SUW introduction
1426 // CATEGORY: SETTINGS
1427 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001428 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001429
1430 // OPEN: Fingerprint Enroll SUW onboarding
1431 // CATEGORY: SETTINGS
1432 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001433 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001434
1435 // ACTION: Add fingerprint > Enroll fingerprint
1436 // CATEGORY: SETTINGS
1437 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001438 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001439
1440 // ACTION: Authenticate using fingerprint
1441 // CATEGORY: SETTINGS
1442 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001443 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001444
1445 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1446 // CATEGORY: SETTINGS
1447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001448 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001449
1450 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1451 // CATEGORY: SETTINGS
1452 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001453 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001454
1455 // ACTION: Double tap camera shortcut
1456 // CATEGORY: GLOBAL_SYSTEM_UI
1457 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001458 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001459
1460 // ACTION: Double twist camera shortcut
1461 // CATEGORY: GLOBAL_SYSTEM_UI
1462 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001463 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001464
1465 // OPEN: QS Work Mode tile shown
1466 // ACTION: QS Work Mode tile tapped
1467 // SUBTYPE: 0 is off, 1 is on
1468 // CATEGORY: QUICK_SETTINGS
1469 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001470 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001471
1472 // OPEN: Settings > Developer Options > Background Check
1473 // CATEGORY: SETTINGS
1474 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001475 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001476
1477 // OPEN: QS Lock tile shown
1478 // ACTION: QS Lock tile tapped
1479 // SUBTYPE: 0 is off, 1 is on
1480 // CATEGORY: QUICK_SETTINGS
1481 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001482 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001483
1484 // OPEN: QS User Tile shown
1485 // CATEGORY: QUICK_SETTINGS
1486 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001487 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001488
1489 // OPEN: QS Battery tile shown
1490 // CATEGORY: QUICK_SETTINGS
1491 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001492 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001493
1494 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1495 // CATEGORY: SETTINGS
1496 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001497 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001498
1499 // ACTION: Visual interruptions > No screen interuptions toggle
1500 // SUBTYPE: 0 is off, 1 is on
1501 // CATEGORY: SETTINGS
1502 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001503 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // ACTION: Visual interruptions > No notification light toggle
1506 // SUBTYPE: 0 is off, 1 is on
1507 // CATEGORY: SETTINGS
1508 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001509 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001510
1511 // OPEN: Settings > Notifications > [App] > Topic Notifications
1512 // CATEGORY: SETTINGS
1513 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001514 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001515
1516 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1517 // PACKAGE: Selected SMS app
1518 // CATEGORY: SETTINGS
1519 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001520 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001521
1522 // OPEN: QS Color modification tile shown
1523 // ACTION: QS Color modification tile tapped
1524 // SUBTYPE: 0 is off, 1 is on
1525 // CATEGORY: QUICK_SETTINGS
1526 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001527 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001528
1529 // OPEN: QS Custom tile shown
1530 // ACTION: QS Work Mode tile tapped
1531 // CATEGORY: QUICK_SETTINGS
1532 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001533 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001534
1535 // ACTION: Visual interruptions > Never turn off the screen toggle
1536 // SUBTYPE: 0 is off, 1 is on
1537 // CATEGORY: SETTINGS
1538 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001539 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001540
Chris Wren7c516842016-03-01 16:44:32 -05001541 // ACTION: Overview > Long-press task, drag to enter split-screen
1542 // CATEGORY: GLOBAL_SYSTEM_UI
1543 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001544 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1545
Chris Wren7c516842016-03-01 16:44:32 -05001546 // ACTION: In App > Long-press Overview button to enter split-screen
1547 // CATEGORY: GLOBAL_SYSTEM_UI
1548 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001549 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1550
Chris Wren7c516842016-03-01 16:44:32 -05001551 // ACTION: In App > Swipe Overview button to enter split-screen
1552 // CATEGORY: GLOBAL_SYSTEM_UI
1553 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001554 ACTION_WINDOW_DOCK_SWIPE = 272;
1555
Chris Wren7c516842016-03-01 16:44:32 -05001556 // ACTION: Launch profile-specific app > Confirm credentials
1557 // CATEGORY: GLOBAL_SYSTEM_UI
1558 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001559 PROFILE_CHALLENGE = 273;
1560
Chris Wren7c516842016-03-01 16:44:32 -05001561 // OPEN: QS Battery detail panel
1562 // CATEGORY: GLOBAL_SYSTEM_UI
1563 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001564 QS_BATTERY_DETAIL = 274;
1565
Chris Wren7c516842016-03-01 16:44:32 -05001566 // OPEN: Overview > History
1567 // CATEGORY: GLOBAL_SYSTEM_UI
1568 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001569 OVERVIEW_HISTORY = 275;
1570
Chris Wren7c516842016-03-01 16:44:32 -05001571 // ACTION: Overview > Page by tapping Overview button
1572 // CATEGORY: GLOBAL_SYSTEM_UI
1573 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001574 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001575
Chris Wren7c516842016-03-01 16:44:32 -05001576 // ACTION: Overview > Select app
1577 // CATEGORY: GLOBAL_SYSTEM_UI
1578 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001579 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001580
Chris Wren7c516842016-03-01 16:44:32 -05001581 // ACTION: View emergency info
1582 // CATEGORY: GLOBAL_SYSTEM_UI
1583 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001584 ACTION_VIEW_EMERGENCY_INFO = 278;
1585
Chris Wren7c516842016-03-01 16:44:32 -05001586 // ACTION: Edit emergency info activity
1587 // CATEGORY: SETTINGS
1588 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001589 ACTION_EDIT_EMERGENCY_INFO = 279;
1590
Chris Wren7c516842016-03-01 16:44:32 -05001591 // ACTION: Edit emergency info field
1592 // CATEGORY: SETTINGS
1593 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001594 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1595
Chris Wren7c516842016-03-01 16:44:32 -05001596 // ACTION: Add emergency contact
1597 // CATEGORY: SETTINGS
1598 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001599 ACTION_ADD_EMERGENCY_CONTACT = 281;
1600
Chris Wren7c516842016-03-01 16:44:32 -05001601 // ACTION: Delete emergency contact
1602 // CATEGORY: SETTINGS
1603 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001604 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1605
Chris Wren7c516842016-03-01 16:44:32 -05001606 // ACTION: Call emergency contact
1607 // CATEGORY: SETTINGS
1608 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001609 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001610
Chris Wren7c516842016-03-01 16:44:32 -05001611 // OPEN: QS Data Saver tile shown
1612 // ACTION: QS Data Saver tile tapped
1613 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001614 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001615
Robin Lee8c1306e2016-02-01 11:37:02 +00001616 // OPEN: Settings > Security > User credentials
1617 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001618 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001619 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001620
Chris Wren7c516842016-03-01 16:44:32 -05001621 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1622 // CATEGORY: GLOBAL_SYSTEM_UI
1623 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001624 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001625
1626 // Logged when the user scrolls through overview manually
1627 OVERVIEW_SCROLL = 287;
1628
1629 // Logged when the overview times out automatically selecting an app
1630 OVERVIEW_SELECT_TIMEOUT = 288;
1631
1632 // Logged when a user dismisses a task in overview
1633 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001634
1635 // Logged when the user modifying the notification importance slider.
1636 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1637
1638 // Logged when the user saves a modification to notification importance. Negative numbers
1639 // indicate the user lowered the importance; positive means they increased it.
1640 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001641
Chris Wren7c516842016-03-01 16:44:32 -05001642 // ACTION: Long-press power button, then tap "Take bug report" option.
1643 // CATEGORY: GLOBAL_SYSTEM_UI
1644 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001645 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1646
Chris Wren7c516842016-03-01 16:44:32 -05001647 // ACTION: Long-press power button, then long-press "Take bug report" option.
1648 // CATEGORY: GLOBAL_SYSTEM_UI
1649 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001650 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1651
Chris Wren7c516842016-03-01 16:44:32 -05001652 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1653 // CATEGORY: SETTINGS
1654 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001655 // Interactive bug report initiated from Settings.
1656 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1657
Chris Wren7c516842016-03-01 16:44:32 -05001658 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1659 // CATEGORY: SETTINGS
1660 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001661 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001662 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1663
Chris Wren7c516842016-03-01 16:44:32 -05001664 // ACTION: User tapped notification action to cancel a bug report
1665 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001666 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001667 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1668
Chris Wren7c516842016-03-01 16:44:32 -05001669 // ACTION: User tapped notification action to launch bug report details screen
1670 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001671 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001672 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1673
Chris Wren7c516842016-03-01 16:44:32 -05001674 // ACTION: User tapped notification action to take adition screenshot on bug report
1675 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001676 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001677 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1678
Chris Wren7c516842016-03-01 16:44:32 -05001679 // ACTION: User tapped notification to share bug report
1680 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001681 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001682 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1683
Chris Wren7c516842016-03-01 16:44:32 -05001684 // ACTION: User changed bug report name using the details screen
1685 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001686 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001687 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1688
Chris Wren7c516842016-03-01 16:44:32 -05001689 // ACTION: User changed bug report title using the details screen
1690 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001691 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001692 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1693
Chris Wren7c516842016-03-01 16:44:32 -05001694 // ACTION: User changed bug report description using the details screen
1695 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001696 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001697 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1698
Chris Wren7c516842016-03-01 16:44:32 -05001699 // ACTION: User tapped Save in the bug report details screen.
1700 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001701 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001702 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1703
Chris Wren7c516842016-03-01 16:44:32 -05001704 // ACTION: User tapped Cancel in the bug report details screen.
1705 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001706 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001707 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001708
1709 // Tuner: Open/close calibrate dialog.
1710 TUNER_CALIBRATE_DISPLAY = 305;
1711
1712 // Tuner: Open/close color and appearance.
1713 TUNER_COLOR_AND_APPEARANCE = 306;
1714
1715 // Tuner: Apply calibrate dialog.
1716 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1717
1718 // Tuner: Open/close night mode.
1719 TUNER_NIGHT_MODE = 308;
1720
1721 // Tuner: Change night mode.
1722 ACTION_TUNER_NIGHT_MODE = 309;
1723
1724 // Tuner: Change night mode auto.
1725 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1726
1727 // Tuner: Change night mode adjust dark theme.
1728 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1729
1730 // Tuner: Change night mode adjust tint.
1731 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1732
1733 // Tuner: Change night mode adjust brightness.
1734 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1735
1736 // Tuner: Change do not disturb in volume panel.
1737 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1738
1739 // Tuner: Change do not disturb volume buttons shortcut.
1740 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001741
1742 // Logs the action the user takes when an app crashed.
1743 ACTION_APP_CRASH = 316;
1744
1745 // Logs the action the user takes when an app ANR'd.
1746 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001747
1748 // Logged when a user double taps the overview button to launch the previous task
1749 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001750
1751 // Logged when we execute an app transition. This indicates the total delay from startActivity
1752 // until the app transition is starting to animate, in milliseconds.
1753 APP_TRANSITION_DELAY_MS = 319;
1754
1755 // Logged when we execute an app transition. This indicates the reason why the transition
1756 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1757 APP_TRANSITION_REASON = 320;
1758
1759 // Logged when we execute an app transition and we drew a starting window. This indicates the
1760 // delay from startActivity until the starting window was drawn.
1761 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1762
1763 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1764 // the delay from startActivity until all windows have been drawn.
1765 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1766
1767 // Logged when we execute an app transition. This indicates the component name of the current
1768 // transition.
1769 APP_TRANSITION_COMPONENT_NAME = 323;
1770
1771 // Logged when we execute an app transition. This indicates whether the process was already
1772 // running.
1773 APP_TRANSITION_PROCESS_RUNNING = 324;
1774
1775 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1776 // the transition was executed.
1777 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001778
Chris Wren38f98812016-07-13 14:28:40 -04001779 // ACTION: app requested access to a scoped directory, user granted it.
1780 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1781 // CATEGORY: GLOBAL_SYSTEM_UI
1782 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001783 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1784
Chris Wren38f98812016-07-13 14:28:40 -04001785 // ACTION: app requested access to a scoped directory, user denied it.
1786 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1787 // CATEGORY: GLOBAL_SYSTEM_UI
1788 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001789 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1790
Chris Wren38f98812016-07-13 14:28:40 -04001791 // ACTION: app requested access to a scoped directory, user granted it.
1792 // PACKAGE: app that requested access
1793 // CATEGORY: GLOBAL_SYSTEM_UI
1794 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001795 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1796
Chris Wren38f98812016-07-13 14:28:40 -04001797 // ACTION: app requested access to a scoped directory, user denied it.
1798 // PACKAGE: app that requested access.
1799 // CATEGORY: GLOBAL_SYSTEM_UI
1800 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001801 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1802
Chris Wren38f98812016-07-13 14:28:40 -04001803 // ACTION: app requested access to a directory user has already been granted
1804 // access before.
1805 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1806 // CATEGORY: GLOBAL_SYSTEM_UI
1807 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001808 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1809
Chris Wren38f98812016-07-13 14:28:40 -04001810 // ACTION: app requested access to a directory user has already been granted
1811 // access before.
1812 // PACKAGE: app that requested access.
1813 // CATEGORY: GLOBAL_SYSTEM_UI
1814 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001815 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001816
Chris Wren38f98812016-07-13 14:28:40 -04001817 // ACTION: Logged when the user slides a notification and reveals the gear
1818 // beneath it.
1819 // CATEGORY: NOTIFICATION
1820 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001821 ACTION_REVEAL_GEAR = 332;
1822
Chris Wren38f98812016-07-13 14:28:40 -04001823 // ACTION: Logged when the user taps on the gear beneath a notification.
1824 // CATEGORY: NOTIFICATION
1825 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001826 ACTION_TOUCH_GEAR = 333;
1827
Ruben Brunke24b9a62016-02-16 21:38:24 -08001828 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001829 // CATEGORY: SETTINGS
1830 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001831 VR_MANAGE_LISTENERS = 334;
1832
Jason Monk6f5354d2016-03-08 14:18:08 -05001833 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001834 // CATEGORY: SETTINGS
1835 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001836 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001837
Jason Monk6f5354d2016-03-08 14:18:08 -05001838 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001839 // CATEGORY: SETTINGS
1840 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001841 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001842
Jason Monk6f5354d2016-03-08 14:18:08 -05001843 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001844 // CATEGORY: SETTINGS
1845 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001846 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001847
Jason Monk6f5354d2016-03-08 14:18:08 -05001848 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001849 // CATEGORY: SETTINGS
1850 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001851 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001852
Jason Monk6f5354d2016-03-08 14:18:08 -05001853 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001854 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001855 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001856
Jason Monk6f5354d2016-03-08 14:18:08 -05001857 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001858 // CATEGORY: SETTINGS
1859 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001860 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001861
Jason Monk6f5354d2016-03-08 14:18:08 -05001862 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001863 // CATEGORY: SETTINGS
1864 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001865 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001866
Jason Monk6f5354d2016-03-08 14:18:08 -05001867 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001868 // CATEGORY: SETTINGS
1869 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001870 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001871
Jason Monk6f5354d2016-03-08 14:18:08 -05001872 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001873 // CATEGORY: SETTINGS
1874 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001875 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001876
Jason Monk6f5354d2016-03-08 14:18:08 -05001877 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001878 // CATEGORY: SETTINGS
1879 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001880 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001881
Jason Monk6f5354d2016-03-08 14:18:08 -05001882 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001883 // CATEGORY: SETTINGS
1884 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001885 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001886
Jason Monk6f5354d2016-03-08 14:18:08 -05001887 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001888 // CATEGORY: SETTINGS
1889 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001890 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001891
Jason Monk6f5354d2016-03-08 14:18:08 -05001892 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001893 // CATEGORY: SETTINGS
1894 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001895 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001896
Jason Monk6f5354d2016-03-08 14:18:08 -05001897 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001898 // CATEGORY: SETTINGS
1899 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001901
Jason Monk6f5354d2016-03-08 14:18:08 -05001902 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001903 // CATEGORY: SETTINGS
1904 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1906
1907 // Used for generic logging of Settings Preference Persistence, should not be used
1908 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001909 // CATEGORY: SETTINGS
1910 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001911 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001912
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 // Settings -> Apps -> Gear -> Special access
1914 SPECIAL_ACCESS = 351;
1915
Muyuan Lia2129992016-03-03 18:30:39 -08001916 // Logs that the user docks window via shortcut key.
1917 WINDOW_DOCK_SHORTCUTS = 352;
1918
Felipe Lemeadccb992016-03-09 17:40:49 -08001919 // User already denied access to the request folder; action takes an integer
1920 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001921 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001922 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1923
1924 // User already denied access to the request folder; action pass package name
1925 // of calling package.
1926 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1927
1928 // User denied access to the request folder and checked 'Do not ask again';
1929 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001930 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001931 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1932
1933 // User denied access to the request folder and checked 'Do not ask again';
1934 // action pass package name of calling package.
1935 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1936
Winson3b6ba1a2016-03-22 15:37:54 -07001937 // Logged when a user dismisses all task in overview
1938 OVERVIEW_DISMISS_ALL = 357;
1939
Jason Monk96defbe2016-03-29 16:51:03 -04001940 // Quick Settings -> Edit
1941 QS_EDIT = 358;
1942
1943 // Quick Settings -> Edit -> Overflow -> Reset
1944 ACTION_QS_EDIT_RESET = 359;
1945
1946 // QS -> Edit - Drag a tile out of the active tiles.
1947 // The _SPEC contains either the spec of the tile or
1948 // the package of the 3rd party app in the PKG field.
1949 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1950 ACTION_QS_EDIT_REMOVE = 361;
1951
1952 // QS -> Edit - Drag a tile into the active tiles.
1953 // The _SPEC contains either the spec of the tile or
1954 // the package of the 3rd party app in the PKG field.
1955 ACTION_QS_EDIT_ADD_SPEC = 362;
1956 ACTION_QS_EDIT_ADD = 363;
1957
1958 // QS -> Edit - Drag a tile within the active tiles.
1959 // The _SPEC contains either the spec of the tile or
1960 // the package of the 3rd party app in the PKG field.
1961 ACTION_QS_EDIT_MOVE_SPEC = 364;
1962 ACTION_QS_EDIT_MOVE = 365;
1963
1964 // Long-press on a QS tile. Tile spec in package field.
1965 ACTION_QS_LONG_PRESS = 366;
1966
Anna Galuszadad131f2016-03-22 13:49:02 -07001967 // OPEN: SUW Welcome Screen -> Vision Settings
1968 // CATEGORY: SETTINGS
1969 // OS: N
1970 SUW_ACCESSIBILITY = 367;
1971
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001972 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1973 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1974 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001975 // ACTION: New magnification gesture configuration is chosen
1976 // SUBTYPE: 0 is off, 1 is on
1977 // CATEGORY: SETTINGS
1978 // OS: N
1979 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1980
1981 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1982 // ACTION: New font size is chosen
1983 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1984 // CATEGORY: SETTINGS
1985 // OS: N
1986 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1987
1988 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1989 // ACTION: New display size is chosen
1990 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1991 // CATEGORY: SETTINGS
1992 // OS: N
1993 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1994
1995 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1996 // ACTION: New screen reader configuration is chosen
1997 // SUBTYPE: 0 is off, 1 is on
1998 // CATEGORY: SETTINGS
1999 // OS: N
2000 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2001
Jason Monkc3620392016-03-30 15:46:03 -04002002 // ------- Begin N Settings conditionals -----
2003 // Conditionals are the green bars at the top of the settings dashboard
2004 // All conditionals will have visible/hide events onResume/onPause
2005 // but they will also be used as extra ints in the
2006 // dismiss/expand/collapse/click/button events
2007
2008 // swipe away conditional
2009 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2010
2011 // click on collapsed conditional or clicks expand button
2012 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2013
2014 // click collapse button on expanded conditional
2015 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2016
2017 // click main area of expanded conditional
2018 ACTION_SETTINGS_CONDITION_CLICK = 375;
2019
2020 // click a direct button on expanded conditional
2021 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2022
2023 // Airplane mode on
2024 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2025 // AKA Data saver on
2026 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2027 // Battery saver on
2028 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2029 // Cellular data off
2030 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2031 // Do not disturb on
2032 SETTINGS_CONDITION_DND = 381;
2033 // Hotspot on
2034 SETTINGS_CONDITION_HOTSPOT = 382;
2035 // Work profile off
2036 SETTINGS_CONDITION_WORK_MODE = 383;
2037
Jason Monk1b5d87b2016-03-30 16:03:15 -04002038 // ------- Begin N Settings suggestions -----
2039 // Since suggestions come from system apps, suggestions will
2040 // have generic constants and the package providing the suggestion
2041 // will be put in the package field. For suggestions in the Settings
2042 // package, the class name will be filled in instead (since settings
2043 // provides several suggetions).
2044
2045 // Settings shown/hidden on main settings dashboard.
2046 // These are actually visibility events, but visible/hidden doesn't
2047 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002048 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2049 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002050
2051 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002052 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002053
2054 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002055 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002056
Jason Monk397df682016-03-28 15:48:34 -04002057 // Settings > Apps > Gear > Special Access > Premium SMS access
2058 PREMIUM_SMS_ACCESS = 388;
2059
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002060 // Logged when the user resizes the docked stack. Arguments:
2061 // 0: Split 50:50
2062 // 1: Docked smaller
2063 // 2: Docked larger
2064 ACTION_WINDOW_DOCK_RESIZE = 389;
2065
2066 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2067 // 0: Docked gets maximized
2068 // 1: Fullscreen gets maximized
2069 ACTION_WINDOW_UNDOCK_MAX = 390;
2070
2071 // User tried to dock an unresizable app.
2072 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2073
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002074 // System UI Tuner > Other > Power notification controls
2075 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2076
2077 // System UI Tuner > Other > Power notification controls > Toggle on/off
2078 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2079
Chris Wren38f98812016-07-13 14:28:40 -04002080 // Action: user enable / disabled data saver using Settings
2081 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2082 // VALUE: 1 for enabled, 0 for disabled
2083 // CATEGORY: SETTINGS
2084 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002085 ACTION_DATA_SAVER_MODE = 394;
2086
Chris Wren38f98812016-07-13 14:28:40 -04002087 // User whitelisted an app for Data Saver mode; action pass package name of app
2088 // Action: user enable / disabled data saver using Settings
2089 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2090 // or
2091 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2092 // VALUE: package name of APP
2093 // CATEGORY: SETTINGS
2094 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002095 ACTION_DATA_SAVER_WHITELIST = 395;
2096
Chris Wren38f98812016-07-13 14:28:40 -04002097 // User blacklisted an app for Data Saver mode; action pass package name of app
2098 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2099 // VALUE: package name of APP
2100 // CATEGORY: SETTINGS
2101 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002102 ACTION_DATA_SAVER_BLACKLIST = 396;
2103
Adrian Roosceeb04c2016-04-25 14:00:54 -07002104 // User opened a remote input view associated with a notification. Passes package name of app
2105 // that posted the notification. Note that this can also happen transiently during notification
2106 // reinflation.
2107 ACTION_REMOTE_INPUT_OPEN = 397;
2108
2109 // User attempt to send data through a remote input view associated with a notification.
2110 // Passes package name of app that posted the notification. May succeed or fail.
2111 ACTION_REMOTE_INPUT_SEND = 398;
2112
2113 // Failed attempt to send data through a remote input view associated with a
2114 // notification. Passes package name of app that posted the notification.
2115 ACTION_REMOTE_INPUT_FAIL = 399;
2116
2117 // User closed a remote input view associated with a notification. Passes package name of app
2118 // that posted the notification. Note that this can also happen transiently during notification
2119 // reinflation.
2120 ACTION_REMOTE_INPUT_CLOSE = 400;
2121
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002122 // OPEN: Settings > Accounts > Work profile settings
2123 // CATEGORY: SETTINGS
2124 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2125
Jason Monk25118d12016-05-10 13:25:50 -04002126 // Settings -> Dev options -> Convert to file encryption
2127 CONVERT_FBE = 402;
2128
2129 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2130 CONVERT_FBE_CONFIRM = 403;
2131
2132 // Settings -> Dev options -> Running services
2133 RUNNING_SERVICES = 404;
2134
Jason Monka1f697f2016-05-06 15:09:44 -04002135 // The dialog shown by 3P intent to change current webview implementation.
2136 WEBVIEW_IMPLEMENTATION = 405;
2137
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002138 // Settings launched from expanded quick settings.
2139 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2140
Chris Wren698b1702016-05-23 11:16:32 -04002141 // Notification expansion state toggled by the expand affordance.
2142 ACTION_NOTIFICATION_EXPANDER = 407;
2143
2144 // Notification group expansion state toggled by the expand affordance.
2145 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2146
Chris Wren7ee84182016-05-27 13:34:02 -04002147
Chris Wren6abeeb92016-05-26 14:44:38 -04002148 // Notification expansion state toggled by the expand gesture.
2149 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2150
2151 // Notification group expansion state toggled by the expand gesture.
2152 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2153
Bhavik Singh3451da42016-06-01 18:25:59 -07002154 // User performs gesture that activates the ambient display
2155 // 1: Gesture performed is Nudge
2156 // 2: Gesture performed is Pickup
2157 // 4: Gesture performed is Double Tap
2158 ACTION_AMBIENT_GESTURE = 411;
2159
Jason Monk9fa5f822016-05-11 10:26:31 -04002160 // ---- End N Constants, all N constants go above this line ----
2161
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002162 // ------- Begin N App Disambig Shade -----
2163 // Application disambig shade opened or closed with a featured app.
2164 // These are actually visibility events, but visible/hidden doesn't
2165 // take a package, so these are being logged as actions.
2166 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002167 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2168 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002169
2170 // Application disambig shade opened or closed without a featured app.
2171 // These are actually visibility events, but visible/hidden doesn't
2172 // take a package, so these are being logged as actions.
2173 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002174 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2175 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002176
2177 // User opens in an app by pressing “Always” in the application disambig shade.
2178 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002179 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002180
2181 // User opens in an app by pressing “Just Once” in the application disambig shade.
2182 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002183 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002184
2185 // User opens in an app by tapping on its name in the application disambig shade.
2186 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002187 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002188
Daniel Nishi010aa492016-05-11 09:42:24 -07002189 // OPEN: Settings > Internal storage > Storage manager
2190 // CATEGORY: SETTINGS
2191 STORAGE_MANAGER_SETTINGS = 458;
2192
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002193 // OPEN: Settings -> Gestures
2194 // CATEGORY: SETTINGS
2195 SETTINGS_GESTURES = 459;
2196
Daniel Nishi597e67f2016-05-18 13:56:13 -07002197 // ------ Begin Deletion Helper ------
2198 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2199 // SUBTYPE: false is off, true is on
2200 // CATEGORY: SETTINGS
2201 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002202
Daniel Nishi597e67f2016-05-18 13:56:13 -07002203 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2204 // SUBTYPE: false is off, true is on
2205 // CATEGORY: SETTINGS
2206 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2207
2208 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2209 // CATEGORY: SETTINGS
2210 // PACKAGE: Unchecked app
2211 ACTION_DELETION_SELECTION_APP_ON = 462;
2212
2213 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2214 // CATEGORY: SETTINGS
2215 // PACKAGE: Checked app
2216 ACTION_DELETION_SELECTION_APP_OFF = 463;
2217
2218 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2219 // SUBTYPE: false is expanded, true is collapsed
2220 // CATEGORY: SETTINGS
2221 ACTION_DELETION_APPS_COLLAPSED = 464;
2222
2223 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2224 // SUBTYPE: false is off, true is on
2225 // CATEGORY: SETTINGS
2226 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2227
2228 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2229 // SUBTYPE: false is expanded, true is collapsed
2230 // CATEGORY: SETTINGS
2231 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2232
2233 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2234 // CATEGORY: SETTINGS
2235 ACTION_DELETION_HELPER_CLEAR = 467;
2236
2237 // ACTION: Settings > Storage > Free Up Space > Cancel
2238 // CATEGORY: SETTINGS
2239 ACTION_DELETION_HELPER_CANCEL = 468;
2240
2241 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2242 // CATEGORY: SETTINGS
2243 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2244
2245 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2246 // CATEGORY: SETTINGS
2247 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2248
2249 // Deletion helper encountered an error during package deletion.
2250 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2251
2252 // Deletion helper encountered an error during downloads folder deletion.
2253 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2254
2255 // Deletion helper encountered an error during photo and video deletion.
2256 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2257
Fan Zhang5e956e82016-05-06 10:51:47 -07002258 // OPEN: Settings (root page if there are multiple tabs)
2259 // CATEGORY: SETTINGS
2260 DASHBOARD_CONTAINER = 474;
2261
2262 // OPEN: Settings -> SUPPORT TAB
2263 // CATEGORY: SETTINGS
2264 SUPPORT_FRAGMENT = 475;
2265
2266 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002267 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002268 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002269
2270 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002271 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002272 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2273
Fan Zhanga1985502016-06-16 16:48:38 -07002274 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002275 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002276 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2277
2278 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002279 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002280 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2281
2282 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002283 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002284 ACTION_SUPPORT_SIGN_IN = 480;
2285
2286 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002287 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002288 ACTION_SUPPORT_PHONE = 481;
2289
2290 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002291 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002292 ACTION_SUPPORT_CHAT = 482;
2293
2294 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002295 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002296 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2297
2298 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002299 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002300 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2301
Fan Zhang80807212016-06-30 12:26:55 -07002302 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002303 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002304 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2305
2306 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002307 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002308 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2309
2310 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002311 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002312 ACTION_SUPPORT_DIAL_TOLLED = 487;
2313
Justin Klaassen19494272016-07-18 21:38:24 -07002314 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002315 // CATEGORY: SETTINGS
2316 NIGHT_DISPLAY_SETTINGS = 488;
2317
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002318 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002319 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002320 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2321
Jason Monk484fd362016-07-13 15:24:32 -04002322 // Settings launched from collapsed quick settings.
2323 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2324
Justin Klaassen19494272016-07-18 21:38:24 -07002325 // OPEN: QS Night Light tile shown
2326 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002327 // SUBTYPE: 0 is off, 1 is on
2328 // CATEGORY: QUICK_SETTINGS
2329 QS_NIGHT_DISPLAY = 491;
2330
Justin Klaassen19494272016-07-18 21:38:24 -07002331 // Night Light on
2332 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2333
Doris Ling3c00afb2016-07-19 17:04:21 -07002334 // System navigation key up.
2335 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2336
2337 // System navigation key down.
2338 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2339
Doris Ling6dd3e462016-08-04 13:17:27 -07002340 // OPEN: Settings > Display -> Ambient Display
2341 // CATEGORY: SETTINGS
2342 ACTION_AMBIENT_DISPLAY = 495;
2343
Adrian Roos159ef7b2016-02-25 11:58:32 -08002344 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2345
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002346 // ACTION: The lockscreen gets shown because the SIM card was removed
2347 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2348 // CATEGORY: GLOBAL_SYSTEM_UI
2349 // OS: N-MR2
2350 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2351
2352 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2353
Clara Bayarric17a5982016-04-15 12:26:47 +01002354 // ------- Begin N Keyboard Shortcuts Helper -----
2355 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002356 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002357
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002358 // OPEN: Print Preview screen
2359 // Package: Package of app where print job is from
2360 PRINT_PREVIEW = 501;
2361
2362 // OPEN: User expands full print job options shade in print preview.
2363 PRINT_JOB_OPTIONS = 502;
2364
2365 // OPEN: “All Printers” screen for selecting printer
2366 // Subtype: # of printers listed
2367 PRINT_ALL_PRINTERS = 503;
2368
2369 // OPEN: “Add Printers” screen for adding printers
2370 // Subtype: # of enabled print service listed
2371 PRINT_ADD_PRINTERS = 504;
2372
2373 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2374 // Package: Package of print service.
2375 ACTION_PRINT = 505;
2376
2377 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2378 // Count all ACTION_PRINTER_SELECT_ALL actions.
2379 // Package: Package of print service tied to printer
2380 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2381
2382 // ACTION: User selects a printer from the “All printers” screen.
2383 // Package: Package of print service tied to printer
2384 ACTION_PRINTER_SELECT_ALL = 507;
2385
2386 // ACTION: User changes an option for the print job from print preview.
2387 // Subtype: 1: Copies
2388 // 2: Color mode
2389 // 3: Duplex mode
2390 // 4: Media (==Paper) size
2391 // 5: Orientation
2392 // 6: Page range
2393 // Package: Package of print service tied to printer
2394 ACTION_PRINT_JOB_OPTIONS = 508;
2395
2396 // ACTION: User searches for printer from All Printers
2397 ACTION_PRINTER_SEARCH = 509;
2398
2399 // ACTION: User selects “Add print service” button from All Printers
2400 ACTION_PRINT_SERVICE_ADD = 510;
2401
2402 // ACTION: User Enables/Disables Print Service via any means.
2403 // Subtype: 0: Enabled
2404 // 1: Disabled
2405 ACTION_PRINT_SERVICE_TOGGLE = 511;
2406
2407 // ACTION: User installs print recommended print service
2408 // Package: Package of print service
2409 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2410
Doris Ling88a6b162016-08-08 16:17:43 -07002411 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2412 // SUBTYPE: sub settings classname
2413 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2414
Fan Zhang92c60382016-08-08 14:03:53 -07002415 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2416 USER_DICTIONARY_SETTINGS = 514;
2417
2418 // OPEN: Settings > Date & time > Select time zone
2419 ZONE_PICKER = 515;
2420
2421 // OPEN: Settings > Security > Device administrators
2422 DEVICE_ADMIN_SETTINGS = 516;
2423
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002424 // ACTION: Managed provisioning was launched to set this package as DPC app.
2425 // PACKAGE: DPC's package name.
2426 PROVISIONING_DPC_PACKAGE_NAME = 517;
2427
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002428 // ACTION: Managed provisioning triggered DPC installation.
2429 // PACKAGE: Package name of package which installed DPC.
2430 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2431
2432 // ACTION: Logged when provisioning activity finishes.
2433 // TIME: Indicates time taken by provisioning activity to finish in MS.
2434 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2435
2436 // ACTION: Logged when preprovisioning activity finishes.
2437 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2438 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2439
2440 // ACTION: Logged when encrypt device activity finishes.
2441 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2442 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2443
2444 // ACTION: Logged when web activity finishes.
2445 // TIME: Indicates total time taken by web activity to finish in MS.
2446 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2447
2448 // ACTION: Logged when trampoline activity finishes.
2449 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2450 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2451
2452 // ACTION: Logged when encryption activity finishes.
2453 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2454 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2455
2456 // ACTION: Logged when finalization activity finishes.
2457 // TIME: Indicates time taken by finalization activity to finish in MS.
2458 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002459
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002460 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002461 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002462
Fan Zhang95094182016-08-24 18:14:16 -07002463 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002464 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002465
2466 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002467 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002468
2469 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002470 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002471
2472 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002473 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002474
2475 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002476 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002477
Fan Zhangc1352ae2016-09-16 12:46:11 -07002478 // OPEN: Settings > Security > Use one lock dialog
2479 DIALOG_UNIFICATION_CONFIRMATION = 532;
2480
2481 // OPEN: Settings > Security > User Credential
2482 DIALOG_USER_CREDENTIAL = 533;
2483
2484 // OPEN: Settings > Accounts > Remove account
2485 DIALOG_REMOVE_USER = 534;
2486
2487 // OPEN: Settings > Accounts > Confirm auto sync dialog
2488 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2489
2490 // OPEN: Settings > Apps > Dialog for running service details
2491 DIALOG_RUNNIGN_SERVICE = 536;
2492
2493 // OPEN: Settings > Dialog for hiding home settings
2494 DIALOG_NO_HOME = 537;
2495
2496 // OPEN: Settings > Bluetooth > Rename this device
2497 DIALOG_BLUETOOTH_RENAME = 538;
2498
2499 // OPEN: Settings > Bluetooth > Paired device profile
2500 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2501
2502 // OPEN: Settings > Battery optimization > details for app
2503 DIALOG_HIGH_POWER_DETAILS = 540;
2504
2505 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2506 DIALOG_KEYBOARD_LAYOUT = 541;
2507
2508 // OPEN: Settings > Wifi > WPS Setup dialog
2509 DIALOG_WPS_SETUP = 542;
2510
2511 // OPEN: Settings > WIFI Scan permission dialog
2512 DIALOG_WIFI_SCAN_MODE = 543;
2513
2514 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2515 DIALOG_WIFI_SKIP = 544;
2516
2517 // OPEN: Settings > Wireless > VPN > Config dialog
2518 DIALOG_LEGACY_VPN_CONFIG = 545;
2519
2520 // OPEN: Settings > Wireless > VPN > Config dialog for app
2521 DIALOG_VPN_APP_CONFIG = 546;
2522
2523 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2524 DIALOG_VPN_CANNOT_CONNECT = 547;
2525
2526 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2527 DIALOG_VPN_REPLACE_EXISTING = 548;
2528
2529 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2530 DIALOG_BILLING_CYCLE = 549;
2531
2532 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2533 DIALOG_BILLING_BYTE_LIMIT = 550;
2534
2535 // OPEN: Settings > Billing cycle > turn on data limit dialog
2536 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2537
2538 // OPEN: Settings > Service > Turn off notification access dialog
2539 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2540
2541 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2542 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2543
2544 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2545 DIALOG_ZEN_ACCESS_GRANT = 554;
2546
2547 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2548 DIALOG_ZEN_ACCESS_REVOKE = 555;
2549
2550 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2551 DIALOG_ZEN_TIMEPICKER = 556;
2552
2553 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2554 DIALOG_SERVICE_ACCESS_WARNING = 557;
2555
2556 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2557 DIALOG_APP_INFO_ACTION = 558;
2558
2559 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2560 DIALOG_VOLUME_FORGET = 559;
2561
2562 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2563 DIALOG_VOLUME_SLOW_WARNING = 560;
2564
2565 // OPEN: Settings > Storage > Dialog for initializing a volume
2566 DIALOG_VOLUME_INIT = 561;
2567
2568 // OPEN: Settings > Storage > Dialog for unmounting a volume
2569 DIALOG_VOLUME_UNMOUNT = 562;
2570
2571 // OPEN: Settings > Storage > Dialog for renaming a volume
2572 DIALOG_VOLUME_RENAME = 563;
2573
2574 // OPEN: Settings > Storage > Dialog for clear cache
2575 DIALOG_STORAGE_CLEAR_CACHE = 564;
2576
2577 // OPEN: Settings > Storage > Dialog for system info
2578 DIALOG_STORAGE_SYSTEM_INFO = 565;
2579
2580 // OPEN: Settings > Storage > Dialog for other info
2581 DIALOG_STORAGE_OTHER_INFO = 566;
2582
2583 // OPEN: Settings > Storage > Dialog for user info
2584 DIALOG_STORAGE_USER_INFO = 567;
2585
2586 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2587 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2588
2589 // OPEN: Settings > Add fingerprint > Error dialog
2590 DIALOG_FINGERPINT_ERROR = 569;
2591
2592 // OPEN: Settings > Fingerprint > Rename or delete dialog
2593 DIALOG_FINGERPINT_EDIT = 570;
2594
2595 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2596 DIALOG_FINGERPINT_DELETE_LAST = 571;
2597
2598 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2599 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2600
2601 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2602 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2603
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002604 // OPEN: Settings > Proxy Selector error dialog
2605 DIALOG_PROXY_SELECTOR_ERROR = 574;
2606
2607 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2608 DIALOG_WIFI_P2P_DISCONNECT = 575;
2609
2610 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2611 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2612
2613 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2614 DIALOG_WIFI_P2P_RENAME = 577;
2615
2616 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2617 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2618
2619 // OPEN: Settings > APN > Restore default dialog
2620 DIALOG_APN_RESTORE_DEFAULT = 579;
2621
2622 // OPEN: Settings > Dream > When to dream dialog
2623 DIALOG_DREAM_START_DELAY = 580;
2624
2625 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2626 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2627
2628 // OPEN: Settings > Tether > AP setting dialog
2629 DIALOG_AP_SETTINGS = 582;
2630
2631 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2632 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2633
2634 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2635 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2636
2637 // OPEN: Settings > Account > Remove account dialog
2638 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2639
2640 // OPEN: Settings > Account > Remove account failed dialog
2641 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2642
2643 // OPEN: Settings > Account > Cannot do onetime sync dialog
2644 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2645
2646 // OPEN: Settings > Display > Night light > Set start time dialog
2647 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2648
2649 // OPEN: Settings > Display > Night light > Set end time dialog
2650 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2651
2652 // OPEN: Settings > User > Edit info dialog
2653 DIALOG_USER_EDIT = 590;
2654
2655 // OPEN: Settings > User > Confirm remove dialog
2656 DIALOG_USER_REMOVE = 591;
2657
2658 // OPEN: Settings > User > Enable calling dialog
2659 DIALOG_USER_ENABLE_CALLING = 592;
2660
2661 // OPEN: Settings > User > Enable calling and sms dialog
2662 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2663
2664 // OPEN: Settings > User > Cannot manage device message dialog
2665 DIALOG_USER_CANNOT_MANAGE = 594;
2666
2667 // OPEN: Settings > User > Add user dialog
2668 DIALOG_USER_ADD = 595;
2669
2670 // OPEN: Settings > User > Setup user dialog
2671 DIALOG_USER_SETUP = 596;
2672
2673 // OPEN: Settings > User > Setup profile dialog
2674 DIALOG_USER_SETUP_PROFILE = 597;
2675
2676 // OPEN: Settings > User > Choose user type dialog
2677 DIALOG_USER_CHOOSE_TYPE = 598;
2678
2679 // OPEN: Settings > User > Need lockscreen dialog
2680 DIALOG_USER_NEED_LOCKSCREEN = 599;
2681
2682 // OPEN: Settings > User > Confirm exit guest mode dialog
2683 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2684
2685 // OPEN: Settings > User > Edit user profile dialog
2686 DIALOG_USER_EDIT_PROFILE = 601;
2687
2688 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2689 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2690
2691 // OPEN: Settings > Wifi > Edit AP dialog
2692 DIALOG_WIFI_AP_EDIT = 603;
2693
2694 // OPEN: Settings > Wifi > PBC Config dialog
2695 DIALOG_WIFI_PBC = 604;
2696
2697 // OPEN: Settings > Wifi > Display pin dialog
2698 DIALOG_WIFI_PIN = 605;
2699
2700 // OPEN: Settings > Wifi > Write config to NFC dialog
2701 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002702 // OPEN: Settings > Date > Date picker dialog
2703 DIALOG_DATE_PICKER = 607;
2704
2705 // OPEN: Settings > Date > Time picker dialog
2706 DIALOG_TIME_PICKER = 608;
2707
2708 // OPEN: Settings > Wireless > Manage wireless plan dialog
2709 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002710
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002711 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002712 PROVISIONING_NETWORK_TYPE = 610;
2713
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002714 // ACTION: Logs action which triggered provisioning.
2715 PROVISIONING_ACTION = 611;
2716
Mahaver Chopraab282072016-10-06 19:19:23 +01002717 // ACTION: Logs extra passed by the dpc while provisioning.
2718 PROVISIONING_EXTRA = 612;
2719
Salvador Martinez64867c12016-10-14 15:25:09 -07002720 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2721 BLUETOOTH_DIALOG_FRAGMENT = 613;
2722
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002723 // ACTION: Logs provisioning started by zero touch.
2724 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2725
2726 // ACTION: Logs provisioning started by NFC bump.
2727 PROVISIONING_ENTRY_POINT_NFC = 615;
2728
2729 // ACTION: Logs provisioning started using QR code.
2730 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2731
2732 // ACTION: Logs provisioning started using adb.
2733 PROVISIONING_ENTRY_POINT_ADB = 617;
2734
2735 // ACTION: Logs provisioning started by trusted source.
2736 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2737
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002738 // ACTION: Logged when copy account task finishes.
2739 // TIME: Indicates time taken by copy account task to finish in MS.
2740 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2741
2742 // ACTION: Logged when create profile task finishes.
2743 // TIME: Indicates time taken by create profile task to finish in MS.
2744 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2745
2746 // ACTION: Logged when start profile task finishes.
2747 // TIME: Indicates time taken by start profile task to finish in MS.
2748 PROVISIONING_START_PROFILE_TASK_MS = 621;
2749
2750 // ACTION: Logged when download package task finishes.
2751 // TIME: Indicates time taken by download package task to finish in MS.
2752 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2753
2754 // ACTION: Logged when install package task finishes.
2755 // TIME: Indicates time taken by install package task to finish in MS.
2756 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2757
2758 // ACTION: User cancelled provisioning.
2759 PROVISIONING_CANCELLED = 624;
2760
2761 // ACTION: Logged when provisioning throws an error.
2762 PROVISIONING_ERROR = 625;
2763
2764 // ACTION: Logs the status of copying user account during provisioning.
2765 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2766
2767 // ACTION: Logs the end to end time taken by all provisioning tasks.
2768 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2769
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002770 // OPEN: Settings > Privacy
2771 // CATEGORY: SETTINGS
2772 // OS: O
2773 ENTERPRISE_PRIVACY_SETTINGS = 628;
2774
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002775 // ACTION: Longpress on a TextView.
2776 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2777 // CATEGORY: TEXT_CONTROLS
2778 // OS: O
2779 TEXT_LONGPRESS = 629;
2780
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002781 // ACTION: An app requested an unknown permission
2782 // PACKAGE: The package name of the app requesting the permission
2783 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2784
2785 // ACTION: An app was granted an unknown permission
2786 // PACKAGE: The package name of the app that was granted the permission
2787 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2788
2789 // ACTION: An app requested an unknown permission and the request was denied
2790 // PACKAGE: The package name of the app requesting the permission
2791 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2792
2793 // ACTION: An unknown permission was revoked for an app
2794 // PACKAGE: The package name of the app the permission was revoked for
2795 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2796
2797 // ACTION: An app requested the permission READ_CALENDAR
2798 // PACKAGE: The package name of the app requesting the permission
2799 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2800
2801 // ACTION: An app was granted the permission READ_CALENDAR
2802 // PACKAGE: The package name of the app that was granted the permission
2803 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2804
2805 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2806 // PACKAGE: The package name of the app requesting the permission
2807 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2808
2809 // ACTION: The permission READ_CALENDAR was revoked for an app
2810 // PACKAGE: The package name of the app the permission was revoked for
2811 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2812
2813 // ACTION: An app requested the permission WRITE_CALENDAR
2814 // PACKAGE: The package name of the app requesting the permission
2815 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2816
2817 // ACTION: An app was granted the permission WRITE_CALENDAR
2818 // PACKAGE: The package name of the app that was granted the permission
2819 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2820
2821 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2822 // PACKAGE: The package name of the app requesting the permission
2823 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2824
2825 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2826 // PACKAGE: The package name of the app the permission was revoked for
2827 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2828
2829 // ACTION: An app requested the permission CAMERA
2830 // PACKAGE: The package name of the app requesting the permission
2831 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2832
2833 // ACTION: An app was granted the permission CAMERA
2834 // PACKAGE: The package name of the app that was granted the permission
2835 ACTION_PERMISSION_GRANT_CAMERA = 643;
2836
2837 // ACTION: An app requested the permission CAMERA and the request was denied
2838 // PACKAGE: The package name of the app requesting the permission
2839 ACTION_PERMISSION_DENIED_CAMERA = 644;
2840
2841 // ACTION: The permission CAMERA was revoked for an app
2842 // PACKAGE: The package name of the app the permission was revoked for
2843 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2844
2845 // ACTION: An app requested the permission READ_CONTACTS
2846 // PACKAGE: The package name of the app requesting the permission
2847 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2848
2849 // ACTION: An app was granted the permission READ_CONTACTS
2850 // PACKAGE: The package name of the app that was granted the permission
2851 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2852
2853 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2854 // PACKAGE: The package name of the app requesting the permission
2855 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2856
2857 // ACTION: The permission READ_CONTACTS was revoked for an app
2858 // PACKAGE: The package name of the app the permission was revoked for
2859 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2860
2861 // ACTION: An app requested the permission WRITE_CONTACTS
2862 // PACKAGE: The package name of the app requesting the permission
2863 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2864
2865 // ACTION: An app was granted the permission WRITE_CONTACTS
2866 // PACKAGE: The package name of the app that was granted the permission
2867 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2868
2869 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2870 // PACKAGE: The package name of the app requesting the permission
2871 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2872
2873 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2874 // PACKAGE: The package name of the app the permission was revoked for
2875 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2876
2877 // ACTION: An app requested the permission GET_ACCOUNTS
2878 // PACKAGE: The package name of the app requesting the permission
2879 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2880
2881 // ACTION: An app was granted the permission GET_ACCOUNTS
2882 // PACKAGE: The package name of the app that was granted the permission
2883 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2884
2885 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2886 // PACKAGE: The package name of the app requesting the permission
2887 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2888
2889 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2890 // PACKAGE: The package name of the app the permission was revoked for
2891 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2892
2893 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2894 // PACKAGE: The package name of the app requesting the permission
2895 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2896
2897 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2898 // PACKAGE: The package name of the app that was granted the permission
2899 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2900
2901 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2902 // PACKAGE: The package name of the app requesting the permission
2903 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2904
2905 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2906 // PACKAGE: The package name of the app the permission was revoked for
2907 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2908
2909 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2910 // PACKAGE: The package name of the app requesting the permission
2911 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2912
2913 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2914 // PACKAGE: The package name of the app that was granted the permission
2915 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2916
2917 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2918 // PACKAGE: The package name of the app requesting the permission
2919 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2920
2921 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2922 // PACKAGE: The package name of the app the permission was revoked for
2923 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2924
2925 // ACTION: An app requested the permission RECORD_AUDIO
2926 // PACKAGE: The package name of the app requesting the permission
2927 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2928
2929 // ACTION: An app was granted the permission RECORD_AUDIO
2930 // PACKAGE: The package name of the app that was granted the permission
2931 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2932
2933 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2934 // PACKAGE: The package name of the app requesting the permission
2935 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2936
2937 // ACTION: The permission RECORD_AUDIO was revoked for an app
2938 // PACKAGE: The package name of the app the permission was revoked for
2939 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2940
2941 // ACTION: An app requested the permission READ_PHONE_STATE
2942 // PACKAGE: The package name of the app requesting the permission
2943 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2944
2945 // ACTION: An app was granted the permission READ_PHONE_STATE
2946 // PACKAGE: The package name of the app that was granted the permission
2947 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2948
2949 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2950 // PACKAGE: The package name of the app requesting the permission
2951 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2952
2953 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2954 // PACKAGE: The package name of the app the permission was revoked for
2955 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2956
2957 // ACTION: An app requested the permission CALL_PHONE
2958 // PACKAGE: The package name of the app requesting the permission
2959 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2960
2961 // ACTION: An app was granted the permission CALL_PHONE
2962 // PACKAGE: The package name of the app that was granted the permission
2963 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2964
2965 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2966 // PACKAGE: The package name of the app requesting the permission
2967 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2968
2969 // ACTION: The permission CALL_PHONE was revoked for an app
2970 // PACKAGE: The package name of the app the permission was revoked for
2971 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2972
2973 // ACTION: An app requested the permission READ_CALL_LOG
2974 // PACKAGE: The package name of the app requesting the permission
2975 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2976
2977 // ACTION: An app was granted the permission READ_CALL_LOG
2978 // PACKAGE: The package name of the app that was granted the permission
2979 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2980
2981 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2982 // PACKAGE: The package name of the app requesting the permission
2983 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2984
2985 // ACTION: The permission READ_CALL_LOG was revoked for an app
2986 // PACKAGE: The package name of the app the permission was revoked for
2987 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2988
2989 // ACTION: An app requested the permission WRITE_CALL_LOG
2990 // PACKAGE: The package name of the app requesting the permission
2991 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2992
2993 // ACTION: An app was granted the permission WRITE_CALL_LOG
2994 // PACKAGE: The package name of the app that was granted the permission
2995 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2996
2997 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2998 // PACKAGE: The package name of the app requesting the permission
2999 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3000
3001 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3002 // PACKAGE: The package name of the app the permission was revoked for
3003 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3004
3005 // ACTION: An app requested the permission ADD_VOICEMAIL
3006 // PACKAGE: The package name of the app requesting the permission
3007 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3008
3009 // ACTION: An app was granted the permission ADD_VOICEMAIL
3010 // PACKAGE: The package name of the app that was granted the permission
3011 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3012
3013 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3014 // PACKAGE: The package name of the app requesting the permission
3015 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3016
3017 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3018 // PACKAGE: The package name of the app the permission was revoked for
3019 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3020
3021 // ACTION: An app requested the permission USE_SIP
3022 // PACKAGE: The package name of the app requesting the permission
3023 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3024
3025 // ACTION: An app was granted the permission USE_SIP
3026 // PACKAGE: The package name of the app that was granted the permission
3027 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3028
3029 // ACTION: An app requested the permission USE_SIP and the request was denied
3030 // PACKAGE: The package name of the app requesting the permission
3031 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3032
3033 // ACTION: The permission USE_SIP was revoked for an app
3034 // PACKAGE: The package name of the app the permission was revoked for
3035 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3036
3037 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3038 // PACKAGE: The package name of the app requesting the permission
3039 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3040
3041 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3042 // PACKAGE: The package name of the app that was granted the permission
3043 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3044
3045 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3046 // PACKAGE: The package name of the app requesting the permission
3047 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3048
3049 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3050 // PACKAGE: The package name of the app the permission was revoked for
3051 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3052
3053 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3054 // PACKAGE: The package name of the app requesting the permission
3055 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3056
3057 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3058 // PACKAGE: The package name of the app that was granted the permission
3059 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3060
3061 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3062 // PACKAGE: The package name of the app requesting the permission
3063 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3064
3065 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3066 // PACKAGE: The package name of the app the permission was revoked for
3067 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3068
3069 // ACTION: An app requested the permission BODY_SENSORS
3070 // PACKAGE: The package name of the app requesting the permission
3071 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3072
3073 // ACTION: An app was granted the permission BODY_SENSORS
3074 // PACKAGE: The package name of the app that was granted the permission
3075 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3076
3077 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3078 // PACKAGE: The package name of the app requesting the permission
3079 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3080
3081 // ACTION: The permission BODY_SENSORS was revoked for an app
3082 // PACKAGE: The package name of the app the permission was revoked for
3083 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3084
3085 // ACTION: An app requested the permission SEND_SMS
3086 // PACKAGE: The package name of the app requesting the permission
3087 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3088
3089 // ACTION: An app was granted the permission SEND_SMS
3090 // PACKAGE: The package name of the app that was granted the permission
3091 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3092
3093 // ACTION: An app requested the permission SEND_SMS and the request was denied
3094 // PACKAGE: The package name of the app requesting the permission
3095 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3096
3097 // ACTION: The permission SEND_SMS was revoked for an app
3098 // PACKAGE: The package name of the app the permission was revoked for
3099 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3100
3101 // ACTION: An app requested the permission RECEIVE_SMS
3102 // PACKAGE: The package name of the app requesting the permission
3103 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3104
3105 // ACTION: An app was granted the permission RECEIVE_SMS
3106 // PACKAGE: The package name of the app that was granted the permission
3107 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3108
3109 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3110 // PACKAGE: The package name of the app requesting the permission
3111 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3112
3113 // ACTION: The permission RECEIVE_SMS was revoked for an app
3114 // PACKAGE: The package name of the app the permission was revoked for
3115 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3116
3117 // ACTION: An app requested the permission READ_SMS
3118 // PACKAGE: The package name of the app requesting the permission
3119 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3120
3121 // ACTION: An app was granted the permission READ_SMS
3122 // PACKAGE: The package name of the app that was granted the permission
3123 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3124
3125 // ACTION: An app requested the permission READ_SMS and the request was denied
3126 // PACKAGE: The package name of the app requesting the permission
3127 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3128
3129 // ACTION: The permission READ_SMS was revoked for an app
3130 // PACKAGE: The package name of the app the permission was revoked for
3131 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3132
3133 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3134 // PACKAGE: The package name of the app requesting the permission
3135 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3136
3137 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3138 // PACKAGE: The package name of the app that was granted the permission
3139 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3140
3141 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3142 // PACKAGE: The package name of the app requesting the permission
3143 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3144
3145 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3146 // PACKAGE: The package name of the app the permission was revoked for
3147 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3148
3149 // ACTION: An app requested the permission RECEIVE_MMS
3150 // PACKAGE: The package name of the app requesting the permission
3151 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3152
3153 // ACTION: An app was granted the permission RECEIVE_MMS
3154 // PACKAGE: The package name of the app that was granted the permission
3155 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3156
3157 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3158 // PACKAGE: The package name of the app requesting the permission
3159 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3160
3161 // ACTION: The permission RECEIVE_MMS was revoked for an app
3162 // PACKAGE: The package name of the app the permission was revoked for
3163 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3164
3165 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3166 // PACKAGE: The package name of the app requesting the permission
3167 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3168
3169 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3170 // PACKAGE: The package name of the app that was granted the permission
3171 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3172
3173 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3174 // PACKAGE: The package name of the app requesting the permission
3175 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3176
3177 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3178 // PACKAGE: The package name of the app the permission was revoked for
3179 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3180
3181 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3182 // PACKAGE: The package name of the app requesting the permission
3183 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3184
3185 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3186 // PACKAGE: The package name of the app that was granted the permission
3187 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3188
3189 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3190 // PACKAGE: The package name of the app requesting the permission
3191 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3192
3193 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3194 // PACKAGE: The package name of the app the permission was revoked for
3195 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3196
Mahaverfa6566e2016-11-29 21:08:14 +00003197 // ACTION: Logged when a provisioning session has started
3198 PROVISIONING_SESSION_STARTED = 734;
3199
3200 // ACTION: Logged when a provisioning session has completed
3201 PROVISIONING_SESSION_COMPLETED = 735;
3202
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003203 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003204 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003205 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003206
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003207 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003208 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003209 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003210
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003211 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003212 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003213 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003214
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003215 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003216 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003217 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003218
Santos Cordon3107d292016-09-20 15:50:35 -07003219 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3220 // SUBTYPE: slider value
3221 // CATEGORY: QUICK_SETTINGS
3222 // OS: 6.0
3223 ACTION_BRIGHTNESS_FOR_VR = 498;
3224
Hugo Benichie1cbf152016-12-08 09:36:52 +09003225 // ACTION: A captive portal was detected during network validation
3226 // CATEGORY: NOTIFICATION
3227 // OS: N-MR2
3228 NOTIFICATION_NETWORK_SIGN_IN = 740;
3229
3230 // ACTION: An unvalidated network without Internet was selected by the user
3231 // CATEGORY: NOTIFICATION
3232 // OS: N-MR2
3233 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3234
3235 // ACTION: A validated network failed revalidation and lost Internet access
3236 // CATEGORY: NOTIFICATION
3237 // OS: N-MR2
3238 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3239
3240 // ACTION: The system default network switched to a different network
3241 // CATEGORY: NOTIFICATION
3242 // OS: N-MR2
3243 NOTIFICATION_NETWORK_SWITCH = 743;
3244
Fan Zhang074c4cb2016-12-21 12:10:33 -08003245 // OPEN: Settings > System
3246 SETTINGS_SYSTEM_CATEGORY = 744;
3247
3248 // OPEN: Settings > Storage
3249 SETTINGS_STORAGE_CATEGORY = 745;
3250
3251 // OPEN: Settings > Network & Internet
3252 SETTINGS_NETWORK_CATEGORY = 746;
3253
3254 // OPEN: Settings > Connected Device
3255 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3256
3257 // OPEN: Settings > App & Notification
3258 SETTINGS_APP_NOTIF_CATEGORY = 748;
3259
3260 // OPEN: Settings > System > Input & Gesture
3261 SETTINGS_INPUT_CATEGORY = 749;
3262
3263 // OPEN: Settings > System > Language & Region
3264 SETTINGS_LANGUAGE_CATEGORY = 750;
3265
3266 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3267 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3268
3269 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3270 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3271
3272 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3273 SETTINGS_GESTURE_PICKUP = 753;
3274
3275 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3276 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3277
3278 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3279 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3280
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003281 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3282 // CATEGORY: Settings
3283 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3284
Alison Cichowlas803054d2016-12-13 14:38:01 -05003285 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003286 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003287 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3288 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3289 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003290
Salvador Martinezc43ab062016-12-21 11:09:11 -08003291 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3292 // user accepted
3293 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003294
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003295 // Enclosing category for group of APP_TRANSITION_FOO events,
3296 // logged when we execute an app transition.
3297 APP_TRANSITION = 761;
3298
Fan Zhang945deea2017-01-11 16:37:49 -08003299 // ACTION: User leaves Settings search UI without entering any query.
3300 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3301
3302 // ACTION: Clicking on any search result in Settings.
3303 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003304
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003305 // ACTION: Allow Battery optimization for an app
3306 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3307
3308 // ACTION: Deny Battery optimization for an app
3309 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3310
3311 // ACTION: Enable Device Admin app
3312 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3313
3314 // ACTION: Disable Device Admin app
3315 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3316
3317 // ACTION: Allow "Do Not Disturb access" for an app
3318 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3319
3320 // ACTION: Deny "Do Not Disturb access" for an app
3321 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3322
3323 // ACTION: Allow "Draw over other apps" for an app
3324 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3325
Christine Franks47175c32017-03-14 10:21:25 -07003326 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003327 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3328
3329 // ACTION: Allow "VR helper services" for an app
3330 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3331
3332 // ACTION: Deny "VR helper services" for an app
3333 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3334
3335 // ACTION: Allow "Modify system settings" for an app
3336 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3337
3338 // ACTION: Deny "Modify system settings" for an app
3339 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3340
3341 // ACTION: Allow "Notification access" for an app
3342 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3343
3344 // ACTION: Deny "Notification access" for an app
3345 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3346
3347 // ACTION: "Premium SMS access" for an app - "ask user" option
3348 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3349
3350 // ACTION: "Premium SMS access" for an app - "never allow" option
3351 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3352
3353 // ACTION: "Premium SMS access" for an app - "always allow" option
3354 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3355
3356 // ACTION: Allow "Unrestricted data access" for an app
3357 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3358
3359 // ACTION: Deny "Unrestricted data access" for an app
3360 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3361
3362 // ACTION: Allow "Usage access" for an app
3363 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3364
3365 // ACTION: Deny "Usage access" for an app
3366 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3367
Fan Zhangad5dacc2017-01-18 14:18:54 -08003368 // OPEN: Settings > Apps > Default Apps > Default browser
3369 DEFAULT_BROWSER_PICKER = 785;
3370
3371 // OPEN: Settings > Apps > Default Apps > Default emergency app
3372 DEFAULT_EMERGENCY_APP_PICKER = 786;
3373
3374 // OPEN: Settings > Apps > Default Apps > Default home
3375 DEFAULT_HOME_PICKER = 787;
3376
3377 // OPEN: Settings > Apps > Default Apps > Default phone
3378 DEFAULT_PHONE_PICKER = 788;
3379
3380 // OPEN: Settings > Apps > Default Apps > Default sms
3381 DEFAULT_SMS_PICKER = 789;
3382
3383 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3384 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3385
3386 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3387 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3388
Jason Long1b51da62017-01-24 11:35:31 -08003389 // OPEN: Settings > Apps > Default Apps > Default autofill app
3390 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003391
Chris Wren26ca65d2016-11-29 10:43:28 -05003392 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003393 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003394 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3395 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3396 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3397 NOTIFICATION_ID = 796;
3398 NOTIFICATION_TAG = 797;
3399 NOTIFICATION_SHADE_INDEX = 798;
3400 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003401
Anas Karbilaf7648f42016-12-11 00:55:02 +01003402 // OPEN: QS NFC tile shown
3403 // ACTION: QS NFC tile tapped
3404 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003405 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003406
Chris Wren26ca65d2016-11-29 10:43:28 -05003407 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003408 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003409 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3410 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3411 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3412 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3413 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3414 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3415
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003416 // ACTION: "Force stop" action on an app
3417 ACTION_APP_FORCE_STOP = 807;
3418
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003419 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3420 // CATEGORY: SETTINGS
3421 // OS: 8.0
3422 MANAGE_EXTERNAL_SOURCES = 808;
3423
Mahaver6cd47162017-01-23 09:59:33 +00003424 // ACTION: Logged when terms activity finishes.
3425 // TIME: Indicates time taken by terms activity to finish in MS.
3426 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3427
3428 // Indicates number of terms displayed on the terms screen.
3429 PROVISIONING_TERMS_COUNT = 810;
3430
3431 // Indicates number of terms read on the terms screen.
3432 PROVISIONING_TERMS_READ = 811;
3433
Winson Chung59fda9e2017-01-20 16:14:51 -08003434 // Logs that the user has edited the picture-in-picture settings.
3435 // CATEGORY: SETTINGS
3436 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3437
Winson Chungf4ac0632017-03-17 12:34:12 -07003438 // ACTION: Allow "Enable picture-in-picture" for an app
3439 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003440
Winson Chungf4ac0632017-03-17 12:34:12 -07003441 // ACTION: Deny "Enable picture-in-picture" for an app
3442 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003443
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003444 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3445 // CATEGORY: SETTINGS
3446 // OS: 8.0
3447 TTS_SLIDERS = 815;
3448
Jason Monk524fb402017-01-25 10:33:31 -05003449 // ACTION: Settings -> Display -> Theme
3450 ACTION_THEME = 816;
3451
chchaob8e253a2017-01-25 12:12:09 -08003452 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3453 // ACTION: Select to Speak configuration is chosen
3454 // SUBTYPE: 0 is off, 1 is on
3455 // CATEGORY: SETTINGS
3456 // OS: N
3457 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3458
Anton Philippov95a553e2017-01-27 00:08:24 +00003459 // OPEN: Settings > System > Backup
3460 // CATEGORY: SETTINGS
3461 // OS: O
3462 BACKUP_SETTINGS = 818;
3463
Winson Chung14fbe142016-12-19 16:18:24 -08003464 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003465 // VALUE: true if it was entered while hiding as a result of moving to
3466 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003467 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3468
3469 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3470 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3471 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3472
3473 // ACTION: The activity currently in picture-in-picture was minimized
3474 // VALUE: True if the PiP was minimized, false otherwise
3475 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3476
3477 // ACTION: Picture-in-picture was dismissed via the dismiss button
3478 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3479 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3480
3481 // ACTION: The visibility of the picture-in-picture meny
3482 // VALUE: Whether or not the menu is visible
3483 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3484
3485 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3486 // logged when the aspect ratio changes
3487 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3488
3489 // The current aspect ratio of the PiP, logged when it changes.
3490 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3491
Chris Wren27a52fa2017-02-01 14:21:43 -05003492 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3493 // CATEGORY: GLOBAL_SYSTEM_UI
3494 // OS: O
3495 FIELD_GESTURE_LENGTH = 826;
3496
3497 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3498 // CATEGORY: GLOBAL_SYSTEM_UI
3499 // OS: O
3500 FIELD_GESTURE_VELOCITY = 827;
3501
Christine Franks27fde392017-02-07 10:21:55 -08003502 // OPEN: Carrier demo mode password dialog
3503 CARRIER_DEMO_MODE_PASSWORD = 828;
3504
Fan Zhang70967f32017-02-13 16:02:24 -08003505 // ACTION: Create a Settings shortcut item.
3506 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3507
3508 // ACTION: A tile in Settings information architecture is clicked
3509 ACTION_SETTINGS_TILE_CLICK = 830;
3510
Julia Reynolds520df6e2017-02-13 09:05:10 -05003511 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3512 // updated
3513 // CATEGORY: NOTIFICATION
3514 // OS: O
3515 NOTIFICATION_SNOOZED = 831;
3516
3517 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3518 // OS: O
3519 NOTIFICATION_SNOOZED_CRITERIA = 832;
3520
Fan Zhang65899432017-02-14 13:36:53 -08003521 // FIELD - The context (source) from which an action is performed
3522 FIELD_CONTEXT = 833;
3523
Fan Zhangd95dcb42017-02-14 13:48:09 -08003524 // ACTION: Settings advanced button is expanded
3525 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3526
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003527 // ACTION: Logs the number of times the saved network evaluator was used to
3528 // recommend a wifi network
3529 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3530
3531 // ACTION: Logs the number of times the recommended network evaluator was
3532 // used to recommend a wifi network
3533 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3534
3535 // ACTION: Logs the number of times a recommended network was resulted in a
3536 // successful connection
3537 // VALUE: true if the connection was successful, false if the connection failed
3538 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3539
Daniel Nishic581bfc2017-02-08 10:18:19 -08003540 // OPEN: Settings > Storage > Games
3541 // CATEGORY: SETTINGS
3542 // OS: O
3543 APPLICATIONS_STORAGE_GAMES = 838;
3544
3545 // OPEN: Settings > Storage > Audio and Music
3546 // CATEGORY: SETTINGS
3547 // OS: O
3548 APPLICATIONS_STORAGE_MUSIC = 839;
3549
3550 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3551 // CATEGORY: SETTINGS
3552 // OS: O
3553 STORAGE_FREE_UP_SPACE_NOW = 840;
3554
3555 // ACTION: Settings > Storage > Files to open the File Manager
3556 // CATEGORY: SETTINGS
3557 // OS: O
3558 STORAGE_FILES = 841;
3559
Fan Zhangb1d49222017-02-15 17:12:58 -08003560 // FIELD - Rank of the clicked Settings search result
3561 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3562
Fan Zhang7f2cace2017-02-17 12:05:48 -08003563 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3564 DEFAULT_ASSIST_PICKER = 843;
3565
3566 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3567 DEFAULT_VOICE_INPUT_PICKER = 844;
3568
Daniel Nishi4058a842017-02-21 17:11:35 -08003569 // OPEN: Settings > Storage > [Profile]
3570 SETTINGS_STORAGE_PROFILE = 845;
3571
Doris Lingedb84c32017-02-23 10:56:01 -08003572 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3573 // CATEGORY: SETTINGS
3574 // OS: O
3575 ENCRYPTION_AND_CREDENTIAL = 846;
3576
Fan Zhangb66e5422017-02-24 14:37:45 -08003577 // ACTION: Settings > About device > Build number
3578 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3579
3580 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3581 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3582
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003583 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3584 // CATEGORY: SETTINGS
3585 // OS: O
3586 WIFI_NETWORK_DETAILS = 849;
3587
jackqdyuleia2a14342017-02-28 16:20:48 -08003588 // ACTION: Settings > Battery > Menu > Usage Alerts
3589 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3590
3591 // ACTION: Settings > Battery > Menu > Optimization
3592 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3593
3594 // ACTION: Settings > Battery > Menu > Apps Toggle
3595 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3596
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003597 // ACTION: Settings > Any preference is changed
3598 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3599
3600 // FIELD: The name of preference when it is changed in Settings
3601 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3602
3603 // FIELD: The new value of preference when it is changed in Settings
3604 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3605
Julia Reynoldsd373d782017-03-03 13:32:57 -05003606 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3607 // channel updated
3608 // PACKAGE: the package the channel belongs too
3609 // CATEGORY: NOTIFICATION
3610 // OS: O
3611 ACTION_NOTIFICATION_CHANNEL = 856;
3612
3613 // Tagged data for notification channel. String.
3614 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3615
3616 // Tagged data for notification channel. int.
3617 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3618
3619 // OPEN: Notification channel group created.
3620 // PACKAGE: the package the group belongs to
3621 // CATEGORY: NOTIFICATION
3622 // OS: O
3623 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3624
3625 // Tagged data for notification channel group. String.
3626 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3627
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003628 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3629 // CATEGORY: SETTINGS
3630 // OS: O
3631 SETTINGS_NETWORK_SCORER = 861;
3632
Fan Zhang99861312017-03-07 14:32:38 -08003633 // OPEN: Settings > About device > Model > Hardware info dialog
3634 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3635
mariagpuyol0f5512e2017-03-01 12:09:56 -08003636 // ACTION: Checks whether a contact's phone still exists
3637 // Value 0: It doesn't exist anymore
3638 // Value 1: It still exists
3639 // Value 2: A SecurityException was thrown
3640 // CATEGORY: SETTINGS
3641 // OS: N
3642 ACTION_PHONE_EXISTS = 863;
3643
3644 // ACTION: Retrieves a contact from CP2
3645 // Value 0: Contact retrieved without issues
3646 // Value 1: An IllegalArgumentException was thrown
3647 // CATEGORY: SETTINGS
3648 // OS: N
3649 ACTION_GET_CONTACT = 864;
3650
Chris Wren4d6b54d2017-04-27 16:56:54 -04003651 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003652 // internal platform metrics use.
3653 RESERVED_FOR_LOGBUILDER_PID = 865;
3654
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003655 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3656 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3657
3658 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3659 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3660
3661 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3662 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3663
3664 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3665 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3666
3667 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3668 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3669
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003670 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003671 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003672
Fan Zhang082d21c2017-03-13 15:25:54 -07003673 // ACTION: Settings > App detail > Uninstall
3674 ACTION_SETTINGS_UNINSTALL_APP = 872;
3675
3676 // ACTION: Settings > App detail > Uninstall Device admin app
3677 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3678
3679 // ACTION: Settings > App detail > Disable app
3680 ACTION_SETTINGS_DISABLE_APP = 874;
3681
3682 // ACTION: Settings > App detail > Enable app
3683 ACTION_SETTINGS_ENABLE_APP = 875;
3684
3685 // ACTION: Settings > App detail > Clear data
3686 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3687
3688 // ACTION: Settings > App detail > Clear cache
3689 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3690
3691 // ACTION: Clicking on any search result in Settings.
3692 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3693
3694 // FIELD: Settings inline search result name
3695 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3696
3697 // FIELD: Settings inline search result value
3698 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3699
Fan Zhang53797932017-03-13 17:46:24 -07003700 // ACTION: Settings > Search > Click saved queries
3701 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3702
Doris Lingbf8d9de2017-03-15 11:52:50 -07003703 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3704 // CATEGORY: SETTINGS
3705 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3706
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003707 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3708 // PACKAGE: The package name of the app requesting the permission
3709 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3710
3711 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3712 // PACKAGE: The package name of the app that was granted the permission
3713 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3714
3715 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3716 // PACKAGE: The package name of the app requesting the permission
3717 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3718
3719 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3720 // PACKAGE: The package name of the app the permission was revoked for
3721 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3722
3723 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3724 // PACKAGE: The package name of the app requesting the permission
3725 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3726
3727 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3728 // PACKAGE: The package name of the app that was granted the permission
3729 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3730
3731 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3732 // PACKAGE: The package name of the app requesting the permission
3733 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3734
3735 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3736 // PACKAGE: The package name of the app the permission was revoked for
3737 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3738
3739 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3740 // PACKAGE: The package name of the app requesting the permission
3741 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3742
3743 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3744 // PACKAGE: The package name of the app that was granted the permission
3745 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3746
3747 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3748 // PACKAGE: The package name of the app requesting the permission
3749 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3750
3751 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3752 // PACKAGE: The package name of the app the permission was revoked for
3753 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3754
3755 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3756 // PACKAGE: The package name of the app requesting the permission
3757 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3758
3759 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3760 // PACKAGE: The package name of the app that was granted the permission
3761 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3762
3763 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3764 // PACKAGE: The package name of the app requesting the permission
3765 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3766
3767 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3768 // PACKAGE: The package name of the app the permission was revoked for
3769 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3770
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003771 // ACTION: Phase 1 of instant application resolution occurred
3772 // OS: O
3773 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3774
3775 // ACTION: Phase 2 of instant application resolution occurred
3776 // OS: O
3777 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3778
3779 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3780 // OS: O
3781 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3782
3783 // FIELD: The status of an ephemeral resolution phase
3784 // Value 0: success
3785 // Value 1: no full hash match
3786 // OS: O
3787 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3788
3789 // FIELD - A token to identify all events that are part of the same instant application launch
3790 // OS: O
3791 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3792
3793 // FIELD - The name of the package responsible for launching the activity
3794 // OS: O
3795 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3796
3797 // FIELD - Whether or not the launched activity is part of an instant application
3798 // OS: O
3799 APP_TRANSITION_IS_EPHEMERAL = 905;
3800
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003801 // An autofill session was started
3802 // Package: Package of app that is autofilled
3803 AUTOFILL_SESSION_STARTED = 906;
3804
3805 // An autofill request was processed by a service
3806 // Type TYPE_SUCCESS: The request succeeded
3807 // Type TYPE_FAILURE: The request failed
3808 // Package: Package of app that is autofilled
3809 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3810 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3811 AUTOFILL_REQUEST = 907;
3812
3813 // Tag of a field for a package of an autofill service
3814 FIELD_AUTOFILL_SERVICE = 908;
3815
3816 // Tag of a field for the number of datasets
3817 FIELD_AUTOFILL_NUM_DATASETS = 909;
3818
3819 // An autofill dataset selection UI was shown
3820 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3821 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3822 // Type TYPE_ACTION: dataset was selected
3823 // Type TYPE_DETAIL: authentication was selected
3824 // Package: Package of app that was autofilled
3825 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3826 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3827 AUTOFILL_FILL_UI = 910;
3828
3829 // Tag of a field for the length of the filter text
3830 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3831
3832 // An autofill authentification succeeded
3833 // Package: Package of app that was autofilled
3834 AUTOFILL_AUTHENTICATED = 912;
3835
3836 // An activity was autofilled and all values could be applied
3837 // Package: Package of app that is autofilled
3838 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3839 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3840 AUTOFILL_DATASET_APPLIED = 913;
3841
3842 // Tag of a field for the number values to be filled in
3843 FIELD_AUTOFILL_NUM_VALUES = 914;
3844
3845 // Tag of a field for the number of views that were filled
3846 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3847
3848 // An autofill save UI was shown
3849 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3850 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3851 // Type TYPE_ACTION: data was saved
3852 // Package: Package of app that was autofilled
3853 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3854 AUTOFILL_SAVE_UI = 916;
3855
3856 // Tag of a field for the number of saveable ids
3857 FIELD_AUTOFILL_NUM_IDS = 917;
3858
3859 // ACTION: An autofill service was reqiested to save data
3860 // Type TYPE_SUCCESS: The request succeeded
3861 // Type TYPE_FAILURE: The request failed
3862 // Package: Package of app that was autofilled
3863 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3864 AUTOFILL_DATA_SAVE_REQUEST = 918;
3865
3866 // An auto-fill session was finished
3867 // Package: Package of app that was autofilled
3868 AUTOFILL_SESSION_FINISHED = 919;
3869
Chris Wren148805582017-03-17 17:18:11 -04003870 // meta-event: a reader has checkpointed the log here.
3871 METRICS_CHECKPOINT = 920;
3872
Fan Zhanged1845f2017-03-23 14:46:59 -07003873 // OPEN: Settings -> Display -> When in VR Mode
3874 VR_DISPLAY_PREFERENCE = 921;
3875
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003876 // OPEN: Settings > Accessibility > Magnification
3877 // CATEGORY: SETTINGS
3878 // OS: O
3879 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003880
3881 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3882 // app.
3883 // VALUE: The package name of the app
3884 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3885
Fan Zhang1a34e752017-03-24 13:44:51 -07003886 // OPEN: Settings -> System -> Reset options
3887 RESET_DASHBOARD = 924;
3888
Jason Monk8c09ac72017-03-16 11:53:40 -04003889 // ACTION: QS -> Tile clicked
3890 ACTION_QS_CLICK = 925;
3891
3892 // ACTION: QS -> Secondary click
3893 ACTION_QS_SECONDARY_CLICK = 926;
3894
3895 // FIELD: Position info in QS clicks
3896 FIELD_QS_POSITION = 927;
3897
3898 // FIELD: The value of a QS tile when clicked (if applicable)
3899 FIELD_QS_VALUE = 928;
3900
3901 // ACTION: QS -> Detail panel -> more settings
3902 ACTION_QS_MORE_SETTINGS = 929;
3903
3904 // ACTION: QS -> Click date
3905 ACTION_QS_DATE = 930;
3906
Jason Monk1b775652017-03-31 15:42:27 -04003907 // ACTION: Event on nav button
3908 ACTION_NAV_BUTTON_EVENT = 931;
3909
3910 // FIELD: Flags for a nav button event
3911 FIELD_FLAGS = 932;
3912
3913 // FIELD: Action for a nav button event
3914 FIELD_NAV_ACTION = 933;
3915
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003916 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3917 // CATEGORY: SETTINGS
3918 // OS: O
3919 FINGERPRINT_REMOVE_SIDECAR = 934;
3920
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003921 // OPEN: Settings > Storage > Movies & TV
3922 // CATEGORY: SETTINGS
3923 // OS: O
3924 APPLICATIONS_STORAGE_MOVIES = 935;
3925
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003926 // OPEN: Text selection "assist" menu item shown.
3927 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3928 // CATEGORY: TEXT_CONTROLS
3929 // OS: O
3930 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3931
3932 // ACTION: Text selection "assist" menu item clicked.
3933 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3934 // CATEGORY: TEXT_CONTROLS
3935 // OS: O
3936 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3937
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003938 // OPEN: Settings > Security > Managed Device Info > Apps installed
3939 // CATEGORY: SETTINGS
3940 // OS: O
3941 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3942
3943 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3944 // CATEGORY: SETTINGS
3945 // OS: O
3946 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3947
3948 // OPEN: Settings > Security > Managed Device Info > Default apps
3949 // CATEGORY: SETTINGS
3950 // OS: O
3951 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3952
Julia Reynolds80b18072017-04-23 12:27:07 -04003953 // OPEN: Settings > Notifications > An app > A channel > Importance
3954 // CATEGORY: SETTINGS
3955 // OS: O
3956 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3957
3958 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3959 // CATEGORY: SETTINGS
3960 // OS: O
3961 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3962
Chris Wren4d6b54d2017-04-27 16:56:54 -04003963 // This value should never appear in log outputs - it is reserved for
3964 // internal platform metrics use.
3965 RESERVED_FOR_LOGBUILDER_UID = 943;
3966
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003967 // OPEN: Running background apps notification > List of background apps
3968 // CATEGORY: GLOBAL_SYSTEM_UI
3969 // OS: O
3970 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3971
Jorim Jaggi515dd682017-05-05 15:05:07 +02003972 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3973 // client.
3974 // OS: O
3975 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3976
Chris Wrenb3921792017-06-01 13:34:46 -04003977 // FIELD - The group ID of a notification.
3978 // Type: string
3979 // OS: O
3980 FIELD_NOTIFICATION_GROUP_ID = 946;
3981
3982 // FIELD - If the notification is a group summary: 1.
3983 // Type: int encoded boolean
3984 // OS: O
3985 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
3986
Felipe Leme9ad29002017-11-30 17:41:57 -08003987 // An app attempted to forge a different component name in the AssisStructure that would be
3988 // passed to the autofill service.
3989 // OS: O (security patch)
3990 // Package: Real package of the app being autofilled
3991 // Tag FIELD_AUTOFILL_SERVICE: Package of the autofill service that processed the request
3992 // TAG FIELD_AUTOFILL_FORGED_COMPONENT_NAME: Component name being forged
3993 AUTOFILL_FORGED_COMPONENT_ATTEMPT = 948;
3994
3995 // FIELD - The component that an app tried tro forged.
3996 // Type: string
3997 // OS: O (security patch)
3998 FIELD_AUTOFILL_FORGED_COMPONENT_NAME = 949;
3999
Chris Wren26ca65d2016-11-29 10:43:28 -05004000 // ---- End O Constants, all O constants go above this line ----
4001
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004002 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4003 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4004
jackqdyulei92e492e2017-04-28 13:04:42 -07004005 // OPEN: Settings > Battery > High Usage > Abnormal app page
4006 // CATEGORY: SETTINGS
4007 FUELGAUGE_ANOMALY_DETAIL = 987;
4008
4009 // OPEN: Settings > Battery > High Usage
4010 DIALOG_HANDLE_ANOMALY = 988;
4011
Jonathan Solnita4138162017-05-10 21:06:04 -07004012 // ACTION: Camera lift gesture
4013 // CATEGORY: GLOBAL_SYSTEM_UI
4014 // OS: O
4015 ACTION_CAMERA_LIFT_TRIGGER = 989;
4016
Maurice Lam76ae09c2017-05-05 12:03:49 -07004017 // OPEN: Choose screen lock dialog in Settings
4018 // CATEGORY: SETTINGS
4019 // OS: O DR
4020 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4021
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004022 // OPEN: Assist Gesture training intro in Settings
4023 // CATEGORY: SETTINGS
4024 // OS: O DR
4025 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4026
4027 // OPEN: Assist Gesture training enrolling in Settings
4028 // CATEGORY: SETTINGS
4029 // OS: O DR
4030 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4031
4032 // OPEN: Assist Gesture training finished in Settings
4033 // CATEGORY: SETTINGS
4034 // OS: O DR
4035 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4036
Fan Zhangc666a202017-05-18 17:50:20 -07004037 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4038 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4039
4040 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4041 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4042
Philip Quinn0f9566d2017-05-23 10:32:08 -07004043 // OPEN: Settings > System > Languages & input > Assist gesture
4044 // CATEGORY: SETTINGS
4045 // OS: O DR
4046 SETTINGS_ASSIST_GESTURE = 996;
4047
4048 // ACTION: Assist gesture released without triggering
4049 // CATEGORY: GLOBAL_SYSTEM_UI
4050 // OS: O DR
4051 ASSIST_GESTURE_RELEASED = 997;
4052
4053 // ACTION: Assist gesture primed
4054 // CATEGORY: GLOBAL_SYSTEM_UI
4055 // OS: O DR
4056 ASSIST_GESTURE_PRIMED = 998;
4057
4058 // ACTION: Assist gesture triggered
4059 // CATEGORY: GLOBAL_SYSTEM_UI
4060 // OS: O DR
4061 ASSIST_GESTURE_TRIGGERED = 999;
4062
Fan Zhang238162b2017-05-25 14:01:41 -07004063 // ACTION: Update default app from Settings
4064 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4065
4066 // FIELD - Query length when Settings search result is clicked
4067 FIELD_SETTINGS_SERACH_QUERY_LENGTH = 1001;
4068
4069 // FIELD - Number of results when Settings search result is clicked
4070 FIELD_SETTINGS_SERACH_RESULT_COUNT = 1002;
4071
Adrian Roos1c81d772017-05-25 18:00:21 -07004072 // OPEN: Settings > Display > Ambient Display
4073 // CATEGORY: SETTINGS
4074 // OS: O DR
4075 AMBIENT_DISPLAY_SETTINGS = 1003;
4076
Hugo Benichi11da42b2017-05-31 11:11:37 +09004077 // ACTION: CaptivePortalLoginActivity starts
4078 // CATEGORY: GLOBAL_SYSTEM_UI
4079 // OS: O DR
4080 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4081
4082 // ACTION: CaptivePortalLoginActivity auto-closes
4083 // CATEGORY: GLOBAL_SYSTEM_UI
4084 // OS: O DR
4085 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4086
4087 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4088 // CATEGORY: GLOBAL_SYSTEM_UI
4089 // OS: O DR
4090 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4091
4092 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4093 // CATEGORY: GLOBAL_SYSTEM_UI
4094 // OS: O DR
4095 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4096
4097 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4098 // CATEGORY: SETTINGS
4099 // OS: O DR
4100 ACTION_WIFI_SIGNIN = 1008;
4101
Antony Sargentf3cc3172017-05-04 14:58:06 -07004102 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4103 // CATEGORY: SETTINGS
4104 // OS: O DR
4105 BLUETOOTH_DEVICE_DETAILS = 1009;
4106
fanzhang172255759d2017-06-05 21:43:47 -07004107 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4108 CONFIGURE_KEYGUARD_DIALOG = 1010;
4109
Fan Zhange33c70d2017-06-06 12:37:13 -07004110 // Open: Settings > Search > No Result View
4111 SETTINGS_SEARCH_NO_RESULT = 1011;
4112
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004113 // OPEN: Assist Gesture before training
4114 // CATEGORY: SETTINGS
4115 // OS: O DR
4116 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4117
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004118 // CaptivePortalLoginActivity displays SSL error page
4119 // CATEGORY: GLOBAL_SYSTEM_UI
4120 // OS: O DR
4121 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4122
Fan Zhang1a0fc992017-06-13 13:45:21 -07004123 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4124 WIFI_TETHER_SETTINGS = 1014;
4125
Antony Sargentc3b5da62017-06-16 11:50:13 -07004126 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4127 // -> Edit name button.
4128 // CATEGORY: SETTINGS
4129 // OS: O DR
4130 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4131
Fan Zhang543587d2017-06-19 12:32:14 -07004132 // ACTION: Settings > Notification Settings > Open application notification
4133 // CATEGORY: SETTINGS
4134 // OS: O DR
4135 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4136
4137 // ACTION: Settings > App Info > Open app settings
4138 // CATEGORY: SETTINGS
4139 // OS: O DR
4140 ACTION_OPEN_APP_SETTING = 1017;
4141
jackqdyulei2f1a3592017-06-19 13:11:05 -07004142 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4143 // CATEGORY: SETTINGS
4144 // OS: O DR
4145 BLUETOOTH_PAIRING = 1018;
4146
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004147 // ACTION: Collect PSD Signals
4148 // CATEGORY: SETTINGS
4149 // OS: O DR
4150 ACTION_PSD_LOADER = 1019;
4151
jackqdyulei602bcc92017-06-21 15:17:53 -07004152 // ACTION: Background check action on an app
4153 // CATEGORY: SETTINGS
4154 // OS: O DR
4155 ACTION_APP_BACKGROUND_CHECK = 1020;
4156
4157 // ACTION: Location check action on an app
4158 // CATEGORY: SETTINGS
4159 // OS: O DR
4160 ACTION_APP_LOCATION_CHECK = 1021;
4161
Charlie Wang15a36ed2017-06-14 14:46:39 -07004162 // Device headset status
4163 // CATEGORY: OTHER
4164 // SUBTYPE: 1 is DON, 2 is DOFF
4165 // OS: O DR
4166 ACTION_HEADSET_STATUS = 1022;
4167
4168 // Device Headset Plug status
4169 // CATEGORY: OTHER
4170 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4171 // OS: O DR
4172 ACTION_HEADSET_PLUG = 1023;
4173
4174 // Device Headset battery level on Plug
4175 // CATEGORY: OTHER
4176 // FIELD - The battery percentage when the user decided to plug in
4177 // Type: integer
4178 // OS: O DR
4179 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4180
Charlie Wang566ec702017-06-26 15:30:03 -07004181 // Device Headset battery level on Plug
4182 // CATEGORY: OTHER
4183 // FIELD - The battery percentage when the user decided to plug in
4184 // Type: integer
4185 // OS: O DR
4186 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4187
Charlie Wang15a36ed2017-06-14 14:46:39 -07004188 // Device Headset Pose status
4189 // CATEGORY: OTHER
4190 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4191 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004192 ACTION_HEADSET_POSE_STATUS = 1026;
4193
4194 // Device Headset Usage session time
4195 // CATEGORY: OTHER
4196 // FIELD - The time the headset was used in a session
4197 // OS: O DR
4198 FIELD_SESSION_TIME_MS = 1027;
4199
4200 // Device Headset Idle time
4201 // CATEGORY: OTHER
4202 // FIELD - The time in between each session
4203 // OS: O DR
4204 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4205
4206 // Device Headset charge session time
4207 // CATEGORY: OTHER
4208 // FIELD - The time taken for each charge
4209 // OS: O DR
4210 FIELD_TIME_OF_CHARGE_MS = 1029;
4211
4212 // Device Headset time between charge
4213 // CATEGORY: OTHER
4214 // FIELD - The time in between each charge
4215 // OS: O DR
4216 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004217
Antony Sargentca701a22017-07-05 17:02:00 -07004218 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4219 // -> Forget button.
4220 // CATEGORY: SETTINGS
4221 // OS: O DR
4222 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4223
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004224 // An event from the camera service
4225 // CATEGORY: OTHER
4226 // SUBTYPE: CameraEvent
4227 // OS: O DR
4228 ACTION_CAMERA_EVENT = 1032;
4229
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004230 // OPEN: Settings > Trampoline Intent > Settings page
4231 // CATEGORY: SETTINGS
4232 // OS: O DR
4233 TRAMPOLINE_SETTINGS_EVENT = 1033;
4234
Romain Guyaf5e1122017-10-24 21:37:34 +01004235 // OPEN: Settings > Display > Colors
4236 // CATEGORY: SETTINGS
4237 // OS: O MR (backported for O DR)
4238 COLOR_MODE_SETTINGS = 1143;
4239
Chris Wren9a4f2662017-06-29 10:10:02 -04004240 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4241
Adrian Roos159ef7b2016-02-25 11:58:32 -08004242 // Add new aosp constants above this line.
4243 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004244 }
4245}