blob: 4d9b0ddde14b6fb2debad20c997edc215cb009c3 [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
Chris Wren77781d32016-01-11 14:49:26 -0500141 // Known visual elements: views or controls.
142 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500143 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500144 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500145
146 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500147 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500148
149 // OPEN: Settings > Accessibility
150 // CATEGORY: SETTINGS
151 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500152 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500153
154 // OPEN: Settings > Accessibility > Captions
155 // CATEGORY: SETTINGS
156 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500157 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500158
159 // OPEN: Settings > Accessibility > [Service]
160 // CATEGORY: SETTINGS
161 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500162 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500163
164 // OPEN: Settings > Accessibility > Color correction
165 // CATEGORY: SETTINGS
166 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500167 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500168
169 // OPEN: Settings > Accessibility > Accessibility shortcut
170 // CATEGORY: SETTINGS
171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500172 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500173
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700174 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
175 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
176 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500177 // CATEGORY: SETTINGS
178 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500179 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500180
181 // OPEN: Settings > Accounts
182 // CATEGORY: SETTINGS
183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500184 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500185
186 // OPEN: Settings > Accounts > [Single Account Sync Settings]
187 // CATEGORY: SETTINGS
188 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500189 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500190
191 // OPEN: Settings > Accounts > Add an account
192 // CATEGORY: SETTINGS
193 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500194 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500195
196 // OPEN: Settings > Accounts > [List of accounts when more than one]
197 // CATEGORY: SETTINGS
198 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500199 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500200
201 // OPEN: Settings > Cellular network settings > APNs
202 // CATEGORY: SETTINGS
203 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500204 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500205
206 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
207 // CATEGORY: SETTINGS
208 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500209 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500210
211 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500212 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500213
214 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500215 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500216
217 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500218 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500219
220 // OPEN: Settings > Apps > Configure apps > App links > [App]
221 // CATEGORY: SETTINGS
222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500223 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500224
225 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500226 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500227
228 // OPEN: Settings > Internal storage > Apps storage > [App]
229 // CATEGORY: SETTINGS
230 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500231 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500232
233 // OPEN: Settings > Apps > [App info]
234 // CATEGORY: SETTINGS
235 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500236 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500237
238 // OPEN: Settings > Memory > App usage > [App Memory usage]
239 // CATEGORY: SETTINGS
240 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500241 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500242
243 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500244 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500245
246 // OPEN: Settings > Memory > App usage
247 // CATEGORY: SETTINGS
248 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500249 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500250
251 // OPEN: Settings > Bluetooth
252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Choose Bluetooth device (ex: when sharing)
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500262 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500263
264 // OPEN: Settings > Security > Choose screen lock
265 // CATEGORY: SETTINGS
266 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500267 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500268
269 // OPEN: Settings > Security > Choose screen lock > Choose your password
270 // CATEGORY: SETTINGS
271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500272 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500273
274 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
275 // CATEGORY: SETTINGS
276 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500277 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Settings > Security > Choose screen lock > Confirm your password
280 // CATEGORY: SETTINGS
281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500282 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OPEN: Settings > Security > Encrypt phone
290 // CATEGORY: SETTINGS
291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500292 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Security > Encrypt phone > Confirm
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OPEN: Settings > Search results
300 // CATEGORY: SETTINGS
301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500302 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings (Root page)
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500310 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500311
312 // OPEN: Settings > Data usage
313 // CATEGORY: SETTINGS
314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500315 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500316
317 // OPEN: Settings > Date & time
318 // CATEGORY: SETTINGS
319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500320 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500321
322 // OPEN: Settings > Developer options
323 // CATEGORY: SETTINGS
324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500325 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500326
327 // OPEN: Settings > About phone
328 // CATEGORY: SETTINGS
329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500330 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OPEN: Settings > About phone > Status > IMEI information
333 // CATEGORY: SETTINGS
334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500335 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings > Internal storage
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > About phone > Status > SIM status
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OPEN: Settings > About phone > Status
348 // CATEGORY: SETTINGS
349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500350 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500353 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > Display
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > Display > Daydream
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Settings > Security > Screen lock > Secure start-up
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OPEN: Settings > Security > Nexus Imprint
371 // CATEGORY: SETTINGS
372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500373 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500376 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500377
378 // OPEN: Settings > Battery > History details
379 // CATEGORY: SETTINGS
380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500381 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500382
383 // OPEN: Settings > Battery > Battery saver
384 // CATEGORY: SETTINGS
385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500386 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500387
388 // OPEN: Settings > Battery > [App Use details]
389 // CATEGORY: SETTINGS
390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500391 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500392
393 // OPEN: Settings > Battery
394 // CATEGORY: SETTINGS
395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500396 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500397
398 // OPEN: Settings > Home
399 // CATEGORY: SETTINGS
400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500401 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500402
403 // OPEN: Settings > Security > SIM card lock settings
404 // CATEGORY: SETTINGS
405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500406 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500407
408 // OPEN: Settings > Language & input
409 // CATEGORY: SETTINGS
410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500411 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500412
413 // OPEN: Settings > Language & input > Physical keyboard
414 // CATEGORY: SETTINGS
415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500416 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings > Language & input > Spell checker
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500424 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500425
426 // OPEN: Settings > Language & input > Personal dictionary
427 // CATEGORY: SETTINGS
428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500429 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OPEN: Settings > Language & input > Add word
432 // CATEGORY: SETTINGS
433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500434 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > Location
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > Location > Location mode
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Apps
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 // OPEN: Settings > Backup & reset > Factory data reset
452 // CATEGORY: SETTINGS
453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500454 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OPEN: Settings > Data usage > Network restrictions
462 // CATEGORY: SETTINGS
463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500464 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OPEN: Settings > More > Android Beam
467 // CATEGORY: SETTINGS
468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500469 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Tap & pay
472 // CATEGORY: SETTINGS
473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500474 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Sound & notification
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > Sound & notification > App notifications > [App]
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Sound & notification > Other sounds
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500492 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500493
494 // OPEN: Settings Widget > Notification log
495 // CATEGORY: SETTINGS
496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500497 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500498
499 // OPEN: Settings > Sound & notification > Do not disturb
500 // CATEGORY: SETTINGS
501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500502 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500505 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500506
507 // OPEN: Print job notification > Print job settings
508 // CATEGORY: SETTINGS
509 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500510 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500511
512 // OPEN: Settings > Printing > [Print Service]
513 // CATEGORY: SETTINGS
514 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500515 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500516
517 // OPEN: Settings > Printing
518 // CATEGORY: SETTINGS
519 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500520 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500521
522 // OPEN: Settings > Backup & reset
523 // CATEGORY: SETTINGS
524 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500525 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500528 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500529
530 // OPEN: Settings > Backup & reset > Network settings reset
531 // CATEGORY: SETTINGS
532 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500533 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500534
535 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
536 // CATEGORY: SETTINGS
537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500538 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Settings > Developer Options > Running Services
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OPEN: Settings > Security > Screen pinning
546 // CATEGORY: SETTINGS
547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500548 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 // OPEN: Settings > Security
551 // CATEGORY: SETTINGS
552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500553 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > SIM cards
556 // CATEGORY: SETTINGS
557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500558 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500561 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > More > Tethering & portable hotspot
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OPEN: Settings > Security > Trust agents
569 // CATEGORY: SETTINGS
570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500571 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OPEN: Settings > Security > Trusted credentials
574 // CATEGORY: SETTINGS
575 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500576 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500577
578 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
579 // CATEGORY: SETTINGS
580 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500581 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OPEN: Settings > Language & input > Text-to-speech output
584 // CATEGORY: SETTINGS
585 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500586 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Settings > Security > Apps with usage access
589 // CATEGORY: SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: Settings > Users
594 // CATEGORY: SETTINGS
595 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500596 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500597
598 // OPEN: Settings > Users > [Restricted profile app & content access]
599 // CATEGORY: SETTINGS
600 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500601 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings > Users > [User settings]
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500609 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: Settings > More > VPN
612 // CATEGORY: SETTINGS
613 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500614 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Settings > Display > Choose wallpaper from
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Display > Cast
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: Settings > Wi-Fi
627 // CATEGORY: SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
632 // CATEGORY: SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: Settings > More > Wi-Fi Calling
637 // CATEGORY: SETTINGS
638 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500639 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500640
641 // OPEN: Settings > Wi-Fi > Saved networks
642 // CATEGORY: SETTINGS
643 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500644 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500645
646 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500647 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500650 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500651
652 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
653 // CATEGORY: SETTINGS
654 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500655 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500656
657 // OPEN: Settings > More
658 // CATEGORY: SETTINGS
659 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500660 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500661
662 // OPEN: Quick Settings Panel
663 // CATEGORY: QUICK_SETTINGS
664 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500665 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500666
667 // OPEN: QS Airplane mode tile shown
668 // ACTION: QS Airplane mode tile tapped
669 // SUBTYPE: 0 is off, 1 is on
670 // CATEGORY: QUICK_SETTINGS
671 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500672 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500673
674 // OPEN: QS Bluetooth tile shown
675 // ACTION: QS Bluetooth tile tapped
676 // SUBTYPE: 0 is off, 1 is on
677 // CATEGORY: QUICK_SETTINGS
678 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500679 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500680
681 // OPEN: QS Cast tile shown
682 // ACTION: QS Cast tile tapped
683 // CATEGORY: QUICK_SETTINGS
684 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500685 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500686
687 // OPEN: QS Cellular tile shown
688 // ACTION: QS Cellular tile tapped
689 // CATEGORY: QUICK_SETTINGS
690 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500691 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500692
693 // OPEN: QS Color inversion tile shown
694 // ACTION: QS Color inversion tile tapped
695 // SUBTYPE: 0 is off, 1 is on
696 // CATEGORY: QUICK_SETTINGS
697 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500698 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500699
700 // OPEN: QS Cellular tile > Cellular detail panel
701 // CATEGORY: QUICK_SETTINGS
702 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500703 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // OPEN: QS Do not disturb tile shown
706 // ACTION: QS Do not disturb 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_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500711
712 // OPEN: QS Flashlight tile shown
713 // ACTION: QS Flashlight tile tapped
714 // SUBTYPE: 0 is off, 1 is on
715 // CATEGORY: QUICK_SETTINGS
716 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500717 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500718
719 // OPEN: QS Hotspot tile shown
720 // ACTION: QS Hotspot tile tapped
721 // SUBTYPE: 0 is off, 1 is on
722 // CATEGORY: QUICK_SETTINGS
723 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500724 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500725
726 // OPEN: QS 3P tile shown
727 // ACTION: QS 3P tile tapped
728 // CATEGORY: QUICK_SETTINGS
729 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500730 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500731
732 // OPEN: QS Location tile shown
733 // ACTION: QS Location tile tapped
734 // SUBTYPE: 0 is off, 1 is on
735 // CATEGORY: QUICK_SETTINGS
736 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500737 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500738
739 // OPEN: QS Rotation tile shown
740 // ACTION: QS Rotation tile tapped
741 // SUBTYPE: 0 is off, 1 is on
742 // CATEGORY: QUICK_SETTINGS
743 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500744 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500745
746 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500747 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS User list panel
750 // CATEGORY: QUICK_SETTINGS
751 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500752 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500753
754 // OPEN: QS WiFi tile shown
755 // ACTION: QS WiFi tile tapped
756 // SUBTYPE: 0 is off, 1 is on
757 // CATEGORY: QUICK_SETTINGS
758 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500759 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OPEN: Notification Panel (including lockscreen)
762 // CATEGORY: NOTIFICATION
763 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500764 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: Notification in panel became visible.
767 // PACKAGE: App that posted the notification.
768 // ACTION: Notification is tapped.
769 // PACKAGE: App that posted the notification
770 // DETAIL: Notification is expanded by user.
771 // PACKAGE: App that posted the notification
772 // DISMISS: Notification is dismissed.
773 // PACKAGE: App that posted the notification
774 // SUBTYPE: Dismiss reason from NotificationManagerService.java
775 // CATEGORY: NOTIFICATION
776 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500777 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // ACTION: User tapped notification action
780 // PACKAGE: App that posted the notification
781 // SUBTYPE: Index of action on notification
782 // CATEGORY: NOTIFICATION
783 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500784 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500785
786 // OPEN: Settings > Apps > Configure apps > App permissions
787 // CATEGORY: SETTINGS
788 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500789 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500790
791 // OPEN: Settings > Location > Scanning
792 // CATEGORY: SETTINGS
793 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500794 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500795
796 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500797 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // OPEN: Settings > Sound & notification > App notifications
800 // CATEGORY: SETTINGS
801 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500802 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500803
804 // ACTION: Settings > Wi-Fi > Overflow > Add Network
805 // CATEGORY: SETTINGS
806 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500807 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700810 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500811 // CATEGORY: SETTINGS
812 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500813 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500814
815 // ACTION: Settings > Wi-Fi > Overflow > Refresh
816 // CATEGORY: SETTINGS
817 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500818 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500819
820 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
821 // CATEGORY: SETTINGS
822 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500823 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500824
825 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700826 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500827 // CATEGORY: SETTINGS
828 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500829 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500830
831 // ACTION: Settings > Wi-Fi > Toggle on
832 // CATEGORY: SETTINGS
833 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500834 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500835
836 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500837 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500838
839 // OPEN: Settings > Sound & notification > DND > Priority only allows
840 // CATEGORY: SETTINGS
841 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500842 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500843
844 // OPEN: Settings > Sound & notification > DND > Automatic rules
845 // CATEGORY: SETTINGS
846 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500847 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500848
849 // OPEN: Settings > Apps > Configure apps > App links
850 // CATEGORY: SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // OPEN: Settings > Sound & notification > DND > [Time based rule]
855 // CATEGORY: SETTINGS
856 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500857 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500858
859 // OPEN: Settings > Sound & notification > DND > [External rule]
860 // CATEGORY: SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // OPEN: Settings > Sound & notification > DND > [Event rule]
865 // CATEGORY: SETTINGS
866 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500867 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // ACTION: App notification settings > Block Notifications
870 // CATEGORY: SETTINGS
871 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500872 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // ACTION: Notification shade > Dismiss all button
875 // CATEGORY: NOTIFICATION
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // OPEN: QS Do Not Disturb detail panel
880 // CATEGORY: QUICK_SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // OPEN: QS Bluetooth detail panel
885 // CATEGORY: QUICK_SETTINGS
886 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500887 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500888
889 // OPEN: QS Cast detail panel
890 // CATEGORY: QUICK_SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // OPEN: QS Wi-Fi detail panel
895 // CATEGORY: QUICK_SETTINGS
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
900 // SUBTYPE: 0 is off, 1 is on
901 // CATEGORY: QUICK_SETTINGS
902 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500903 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500904
905 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
906 // SUBTYPE: 0 is off, 1 is on
907 // CATEGORY: QUICK_SETTINGS
908 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500909 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500910
911 // ACTION: QS Cellular detail panel > Cellular 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_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // ACTION: QS User list panel > Select different user
918 // CATEGORY: QUICK_SETTINGS
919 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500920 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500921
922 // ACTION: QS Cast detail panel > Select cast device
923 // CATEGORY: QUICK_SETTINGS
924 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500925 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500926
927 // ACTION: QS Cast detail panel > Disconnect cast device
928 // CATEGORY: QUICK_SETTINGS
929 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500930 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500931
932 // ACTION: Settings > Bluetooth > Toggle
933 // SUBTYPE: 0 is off, 1 is on
934 // CATEGORY: SETTINGS
935 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500936 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500937
938 // ACTION: Settings > Bluetooth > Overflow > Refresh
939 // CATEGORY: SETTINGS
940 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500941 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500942
943 // ACTION: Settings > Bluetooth > Overflow > Rename this device
944 // CATEGORY: SETTINGS
945 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500946 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500947
948 // ACTION: Settings > Bluetooth > Overflow > Show received files
949 // CATEGORY: SETTINGS
950 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500951 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500952
953 // ACTION: QS DND details panel > Increase / Decrease exit time
954 // SUBTYPE: true is increase, false is decrease
955 // CATEGORY: QUICK_SETTINGS
956 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500957 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500958
959 // ACTION: QS DND details panel > [Exit condition]
960 // CATEGORY: QUICK_SETTINGS
961 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500962 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500963
964 // ACTION: QS DND details panel > [DND mode]
965 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
966 // CATEGORY: QUICK_SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // ACTION: QS DND detail panel > DND toggle
971 // SUBTYPE: 0 is off, 1 is on
972 // CATEGORY: QUICK_SETTINGS
973 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500974 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500975
976 // ACTION: DND Settings > Priority only allows > Reminder toggle
977 // SUBTYPE: 0 is off, 1 is on
978 // CATEGORY: SETTINGS
979 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500980 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // ACTION: DND Settings > Priority only allows > Event toggle
983 // SUBTYPE: 0 is off, 1 is on
984 // CATEGORY: SETTINGS
985 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500986 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // ACTION: DND Settings > Priority only allows > Messages
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_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: DND Settings > Priority only allows > Calls
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_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500999
1000 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
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_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001005
1006 // ACTION: DND Settings > Automatic rules > Add rule
1007 // CATEGORY: SETTINGS
1008 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001009 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001010
1011 // ACTION: DND Settings > Automatic rules > Add rule > OK
1012 // CATEGORY: SETTINGS
1013 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001014 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001015
1016 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1017 // CATEGORY: SETTINGS
1018 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001019 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001020
1021 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1022 // CATEGORY: SETTINGS
1023 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001024 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1027 // SUBTYPE: 0 is off, 1 is on
1028 // CATEGORY: SETTINGS
1029 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001030 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001031
1032 // ACTION: Settings > More > Airplane mode toggle
1033 // SUBTYPE: 0 is off, 1 is on
1034 // CATEGORY: SETTINGS
1035 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001036 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001037
1038 // ACTION: Settings > Data usage > Cellular data 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_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // OPEN: Settings > Sound & notification > Notification access
1045 // CATEGORY: SETTINGS
1046 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001047 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001048
1049 // OPEN: Settings > Sound & notification > Do Not Disturb access
1050 // CATEGORY: SETTINGS
1051 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001052 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001053
1054 // OPEN: Settings > Apps > Configure apps > Default Apps
1055 // CATEGORY: SETTINGS
1056 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001057 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001058
1059 // OPEN: Settings > Internal storage > Apps storage
1060 // CATEGORY: SETTINGS
1061 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001062 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001063
1064 // OPEN: Settings > Security > Usage access
1065 // CATEGORY: SETTINGS
1066 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001067 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001068
1069 // OPEN: Settings > Battery > Battery optimization
1070 // CATEGORY: SETTINGS
1071 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001072 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001073
1074 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001075 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001076
1077 // ACTION: Lockscreen > Unlock gesture
1078 // CATEGORY: GLOBAL_SYSTEM_UI
1079 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001080 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // ACTION: Lockscreen > Pull shade open
1083 // CATEGORY: GLOBAL_SYSTEM_UI
1084 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001085 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // ACTION: Lockscreen > Tap on lock, shows hint
1088 // CATEGORY: GLOBAL_SYSTEM_UI
1089 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001090 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001091
1092 // ACTION: Lockscreen > Camera
1093 // CATEGORY: GLOBAL_SYSTEM_UI
1094 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001095 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // ACTION: Lockscreen > Dialer
1098 // CATEGORY: GLOBAL_SYSTEM_UI
1099 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001100 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001101
1102 // ACTION: Lockscreen > Tap on lock, locks phone
1103 // CATEGORY: GLOBAL_SYSTEM_UI
1104 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Lockscreen > Tap on notification, false touch rejection
1108 // CATEGORY: GLOBAL_SYSTEM_UI
1109 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: Lockscreen > Swipe down to open quick settings
1113 // CATEGORY: GLOBAL_SYSTEM_UI
1114 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001115 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001116
1117 // ACTION: Swipe down to open quick settings when unlocked
1118 // CATEGORY: GLOBAL_SYSTEM_UI
1119 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001120 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001121
1122 // ACTION: Notification shade > Tap to open quick settings
1123 // CATEGORY: GLOBAL_SYSTEM_UI
1124 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001125 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // OPEN: Lockscreen
1128 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1129 // CATEGORY: GLOBAL_SYSTEM_UI
1130 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001131 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001132
1133 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1134 // CATEGORY: GLOBAL_SYSTEM_UI
1135 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001136 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001137
1138 // OPEN: Screen turned on
1139 // SUBTYPE: 2 is user action
1140 // CATEGORY: GLOBAL_SYSTEM_UI
1141 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001142 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // OPEN: Notification caused sound, vibration, and/or LED blink
1145 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1146 // CATEGORY: NOTIFICATION
1147 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001148 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // ACTION: Lockscreen > Emergency Call button
1151 // CATEGORY: GLOBAL_SYSTEM_UI
1152 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001153 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001154
1155 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1156 // CATEGORY: SETTINGS
1157 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001158 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // OPEN: Settings > Memory
1161 // CATEGORY: SETTINGS
1162 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001163 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001164
1165 // ACTION: Settings > Display > When device is rotated
1166 // CATEGORY: SETTINGS
1167 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001168 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001169
1170 // ACTION: Long press on notification to view controls
1171 // CATEGORY: NOTIFICATION
1172 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001173 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001174
1175 // ACTION: Notificatoin controls > Info button
1176 // CATEGORY: NOTIFICATION
1177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001178 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // ACTION: Notification controls > Settings button
1181 // CATEGORY: NOTIFICATION
1182 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001183 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001184
1185 // OPEN: Volume Dialog (with hardware buttons)
1186 // CATEGORY: GLOBAL_SYSTEM_UI
1187 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001188 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001189
1190 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1191 // CATEGORY: GLOBAL_SYSTEM_UI
1192 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001193 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001194
1195 // ACTION: Volume dialog > Adjust volume slider
1196 // SUBTYPE: volume level (0-7)
1197 // CATEGORY: GLOBAL_SYSTEM_UI
1198 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001199 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001200
1201 // ACTION: Volume dialog > Select non-active stream
1202 // SUBTYPE: stream (defined in AudioSystem.java)
1203 // CATEGORY: GLOBAL_SYSTEM_UI
1204 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001205 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001206
1207 // ACTION: Adjust volume with hardware key
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_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // ACTION: Volume dialog > Mute a stream by tapping icon
1214 // SUBTYPE: mute is 1, audible is 2
1215 // CATEGORY: GLOBAL_SYSTEM_UI
1216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001217 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // ACTION: Volume dialog > Change ringer mode by tapping icon
1220 // SUBTYPE: 2 is audible, 3 is vibrate
1221 // CATEGORY: GLOBAL_SYSTEM_UI
1222 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001223 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Chooser shown (share target, file open, etc.)
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // ACTION: Chooser > User taps an app target
1231 // SUBTYPE: Index of target
1232 // CATEGORY: GLOBAL_SYSTEM_UI
1233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001234 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001235
1236 // ACTION: Chooser > User taps a service target
1237 // SUBTYPE: Index of target
1238 // CATEGORY: GLOBAL_SYSTEM_UI
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Chooser > User taps a standard 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_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001247
1248 // ACTION: QS Brightness Slider (with auto brightness disabled)
1249 // SUBTYPE: slider value
1250 // CATEGORY: QUICK_SETTINGS
1251 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001252 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001253
1254 // ACTION: QS Brightness Slider (with auto brightness enabled)
1255 // SUBTYPE: slider value
1256 // CATEGORY: QUICK_SETTINGS
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // OPEN: Settings > Display > Brightness Slider
1261 // CATEGORY: SETTINGS
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001264
Christine Franks47175c32017-03-14 10:21:25 -07001265 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001266 // CATEGORY: SETTINGS
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // OPEN: Display has entered dream mode
1271 // CATEGORY: GLOBAL_SYSTEM_UI
1272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001273 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // OPEN: Display has entered ambient notification mode
1276 // CATEGORY: GLOBAL_SYSTEM_UI
1277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001278 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // OPEN: Overview
1281 // CATEGORY: GLOBAL_SYSTEM_UI
1282 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001283 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001284
1285 // OPEN: Settings > About phone > Legal information
1286 // CATEGORY: SETTINGS
1287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001288 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001289
1290 // OPEN: Settings > Search > Perform search
1291 // CATEGORY: SETTINGS
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // OPEN: Settings > System UI Tuner
1296 // CATEGORY: SETTINGS
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // OPEN: Settings > System UI Tuner > Quick Settings
1301 // CATEGORY: SETTINGS
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // OPEN: Settings > System UI Tuner > Demo mode
1306 // CATEGORY: SETTINGS
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1311 // PACKAGE: Tile
1312 // CATEGORY: SETTINGS
1313 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001314 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001315
1316 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1317 // PACKAGE: Tile
1318 // CATEGORY: SETTINGS
1319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001320 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001321
1322 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1323 // PACKAGE: Tile
1324 // CATEGORY: SETTINGS
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1329 // PACKAGE: Icon
1330 // CATEGORY: SETTINGS
1331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001332 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001333
1334 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1335 // PACKAGE: Icon
1336 // CATEGORY: SETTINGS
1337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001338 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1341 // SUBTYPE: false is disabled, true is enabled
1342 // CATEGORY: SETTINGS
1343 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001344 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001345
1346 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1347 // SUBTYPE: false is disabled, true is enabled
1348 // CATEGORY: SETTINGS
1349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001350 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1353 // SUBTYPE: 0 is disabled, 1 is enabled
1354 // CATEGORY: SETTINGS
1355 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001356 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001357
1358 // OPEN: Settings > Developer options > Inactive apps
1359 // CATEGORY: SETTINGS
1360 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001361 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001362
1363 // ACTION: Long press home to bring up assistant
1364 // CATEGORY: GLOBAL_SYSTEM_UI
1365 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001366 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001367
1368 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1369 // CATEGORY: SETTINGS
1370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001371 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // OPEN: Fingerprint Enroll > Find Sensor
1374 // CATEGORY: SETTINGS
1375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001376 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1379 // CATEGORY: SETTINGS
1380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001381 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001382
1383 // OPEN: Fingerprint Enroll introduction
1384 // CATEGORY: SETTINGS
1385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001386 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001387
1388 // OPEN: Fingerprint Enroll onboarding
1389 // CATEGORY: SETTINGS
1390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001391 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001392
1393 // OPEN: Fingerprint Enroll > Let's Start!
1394 // CATEGORY: SETTINGS
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: Fingerprint Enroll SUW > Let's Start!
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // OPEN: Fingerprint Enroll SUW > Find Sensor
1404 // CATEGORY: SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // OPEN: Fingerprint Enroll SUW introduction
1414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Fingerprint Enroll SUW onboarding
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // ACTION: Add fingerprint > Enroll fingerprint
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // ACTION: Authenticate using fingerprint
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // ACTION: Double tap camera shortcut
1444 // CATEGORY: GLOBAL_SYSTEM_UI
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // ACTION: Double twist camera shortcut
1449 // CATEGORY: GLOBAL_SYSTEM_UI
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: QS Work Mode tile shown
1454 // ACTION: QS Work Mode tile tapped
1455 // SUBTYPE: 0 is off, 1 is on
1456 // CATEGORY: QUICK_SETTINGS
1457 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001458 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001459
1460 // OPEN: Settings > Developer Options > Background Check
1461 // CATEGORY: SETTINGS
1462 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001463 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001464
1465 // OPEN: QS Lock tile shown
1466 // ACTION: QS Lock 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_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001471
1472 // OPEN: QS User Tile shown
1473 // CATEGORY: QUICK_SETTINGS
1474 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001475 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001476
1477 // OPEN: QS Battery tile shown
1478 // CATEGORY: QUICK_SETTINGS
1479 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001480 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001481
1482 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1483 // CATEGORY: SETTINGS
1484 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001485 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001486
1487 // ACTION: Visual interruptions > No screen interuptions toggle
1488 // SUBTYPE: 0 is off, 1 is on
1489 // CATEGORY: SETTINGS
1490 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001491 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001492
1493 // ACTION: Visual interruptions > No notification light toggle
1494 // SUBTYPE: 0 is off, 1 is on
1495 // CATEGORY: SETTINGS
1496 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001497 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001498
1499 // OPEN: Settings > Notifications > [App] > Topic Notifications
1500 // CATEGORY: SETTINGS
1501 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001502 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001503
1504 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1505 // PACKAGE: Selected SMS app
1506 // CATEGORY: SETTINGS
1507 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001508 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // OPEN: QS Color modification tile shown
1511 // ACTION: QS Color modification tile tapped
1512 // SUBTYPE: 0 is off, 1 is on
1513 // CATEGORY: QUICK_SETTINGS
1514 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001515 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001516
1517 // OPEN: QS Custom tile shown
1518 // ACTION: QS Work Mode tile tapped
1519 // CATEGORY: QUICK_SETTINGS
1520 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001521 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001522
1523 // ACTION: Visual interruptions > Never turn off the screen toggle
1524 // SUBTYPE: 0 is off, 1 is on
1525 // CATEGORY: SETTINGS
1526 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001527 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001528
Chris Wren7c516842016-03-01 16:44:32 -05001529 // ACTION: Overview > Long-press task, drag to enter split-screen
1530 // CATEGORY: GLOBAL_SYSTEM_UI
1531 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001532 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1533
Chris Wren7c516842016-03-01 16:44:32 -05001534 // ACTION: In App > Long-press Overview button to enter split-screen
1535 // CATEGORY: GLOBAL_SYSTEM_UI
1536 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001537 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1538
Chris Wren7c516842016-03-01 16:44:32 -05001539 // ACTION: In App > Swipe Overview button to enter split-screen
1540 // CATEGORY: GLOBAL_SYSTEM_UI
1541 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001542 ACTION_WINDOW_DOCK_SWIPE = 272;
1543
Chris Wren7c516842016-03-01 16:44:32 -05001544 // ACTION: Launch profile-specific app > Confirm credentials
1545 // CATEGORY: GLOBAL_SYSTEM_UI
1546 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001547 PROFILE_CHALLENGE = 273;
1548
Chris Wren7c516842016-03-01 16:44:32 -05001549 // OPEN: QS Battery detail panel
1550 // CATEGORY: GLOBAL_SYSTEM_UI
1551 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001552 QS_BATTERY_DETAIL = 274;
1553
Chris Wren7c516842016-03-01 16:44:32 -05001554 // OPEN: Overview > History
1555 // CATEGORY: GLOBAL_SYSTEM_UI
1556 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001557 OVERVIEW_HISTORY = 275;
1558
Chris Wren7c516842016-03-01 16:44:32 -05001559 // ACTION: Overview > Page by tapping Overview button
1560 // CATEGORY: GLOBAL_SYSTEM_UI
1561 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001562 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: Overview > Select app
1565 // CATEGORY: GLOBAL_SYSTEM_UI
1566 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001567 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001568
Chris Wren7c516842016-03-01 16:44:32 -05001569 // ACTION: View emergency info
1570 // CATEGORY: GLOBAL_SYSTEM_UI
1571 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001572 ACTION_VIEW_EMERGENCY_INFO = 278;
1573
Chris Wren7c516842016-03-01 16:44:32 -05001574 // ACTION: Edit emergency info activity
1575 // CATEGORY: SETTINGS
1576 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001577 ACTION_EDIT_EMERGENCY_INFO = 279;
1578
Chris Wren7c516842016-03-01 16:44:32 -05001579 // ACTION: Edit emergency info field
1580 // CATEGORY: SETTINGS
1581 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001582 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1583
Chris Wren7c516842016-03-01 16:44:32 -05001584 // ACTION: Add emergency contact
1585 // CATEGORY: SETTINGS
1586 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001587 ACTION_ADD_EMERGENCY_CONTACT = 281;
1588
Chris Wren7c516842016-03-01 16:44:32 -05001589 // ACTION: Delete emergency contact
1590 // CATEGORY: SETTINGS
1591 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001592 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1593
Chris Wren7c516842016-03-01 16:44:32 -05001594 // ACTION: Call emergency contact
1595 // CATEGORY: SETTINGS
1596 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001597 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001598
Chris Wren7c516842016-03-01 16:44:32 -05001599 // OPEN: QS Data Saver tile shown
1600 // ACTION: QS Data Saver tile tapped
1601 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001602 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001603
Robin Lee8c1306e2016-02-01 11:37:02 +00001604 // OPEN: Settings > Security > User credentials
1605 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001606 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001607 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1610 // CATEGORY: GLOBAL_SYSTEM_UI
1611 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001612 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001613
1614 // Logged when the user scrolls through overview manually
1615 OVERVIEW_SCROLL = 287;
1616
1617 // Logged when the overview times out automatically selecting an app
1618 OVERVIEW_SELECT_TIMEOUT = 288;
1619
1620 // Logged when a user dismisses a task in overview
1621 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001622
1623 // Logged when the user modifying the notification importance slider.
1624 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1625
1626 // Logged when the user saves a modification to notification importance. Negative numbers
1627 // indicate the user lowered the importance; positive means they increased it.
1628 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001629
Chris Wren7c516842016-03-01 16:44:32 -05001630 // ACTION: Long-press power button, then tap "Take bug report" option.
1631 // CATEGORY: GLOBAL_SYSTEM_UI
1632 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001633 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1634
Chris Wren7c516842016-03-01 16:44:32 -05001635 // ACTION: Long-press power button, then long-press "Take bug report" option.
1636 // CATEGORY: GLOBAL_SYSTEM_UI
1637 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001638 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1639
Chris Wren7c516842016-03-01 16:44:32 -05001640 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1641 // CATEGORY: SETTINGS
1642 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001643 // Interactive bug report initiated from Settings.
1644 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1645
Chris Wren7c516842016-03-01 16:44:32 -05001646 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1647 // CATEGORY: SETTINGS
1648 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001649 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001650 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1651
Chris Wren7c516842016-03-01 16:44:32 -05001652 // ACTION: User tapped notification action to cancel a bug report
1653 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001654 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001655 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1656
Chris Wren7c516842016-03-01 16:44:32 -05001657 // ACTION: User tapped notification action to launch bug report details screen
1658 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001659 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001660 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1661
Chris Wren7c516842016-03-01 16:44:32 -05001662 // ACTION: User tapped notification action to take adition screenshot on bug report
1663 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001664 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001665 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1666
Chris Wren7c516842016-03-01 16:44:32 -05001667 // ACTION: User tapped notification to share bug report
1668 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001669 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001670 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1671
Chris Wren7c516842016-03-01 16:44:32 -05001672 // ACTION: User changed bug report name using the details screen
1673 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001674 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001675 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1676
Chris Wren7c516842016-03-01 16:44:32 -05001677 // ACTION: User changed bug report title using the details screen
1678 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001679 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001680 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1681
Chris Wren7c516842016-03-01 16:44:32 -05001682 // ACTION: User changed bug report description using the details screen
1683 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001684 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001685 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1686
Chris Wren7c516842016-03-01 16:44:32 -05001687 // ACTION: User tapped Save in the bug report details screen.
1688 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001689 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001690 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: User tapped Cancel in the bug report details screen.
1693 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001694 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001695 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001696
1697 // Tuner: Open/close calibrate dialog.
1698 TUNER_CALIBRATE_DISPLAY = 305;
1699
1700 // Tuner: Open/close color and appearance.
1701 TUNER_COLOR_AND_APPEARANCE = 306;
1702
1703 // Tuner: Apply calibrate dialog.
1704 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1705
1706 // Tuner: Open/close night mode.
1707 TUNER_NIGHT_MODE = 308;
1708
1709 // Tuner: Change night mode.
1710 ACTION_TUNER_NIGHT_MODE = 309;
1711
1712 // Tuner: Change night mode auto.
1713 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1714
1715 // Tuner: Change night mode adjust dark theme.
1716 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1717
1718 // Tuner: Change night mode adjust tint.
1719 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1720
1721 // Tuner: Change night mode adjust brightness.
1722 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1723
1724 // Tuner: Change do not disturb in volume panel.
1725 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1726
1727 // Tuner: Change do not disturb volume buttons shortcut.
1728 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001729
1730 // Logs the action the user takes when an app crashed.
1731 ACTION_APP_CRASH = 316;
1732
1733 // Logs the action the user takes when an app ANR'd.
1734 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001735
1736 // Logged when a user double taps the overview button to launch the previous task
1737 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001738
1739 // Logged when we execute an app transition. This indicates the total delay from startActivity
1740 // until the app transition is starting to animate, in milliseconds.
1741 APP_TRANSITION_DELAY_MS = 319;
1742
1743 // Logged when we execute an app transition. This indicates the reason why the transition
1744 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1745 APP_TRANSITION_REASON = 320;
1746
1747 // Logged when we execute an app transition and we drew a starting window. This indicates the
1748 // delay from startActivity until the starting window was drawn.
1749 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1750
1751 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1752 // the delay from startActivity until all windows have been drawn.
1753 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1754
1755 // Logged when we execute an app transition. This indicates the component name of the current
1756 // transition.
1757 APP_TRANSITION_COMPONENT_NAME = 323;
1758
1759 // Logged when we execute an app transition. This indicates whether the process was already
1760 // running.
1761 APP_TRANSITION_PROCESS_RUNNING = 324;
1762
1763 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1764 // the transition was executed.
1765 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001766
Chris Wren38f98812016-07-13 14:28:40 -04001767 // ACTION: app requested access to a scoped directory, user granted it.
1768 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1769 // CATEGORY: GLOBAL_SYSTEM_UI
1770 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001771 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1772
Chris Wren38f98812016-07-13 14:28:40 -04001773 // ACTION: app requested access to a scoped directory, user denied it.
1774 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1775 // CATEGORY: GLOBAL_SYSTEM_UI
1776 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001777 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1778
Chris Wren38f98812016-07-13 14:28:40 -04001779 // ACTION: app requested access to a scoped directory, user granted it.
1780 // PACKAGE: app that requested access
1781 // CATEGORY: GLOBAL_SYSTEM_UI
1782 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001783 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1784
Chris Wren38f98812016-07-13 14:28:40 -04001785 // ACTION: app requested access to a scoped directory, user denied it.
1786 // PACKAGE: app that requested access.
1787 // CATEGORY: GLOBAL_SYSTEM_UI
1788 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001789 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1790
Chris Wren38f98812016-07-13 14:28:40 -04001791 // ACTION: app requested access to a directory user has already been granted
1792 // access before.
1793 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1794 // CATEGORY: GLOBAL_SYSTEM_UI
1795 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001796 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1797
Chris Wren38f98812016-07-13 14:28:40 -04001798 // ACTION: app requested access to a directory user has already been granted
1799 // access before.
1800 // PACKAGE: app that requested access.
1801 // CATEGORY: GLOBAL_SYSTEM_UI
1802 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001803 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001804
Chris Wren38f98812016-07-13 14:28:40 -04001805 // ACTION: Logged when the user slides a notification and reveals the gear
1806 // beneath it.
1807 // CATEGORY: NOTIFICATION
1808 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001809 ACTION_REVEAL_GEAR = 332;
1810
Chris Wren38f98812016-07-13 14:28:40 -04001811 // ACTION: Logged when the user taps on the gear beneath a notification.
1812 // CATEGORY: NOTIFICATION
1813 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001814 ACTION_TOUCH_GEAR = 333;
1815
Ruben Brunke24b9a62016-02-16 21:38:24 -08001816 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001817 // CATEGORY: SETTINGS
1818 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001819 VR_MANAGE_LISTENERS = 334;
1820
Jason Monk6f5354d2016-03-08 14:18:08 -05001821 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001822 // CATEGORY: SETTINGS
1823 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001824 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001825
Jason Monk6f5354d2016-03-08 14:18:08 -05001826 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001827 // CATEGORY: SETTINGS
1828 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001829 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001830
Jason Monk6f5354d2016-03-08 14:18:08 -05001831 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001832 // CATEGORY: SETTINGS
1833 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001834 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001835
Jason Monk6f5354d2016-03-08 14:18:08 -05001836 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001837 // CATEGORY: SETTINGS
1838 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001839 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001840
Jason Monk6f5354d2016-03-08 14:18:08 -05001841 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001842 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001843 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001844
Jason Monk6f5354d2016-03-08 14:18:08 -05001845 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001846 // CATEGORY: SETTINGS
1847 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001848 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001849
Jason Monk6f5354d2016-03-08 14:18:08 -05001850 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001851 // CATEGORY: SETTINGS
1852 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001853 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001854
Jason Monk6f5354d2016-03-08 14:18:08 -05001855 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001856 // CATEGORY: SETTINGS
1857 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001858 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001859
Jason Monk6f5354d2016-03-08 14:18:08 -05001860 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001861 // CATEGORY: SETTINGS
1862 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001863 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001864
Jason Monk6f5354d2016-03-08 14:18:08 -05001865 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001866 // CATEGORY: SETTINGS
1867 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001868 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001869
Jason Monk6f5354d2016-03-08 14:18:08 -05001870 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001871 // CATEGORY: SETTINGS
1872 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001873 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001874
Jason Monk6f5354d2016-03-08 14:18:08 -05001875 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001876 // CATEGORY: SETTINGS
1877 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001878 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001879
Jason Monk6f5354d2016-03-08 14:18:08 -05001880 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001881 // CATEGORY: SETTINGS
1882 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001884
Jason Monk6f5354d2016-03-08 14:18:08 -05001885 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001886 // CATEGORY: SETTINGS
1887 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001889
Jason Monk6f5354d2016-03-08 14:18:08 -05001890 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001891 // CATEGORY: SETTINGS
1892 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1894
1895 // Used for generic logging of Settings Preference Persistence, should not be used
1896 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001897 // CATEGORY: SETTINGS
1898 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001899 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001900
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 // Settings -> Apps -> Gear -> Special access
1902 SPECIAL_ACCESS = 351;
1903
Muyuan Lia2129992016-03-03 18:30:39 -08001904 // Logs that the user docks window via shortcut key.
1905 WINDOW_DOCK_SHORTCUTS = 352;
1906
Felipe Lemeadccb992016-03-09 17:40:49 -08001907 // User already denied access to the request folder; action takes an integer
1908 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001909 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001910 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1911
1912 // User already denied access to the request folder; action pass package name
1913 // of calling package.
1914 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1915
1916 // User denied access to the request folder and checked 'Do not ask again';
1917 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001918 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001919 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1920
1921 // User denied access to the request folder and checked 'Do not ask again';
1922 // action pass package name of calling package.
1923 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1924
Winson3b6ba1a2016-03-22 15:37:54 -07001925 // Logged when a user dismisses all task in overview
1926 OVERVIEW_DISMISS_ALL = 357;
1927
Jason Monk96defbe2016-03-29 16:51:03 -04001928 // Quick Settings -> Edit
1929 QS_EDIT = 358;
1930
1931 // Quick Settings -> Edit -> Overflow -> Reset
1932 ACTION_QS_EDIT_RESET = 359;
1933
1934 // QS -> Edit - Drag a tile out of the active tiles.
1935 // The _SPEC contains either the spec of the tile or
1936 // the package of the 3rd party app in the PKG field.
1937 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1938 ACTION_QS_EDIT_REMOVE = 361;
1939
1940 // QS -> Edit - Drag a tile into the active tiles.
1941 // The _SPEC contains either the spec of the tile or
1942 // the package of the 3rd party app in the PKG field.
1943 ACTION_QS_EDIT_ADD_SPEC = 362;
1944 ACTION_QS_EDIT_ADD = 363;
1945
1946 // QS -> Edit - Drag a tile within 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_MOVE_SPEC = 364;
1950 ACTION_QS_EDIT_MOVE = 365;
1951
1952 // Long-press on a QS tile. Tile spec in package field.
1953 ACTION_QS_LONG_PRESS = 366;
1954
Anna Galuszadad131f2016-03-22 13:49:02 -07001955 // OPEN: SUW Welcome Screen -> Vision Settings
1956 // CATEGORY: SETTINGS
1957 // OS: N
1958 SUW_ACCESSIBILITY = 367;
1959
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001960 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1961 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1962 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001963 // ACTION: New magnification gesture configuration is chosen
1964 // SUBTYPE: 0 is off, 1 is on
1965 // CATEGORY: SETTINGS
1966 // OS: N
1967 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1968
1969 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1970 // ACTION: New font size is chosen
1971 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1972 // CATEGORY: SETTINGS
1973 // OS: N
1974 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1975
1976 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1977 // ACTION: New display size is chosen
1978 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1979 // CATEGORY: SETTINGS
1980 // OS: N
1981 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1982
1983 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1984 // ACTION: New screen reader configuration is chosen
1985 // SUBTYPE: 0 is off, 1 is on
1986 // CATEGORY: SETTINGS
1987 // OS: N
1988 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1989
Jason Monkc3620392016-03-30 15:46:03 -04001990 // ------- Begin N Settings conditionals -----
1991 // Conditionals are the green bars at the top of the settings dashboard
1992 // All conditionals will have visible/hide events onResume/onPause
1993 // but they will also be used as extra ints in the
1994 // dismiss/expand/collapse/click/button events
1995
1996 // swipe away conditional
1997 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1998
1999 // click on collapsed conditional or clicks expand button
2000 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2001
2002 // click collapse button on expanded conditional
2003 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2004
2005 // click main area of expanded conditional
2006 ACTION_SETTINGS_CONDITION_CLICK = 375;
2007
2008 // click a direct button on expanded conditional
2009 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2010
2011 // Airplane mode on
2012 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2013 // AKA Data saver on
2014 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2015 // Battery saver on
2016 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2017 // Cellular data off
2018 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2019 // Do not disturb on
2020 SETTINGS_CONDITION_DND = 381;
2021 // Hotspot on
2022 SETTINGS_CONDITION_HOTSPOT = 382;
2023 // Work profile off
2024 SETTINGS_CONDITION_WORK_MODE = 383;
2025
Jason Monk1b5d87b2016-03-30 16:03:15 -04002026 // ------- Begin N Settings suggestions -----
2027 // Since suggestions come from system apps, suggestions will
2028 // have generic constants and the package providing the suggestion
2029 // will be put in the package field. For suggestions in the Settings
2030 // package, the class name will be filled in instead (since settings
2031 // provides several suggetions).
2032
2033 // Settings shown/hidden on main settings dashboard.
2034 // These are actually visibility events, but visible/hidden doesn't
2035 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002036 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2037 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002038
2039 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002040 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002041
2042 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002043 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002044
Jason Monk397df682016-03-28 15:48:34 -04002045 // Settings > Apps > Gear > Special Access > Premium SMS access
2046 PREMIUM_SMS_ACCESS = 388;
2047
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002048 // Logged when the user resizes the docked stack. Arguments:
2049 // 0: Split 50:50
2050 // 1: Docked smaller
2051 // 2: Docked larger
2052 ACTION_WINDOW_DOCK_RESIZE = 389;
2053
2054 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2055 // 0: Docked gets maximized
2056 // 1: Fullscreen gets maximized
2057 ACTION_WINDOW_UNDOCK_MAX = 390;
2058
2059 // User tried to dock an unresizable app.
2060 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2061
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002062 // System UI Tuner > Other > Power notification controls
2063 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2064
2065 // System UI Tuner > Other > Power notification controls > Toggle on/off
2066 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2067
Chris Wren38f98812016-07-13 14:28:40 -04002068 // Action: user enable / disabled data saver using Settings
2069 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2070 // VALUE: 1 for enabled, 0 for disabled
2071 // CATEGORY: SETTINGS
2072 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002073 ACTION_DATA_SAVER_MODE = 394;
2074
Chris Wren38f98812016-07-13 14:28:40 -04002075 // User whitelisted an app for Data Saver mode; action pass package name of app
2076 // Action: user enable / disabled data saver using Settings
2077 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2078 // or
2079 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2080 // VALUE: package name of APP
2081 // CATEGORY: SETTINGS
2082 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002083 ACTION_DATA_SAVER_WHITELIST = 395;
2084
Chris Wren38f98812016-07-13 14:28:40 -04002085 // User blacklisted an app for Data Saver mode; action pass package name of app
2086 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2087 // VALUE: package name of APP
2088 // CATEGORY: SETTINGS
2089 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002090 ACTION_DATA_SAVER_BLACKLIST = 396;
2091
Adrian Roosceeb04c2016-04-25 14:00:54 -07002092 // User opened a remote input view associated with a notification. Passes package name of app
2093 // that posted the notification. Note that this can also happen transiently during notification
2094 // reinflation.
2095 ACTION_REMOTE_INPUT_OPEN = 397;
2096
2097 // User attempt to send data through a remote input view associated with a notification.
2098 // Passes package name of app that posted the notification. May succeed or fail.
2099 ACTION_REMOTE_INPUT_SEND = 398;
2100
2101 // Failed attempt to send data through a remote input view associated with a
2102 // notification. Passes package name of app that posted the notification.
2103 ACTION_REMOTE_INPUT_FAIL = 399;
2104
2105 // User closed a remote input view associated with a notification. Passes package name of app
2106 // that posted the notification. Note that this can also happen transiently during notification
2107 // reinflation.
2108 ACTION_REMOTE_INPUT_CLOSE = 400;
2109
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002110 // OPEN: Settings > Accounts > Work profile settings
2111 // CATEGORY: SETTINGS
2112 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2113
Jason Monk25118d12016-05-10 13:25:50 -04002114 // Settings -> Dev options -> Convert to file encryption
2115 CONVERT_FBE = 402;
2116
2117 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2118 CONVERT_FBE_CONFIRM = 403;
2119
2120 // Settings -> Dev options -> Running services
2121 RUNNING_SERVICES = 404;
2122
Jason Monka1f697f2016-05-06 15:09:44 -04002123 // The dialog shown by 3P intent to change current webview implementation.
2124 WEBVIEW_IMPLEMENTATION = 405;
2125
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002126 // Settings launched from expanded quick settings.
2127 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2128
Chris Wren698b1702016-05-23 11:16:32 -04002129 // Notification expansion state toggled by the expand affordance.
2130 ACTION_NOTIFICATION_EXPANDER = 407;
2131
2132 // Notification group expansion state toggled by the expand affordance.
2133 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2134
Chris Wren7ee84182016-05-27 13:34:02 -04002135
Chris Wren6abeeb92016-05-26 14:44:38 -04002136 // Notification expansion state toggled by the expand gesture.
2137 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2138
2139 // Notification group expansion state toggled by the expand gesture.
2140 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2141
Bhavik Singh3451da42016-06-01 18:25:59 -07002142 // User performs gesture that activates the ambient display
2143 // 1: Gesture performed is Nudge
2144 // 2: Gesture performed is Pickup
2145 // 4: Gesture performed is Double Tap
2146 ACTION_AMBIENT_GESTURE = 411;
2147
Jason Monk9fa5f822016-05-11 10:26:31 -04002148 // ---- End N Constants, all N constants go above this line ----
2149
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002150 // ------- Begin N App Disambig Shade -----
2151 // Application disambig shade opened or closed with a featured app.
2152 // These are actually visibility events, but visible/hidden doesn't
2153 // take a package, so these are being logged as actions.
2154 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002155 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2156 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002157
2158 // Application disambig shade opened or closed without a featured app.
2159 // These are actually visibility events, but visible/hidden doesn't
2160 // take a package, so these are being logged as actions.
2161 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002162 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2163 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002164
2165 // User opens in an app by pressing “Always” in the application disambig shade.
2166 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002167 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002168
2169 // User opens in an app by pressing “Just Once” in the application disambig shade.
2170 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002171 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002172
2173 // User opens in an app by tapping on its name in the application disambig shade.
2174 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002175 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002176
Daniel Nishi010aa492016-05-11 09:42:24 -07002177 // OPEN: Settings > Internal storage > Storage manager
2178 // CATEGORY: SETTINGS
2179 STORAGE_MANAGER_SETTINGS = 458;
2180
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002181 // OPEN: Settings -> Gestures
2182 // CATEGORY: SETTINGS
2183 SETTINGS_GESTURES = 459;
2184
Daniel Nishi597e67f2016-05-18 13:56:13 -07002185 // ------ Begin Deletion Helper ------
2186 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2187 // SUBTYPE: false is off, true is on
2188 // CATEGORY: SETTINGS
2189 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002190
Daniel Nishi597e67f2016-05-18 13:56:13 -07002191 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2192 // SUBTYPE: false is off, true is on
2193 // CATEGORY: SETTINGS
2194 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2195
2196 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2197 // CATEGORY: SETTINGS
2198 // PACKAGE: Unchecked app
2199 ACTION_DELETION_SELECTION_APP_ON = 462;
2200
2201 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2202 // CATEGORY: SETTINGS
2203 // PACKAGE: Checked app
2204 ACTION_DELETION_SELECTION_APP_OFF = 463;
2205
2206 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2207 // SUBTYPE: false is expanded, true is collapsed
2208 // CATEGORY: SETTINGS
2209 ACTION_DELETION_APPS_COLLAPSED = 464;
2210
2211 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2212 // SUBTYPE: false is off, true is on
2213 // CATEGORY: SETTINGS
2214 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2215
2216 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2217 // SUBTYPE: false is expanded, true is collapsed
2218 // CATEGORY: SETTINGS
2219 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2220
2221 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2222 // CATEGORY: SETTINGS
2223 ACTION_DELETION_HELPER_CLEAR = 467;
2224
2225 // ACTION: Settings > Storage > Free Up Space > Cancel
2226 // CATEGORY: SETTINGS
2227 ACTION_DELETION_HELPER_CANCEL = 468;
2228
2229 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2230 // CATEGORY: SETTINGS
2231 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2232
2233 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2234 // CATEGORY: SETTINGS
2235 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2236
2237 // Deletion helper encountered an error during package deletion.
2238 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2239
2240 // Deletion helper encountered an error during downloads folder deletion.
2241 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2242
2243 // Deletion helper encountered an error during photo and video deletion.
2244 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2245
Fan Zhang5e956e82016-05-06 10:51:47 -07002246 // OPEN: Settings (root page if there are multiple tabs)
2247 // CATEGORY: SETTINGS
2248 DASHBOARD_CONTAINER = 474;
2249
2250 // OPEN: Settings -> SUPPORT TAB
2251 // CATEGORY: SETTINGS
2252 SUPPORT_FRAGMENT = 475;
2253
2254 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002255 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002256 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002257
2258 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002259 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002260 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2261
Fan Zhanga1985502016-06-16 16:48:38 -07002262 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002263 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002264 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2265
2266 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002267 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002268 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2269
2270 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002271 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002272 ACTION_SUPPORT_SIGN_IN = 480;
2273
2274 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002275 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002276 ACTION_SUPPORT_PHONE = 481;
2277
2278 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002279 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002280 ACTION_SUPPORT_CHAT = 482;
2281
2282 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002283 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002284 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2285
2286 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002287 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002288 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2289
Fan Zhang80807212016-06-30 12:26:55 -07002290 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002291 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002292 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2293
2294 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002295 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002296 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2297
2298 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002299 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002300 ACTION_SUPPORT_DIAL_TOLLED = 487;
2301
Justin Klaassen19494272016-07-18 21:38:24 -07002302 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002303 // CATEGORY: SETTINGS
2304 NIGHT_DISPLAY_SETTINGS = 488;
2305
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002306 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002307 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002308 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2309
Jason Monk484fd362016-07-13 15:24:32 -04002310 // Settings launched from collapsed quick settings.
2311 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2312
Justin Klaassen19494272016-07-18 21:38:24 -07002313 // OPEN: QS Night Light tile shown
2314 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002315 // SUBTYPE: 0 is off, 1 is on
2316 // CATEGORY: QUICK_SETTINGS
2317 QS_NIGHT_DISPLAY = 491;
2318
Justin Klaassen19494272016-07-18 21:38:24 -07002319 // Night Light on
2320 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2321
Doris Ling3c00afb2016-07-19 17:04:21 -07002322 // System navigation key up.
2323 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2324
2325 // System navigation key down.
2326 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2327
Doris Ling6dd3e462016-08-04 13:17:27 -07002328 // OPEN: Settings > Display -> Ambient Display
2329 // CATEGORY: SETTINGS
2330 ACTION_AMBIENT_DISPLAY = 495;
2331
Adrian Roos159ef7b2016-02-25 11:58:32 -08002332 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2333
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002334 // ACTION: The lockscreen gets shown because the SIM card was removed
2335 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2336 // CATEGORY: GLOBAL_SYSTEM_UI
2337 // OS: N-MR2
2338 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2339
2340 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2341
Clara Bayarric17a5982016-04-15 12:26:47 +01002342 // ------- Begin N Keyboard Shortcuts Helper -----
2343 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002344 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002345
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002346 // OPEN: Print Preview screen
2347 // Package: Package of app where print job is from
2348 PRINT_PREVIEW = 501;
2349
2350 // OPEN: User expands full print job options shade in print preview.
2351 PRINT_JOB_OPTIONS = 502;
2352
2353 // OPEN: “All Printers” screen for selecting printer
2354 // Subtype: # of printers listed
2355 PRINT_ALL_PRINTERS = 503;
2356
2357 // OPEN: “Add Printers” screen for adding printers
2358 // Subtype: # of enabled print service listed
2359 PRINT_ADD_PRINTERS = 504;
2360
2361 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2362 // Package: Package of print service.
2363 ACTION_PRINT = 505;
2364
2365 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2366 // Count all ACTION_PRINTER_SELECT_ALL actions.
2367 // Package: Package of print service tied to printer
2368 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2369
2370 // ACTION: User selects a printer from the “All printers” screen.
2371 // Package: Package of print service tied to printer
2372 ACTION_PRINTER_SELECT_ALL = 507;
2373
2374 // ACTION: User changes an option for the print job from print preview.
2375 // Subtype: 1: Copies
2376 // 2: Color mode
2377 // 3: Duplex mode
2378 // 4: Media (==Paper) size
2379 // 5: Orientation
2380 // 6: Page range
2381 // Package: Package of print service tied to printer
2382 ACTION_PRINT_JOB_OPTIONS = 508;
2383
2384 // ACTION: User searches for printer from All Printers
2385 ACTION_PRINTER_SEARCH = 509;
2386
2387 // ACTION: User selects “Add print service” button from All Printers
2388 ACTION_PRINT_SERVICE_ADD = 510;
2389
2390 // ACTION: User Enables/Disables Print Service via any means.
2391 // Subtype: 0: Enabled
2392 // 1: Disabled
2393 ACTION_PRINT_SERVICE_TOGGLE = 511;
2394
2395 // ACTION: User installs print recommended print service
2396 // Package: Package of print service
2397 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2398
Doris Ling88a6b162016-08-08 16:17:43 -07002399 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2400 // SUBTYPE: sub settings classname
2401 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2402
Fan Zhang92c60382016-08-08 14:03:53 -07002403 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2404 USER_DICTIONARY_SETTINGS = 514;
2405
2406 // OPEN: Settings > Date & time > Select time zone
2407 ZONE_PICKER = 515;
2408
2409 // OPEN: Settings > Security > Device administrators
2410 DEVICE_ADMIN_SETTINGS = 516;
2411
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002412 // ACTION: Managed provisioning was launched to set this package as DPC app.
2413 // PACKAGE: DPC's package name.
2414 PROVISIONING_DPC_PACKAGE_NAME = 517;
2415
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002416 // ACTION: Managed provisioning triggered DPC installation.
2417 // PACKAGE: Package name of package which installed DPC.
2418 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2419
2420 // ACTION: Logged when provisioning activity finishes.
2421 // TIME: Indicates time taken by provisioning activity to finish in MS.
2422 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2423
2424 // ACTION: Logged when preprovisioning activity finishes.
2425 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2426 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2427
2428 // ACTION: Logged when encrypt device activity finishes.
2429 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2430 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2431
2432 // ACTION: Logged when web activity finishes.
2433 // TIME: Indicates total time taken by web activity to finish in MS.
2434 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2435
2436 // ACTION: Logged when trampoline activity finishes.
2437 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2438 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2439
2440 // ACTION: Logged when encryption activity finishes.
2441 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2442 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2443
2444 // ACTION: Logged when finalization activity finishes.
2445 // TIME: Indicates time taken by finalization activity to finish in MS.
2446 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002447
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002448 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002449 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002450
Fan Zhang95094182016-08-24 18:14:16 -07002451 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002452 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002453
2454 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002455 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002456
2457 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002458 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002459
2460 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002461 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002462
2463 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002464 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002465
Fan Zhangc1352ae2016-09-16 12:46:11 -07002466 // OPEN: Settings > Security > Use one lock dialog
2467 DIALOG_UNIFICATION_CONFIRMATION = 532;
2468
2469 // OPEN: Settings > Security > User Credential
2470 DIALOG_USER_CREDENTIAL = 533;
2471
2472 // OPEN: Settings > Accounts > Remove account
2473 DIALOG_REMOVE_USER = 534;
2474
2475 // OPEN: Settings > Accounts > Confirm auto sync dialog
2476 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2477
2478 // OPEN: Settings > Apps > Dialog for running service details
2479 DIALOG_RUNNIGN_SERVICE = 536;
2480
2481 // OPEN: Settings > Dialog for hiding home settings
2482 DIALOG_NO_HOME = 537;
2483
2484 // OPEN: Settings > Bluetooth > Rename this device
2485 DIALOG_BLUETOOTH_RENAME = 538;
2486
2487 // OPEN: Settings > Bluetooth > Paired device profile
2488 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2489
2490 // OPEN: Settings > Battery optimization > details for app
2491 DIALOG_HIGH_POWER_DETAILS = 540;
2492
2493 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2494 DIALOG_KEYBOARD_LAYOUT = 541;
2495
2496 // OPEN: Settings > Wifi > WPS Setup dialog
2497 DIALOG_WPS_SETUP = 542;
2498
2499 // OPEN: Settings > WIFI Scan permission dialog
2500 DIALOG_WIFI_SCAN_MODE = 543;
2501
2502 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2503 DIALOG_WIFI_SKIP = 544;
2504
2505 // OPEN: Settings > Wireless > VPN > Config dialog
2506 DIALOG_LEGACY_VPN_CONFIG = 545;
2507
2508 // OPEN: Settings > Wireless > VPN > Config dialog for app
2509 DIALOG_VPN_APP_CONFIG = 546;
2510
2511 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2512 DIALOG_VPN_CANNOT_CONNECT = 547;
2513
2514 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2515 DIALOG_VPN_REPLACE_EXISTING = 548;
2516
2517 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2518 DIALOG_BILLING_CYCLE = 549;
2519
2520 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2521 DIALOG_BILLING_BYTE_LIMIT = 550;
2522
2523 // OPEN: Settings > Billing cycle > turn on data limit dialog
2524 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2525
2526 // OPEN: Settings > Service > Turn off notification access dialog
2527 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2528
2529 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2530 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2531
2532 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2533 DIALOG_ZEN_ACCESS_GRANT = 554;
2534
2535 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2536 DIALOG_ZEN_ACCESS_REVOKE = 555;
2537
2538 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2539 DIALOG_ZEN_TIMEPICKER = 556;
2540
2541 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2542 DIALOG_SERVICE_ACCESS_WARNING = 557;
2543
2544 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2545 DIALOG_APP_INFO_ACTION = 558;
2546
2547 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2548 DIALOG_VOLUME_FORGET = 559;
2549
2550 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2551 DIALOG_VOLUME_SLOW_WARNING = 560;
2552
2553 // OPEN: Settings > Storage > Dialog for initializing a volume
2554 DIALOG_VOLUME_INIT = 561;
2555
2556 // OPEN: Settings > Storage > Dialog for unmounting a volume
2557 DIALOG_VOLUME_UNMOUNT = 562;
2558
2559 // OPEN: Settings > Storage > Dialog for renaming a volume
2560 DIALOG_VOLUME_RENAME = 563;
2561
2562 // OPEN: Settings > Storage > Dialog for clear cache
2563 DIALOG_STORAGE_CLEAR_CACHE = 564;
2564
2565 // OPEN: Settings > Storage > Dialog for system info
2566 DIALOG_STORAGE_SYSTEM_INFO = 565;
2567
2568 // OPEN: Settings > Storage > Dialog for other info
2569 DIALOG_STORAGE_OTHER_INFO = 566;
2570
2571 // OPEN: Settings > Storage > Dialog for user info
2572 DIALOG_STORAGE_USER_INFO = 567;
2573
2574 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2575 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2576
2577 // OPEN: Settings > Add fingerprint > Error dialog
2578 DIALOG_FINGERPINT_ERROR = 569;
2579
2580 // OPEN: Settings > Fingerprint > Rename or delete dialog
2581 DIALOG_FINGERPINT_EDIT = 570;
2582
2583 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2584 DIALOG_FINGERPINT_DELETE_LAST = 571;
2585
2586 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2587 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2588
2589 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2590 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2591
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002592 // OPEN: Settings > Proxy Selector error dialog
2593 DIALOG_PROXY_SELECTOR_ERROR = 574;
2594
2595 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2596 DIALOG_WIFI_P2P_DISCONNECT = 575;
2597
2598 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2599 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2600
2601 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2602 DIALOG_WIFI_P2P_RENAME = 577;
2603
2604 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2605 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2606
2607 // OPEN: Settings > APN > Restore default dialog
2608 DIALOG_APN_RESTORE_DEFAULT = 579;
2609
2610 // OPEN: Settings > Dream > When to dream dialog
2611 DIALOG_DREAM_START_DELAY = 580;
2612
2613 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2614 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2615
2616 // OPEN: Settings > Tether > AP setting dialog
2617 DIALOG_AP_SETTINGS = 582;
2618
2619 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2620 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2621
2622 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2623 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2624
2625 // OPEN: Settings > Account > Remove account dialog
2626 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2627
2628 // OPEN: Settings > Account > Remove account failed dialog
2629 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2630
2631 // OPEN: Settings > Account > Cannot do onetime sync dialog
2632 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2633
2634 // OPEN: Settings > Display > Night light > Set start time dialog
2635 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2636
2637 // OPEN: Settings > Display > Night light > Set end time dialog
2638 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2639
2640 // OPEN: Settings > User > Edit info dialog
2641 DIALOG_USER_EDIT = 590;
2642
2643 // OPEN: Settings > User > Confirm remove dialog
2644 DIALOG_USER_REMOVE = 591;
2645
2646 // OPEN: Settings > User > Enable calling dialog
2647 DIALOG_USER_ENABLE_CALLING = 592;
2648
2649 // OPEN: Settings > User > Enable calling and sms dialog
2650 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2651
2652 // OPEN: Settings > User > Cannot manage device message dialog
2653 DIALOG_USER_CANNOT_MANAGE = 594;
2654
2655 // OPEN: Settings > User > Add user dialog
2656 DIALOG_USER_ADD = 595;
2657
2658 // OPEN: Settings > User > Setup user dialog
2659 DIALOG_USER_SETUP = 596;
2660
2661 // OPEN: Settings > User > Setup profile dialog
2662 DIALOG_USER_SETUP_PROFILE = 597;
2663
2664 // OPEN: Settings > User > Choose user type dialog
2665 DIALOG_USER_CHOOSE_TYPE = 598;
2666
2667 // OPEN: Settings > User > Need lockscreen dialog
2668 DIALOG_USER_NEED_LOCKSCREEN = 599;
2669
2670 // OPEN: Settings > User > Confirm exit guest mode dialog
2671 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2672
2673 // OPEN: Settings > User > Edit user profile dialog
2674 DIALOG_USER_EDIT_PROFILE = 601;
2675
2676 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2677 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2678
2679 // OPEN: Settings > Wifi > Edit AP dialog
2680 DIALOG_WIFI_AP_EDIT = 603;
2681
2682 // OPEN: Settings > Wifi > PBC Config dialog
2683 DIALOG_WIFI_PBC = 604;
2684
2685 // OPEN: Settings > Wifi > Display pin dialog
2686 DIALOG_WIFI_PIN = 605;
2687
2688 // OPEN: Settings > Wifi > Write config to NFC dialog
2689 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002690 // OPEN: Settings > Date > Date picker dialog
2691 DIALOG_DATE_PICKER = 607;
2692
2693 // OPEN: Settings > Date > Time picker dialog
2694 DIALOG_TIME_PICKER = 608;
2695
2696 // OPEN: Settings > Wireless > Manage wireless plan dialog
2697 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002698
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002699 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002700 PROVISIONING_NETWORK_TYPE = 610;
2701
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002702 // ACTION: Logs action which triggered provisioning.
2703 PROVISIONING_ACTION = 611;
2704
Mahaver Chopraab282072016-10-06 19:19:23 +01002705 // ACTION: Logs extra passed by the dpc while provisioning.
2706 PROVISIONING_EXTRA = 612;
2707
Salvador Martinez64867c12016-10-14 15:25:09 -07002708 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2709 BLUETOOTH_DIALOG_FRAGMENT = 613;
2710
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002711 // ACTION: Logs provisioning started by zero touch.
2712 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2713
2714 // ACTION: Logs provisioning started by NFC bump.
2715 PROVISIONING_ENTRY_POINT_NFC = 615;
2716
2717 // ACTION: Logs provisioning started using QR code.
2718 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2719
2720 // ACTION: Logs provisioning started using adb.
2721 PROVISIONING_ENTRY_POINT_ADB = 617;
2722
2723 // ACTION: Logs provisioning started by trusted source.
2724 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2725
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002726 // ACTION: Logged when copy account task finishes.
2727 // TIME: Indicates time taken by copy account task to finish in MS.
2728 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2729
2730 // ACTION: Logged when create profile task finishes.
2731 // TIME: Indicates time taken by create profile task to finish in MS.
2732 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2733
2734 // ACTION: Logged when start profile task finishes.
2735 // TIME: Indicates time taken by start profile task to finish in MS.
2736 PROVISIONING_START_PROFILE_TASK_MS = 621;
2737
2738 // ACTION: Logged when download package task finishes.
2739 // TIME: Indicates time taken by download package task to finish in MS.
2740 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2741
2742 // ACTION: Logged when install package task finishes.
2743 // TIME: Indicates time taken by install package task to finish in MS.
2744 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2745
2746 // ACTION: User cancelled provisioning.
2747 PROVISIONING_CANCELLED = 624;
2748
2749 // ACTION: Logged when provisioning throws an error.
2750 PROVISIONING_ERROR = 625;
2751
2752 // ACTION: Logs the status of copying user account during provisioning.
2753 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2754
2755 // ACTION: Logs the end to end time taken by all provisioning tasks.
2756 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2757
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002758 // OPEN: Settings > Privacy
2759 // CATEGORY: SETTINGS
2760 // OS: O
2761 ENTERPRISE_PRIVACY_SETTINGS = 628;
2762
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002763 // ACTION: Longpress on a TextView.
2764 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2765 // CATEGORY: TEXT_CONTROLS
2766 // OS: O
2767 TEXT_LONGPRESS = 629;
2768
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002769 // ACTION: An app requested an unknown permission
2770 // PACKAGE: The package name of the app requesting the permission
2771 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2772
2773 // ACTION: An app was granted an unknown permission
2774 // PACKAGE: The package name of the app that was granted the permission
2775 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2776
2777 // ACTION: An app requested an unknown permission and the request was denied
2778 // PACKAGE: The package name of the app requesting the permission
2779 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2780
2781 // ACTION: An unknown permission was revoked for an app
2782 // PACKAGE: The package name of the app the permission was revoked for
2783 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2784
2785 // ACTION: An app requested the permission READ_CALENDAR
2786 // PACKAGE: The package name of the app requesting the permission
2787 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2788
2789 // ACTION: An app was granted the permission READ_CALENDAR
2790 // PACKAGE: The package name of the app that was granted the permission
2791 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2792
2793 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2794 // PACKAGE: The package name of the app requesting the permission
2795 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2796
2797 // ACTION: The permission READ_CALENDAR was revoked for an app
2798 // PACKAGE: The package name of the app the permission was revoked for
2799 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2800
2801 // ACTION: An app requested the permission WRITE_CALENDAR
2802 // PACKAGE: The package name of the app requesting the permission
2803 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2804
2805 // ACTION: An app was granted the permission WRITE_CALENDAR
2806 // PACKAGE: The package name of the app that was granted the permission
2807 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2808
2809 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2810 // PACKAGE: The package name of the app requesting the permission
2811 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2812
2813 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2814 // PACKAGE: The package name of the app the permission was revoked for
2815 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2816
2817 // ACTION: An app requested the permission CAMERA
2818 // PACKAGE: The package name of the app requesting the permission
2819 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2820
2821 // ACTION: An app was granted the permission CAMERA
2822 // PACKAGE: The package name of the app that was granted the permission
2823 ACTION_PERMISSION_GRANT_CAMERA = 643;
2824
2825 // ACTION: An app requested the permission CAMERA and the request was denied
2826 // PACKAGE: The package name of the app requesting the permission
2827 ACTION_PERMISSION_DENIED_CAMERA = 644;
2828
2829 // ACTION: The permission CAMERA was revoked for an app
2830 // PACKAGE: The package name of the app the permission was revoked for
2831 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2832
2833 // ACTION: An app requested the permission READ_CONTACTS
2834 // PACKAGE: The package name of the app requesting the permission
2835 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2836
2837 // ACTION: An app was granted the permission READ_CONTACTS
2838 // PACKAGE: The package name of the app that was granted the permission
2839 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2840
2841 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2842 // PACKAGE: The package name of the app requesting the permission
2843 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2844
2845 // ACTION: The permission READ_CONTACTS was revoked for an app
2846 // PACKAGE: The package name of the app the permission was revoked for
2847 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2848
2849 // ACTION: An app requested the permission WRITE_CONTACTS
2850 // PACKAGE: The package name of the app requesting the permission
2851 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2852
2853 // ACTION: An app was granted the permission WRITE_CONTACTS
2854 // PACKAGE: The package name of the app that was granted the permission
2855 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2856
2857 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2858 // PACKAGE: The package name of the app requesting the permission
2859 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2860
2861 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2862 // PACKAGE: The package name of the app the permission was revoked for
2863 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2864
2865 // ACTION: An app requested the permission GET_ACCOUNTS
2866 // PACKAGE: The package name of the app requesting the permission
2867 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2868
2869 // ACTION: An app was granted the permission GET_ACCOUNTS
2870 // PACKAGE: The package name of the app that was granted the permission
2871 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2872
2873 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2874 // PACKAGE: The package name of the app requesting the permission
2875 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2876
2877 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2878 // PACKAGE: The package name of the app the permission was revoked for
2879 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2880
2881 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2882 // PACKAGE: The package name of the app requesting the permission
2883 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2884
2885 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2886 // PACKAGE: The package name of the app that was granted the permission
2887 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2888
2889 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2890 // PACKAGE: The package name of the app requesting the permission
2891 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2892
2893 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2894 // PACKAGE: The package name of the app the permission was revoked for
2895 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2896
2897 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2898 // PACKAGE: The package name of the app requesting the permission
2899 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2900
2901 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2902 // PACKAGE: The package name of the app that was granted the permission
2903 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2904
2905 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2906 // PACKAGE: The package name of the app requesting the permission
2907 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2908
2909 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2910 // PACKAGE: The package name of the app the permission was revoked for
2911 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2912
2913 // ACTION: An app requested the permission RECORD_AUDIO
2914 // PACKAGE: The package name of the app requesting the permission
2915 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2916
2917 // ACTION: An app was granted the permission RECORD_AUDIO
2918 // PACKAGE: The package name of the app that was granted the permission
2919 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2920
2921 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2922 // PACKAGE: The package name of the app requesting the permission
2923 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2924
2925 // ACTION: The permission RECORD_AUDIO was revoked for an app
2926 // PACKAGE: The package name of the app the permission was revoked for
2927 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2928
2929 // ACTION: An app requested the permission READ_PHONE_STATE
2930 // PACKAGE: The package name of the app requesting the permission
2931 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2932
2933 // ACTION: An app was granted the permission READ_PHONE_STATE
2934 // PACKAGE: The package name of the app that was granted the permission
2935 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2936
2937 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2938 // PACKAGE: The package name of the app requesting the permission
2939 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2940
2941 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2942 // PACKAGE: The package name of the app the permission was revoked for
2943 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2944
2945 // ACTION: An app requested the permission CALL_PHONE
2946 // PACKAGE: The package name of the app requesting the permission
2947 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2948
2949 // ACTION: An app was granted the permission CALL_PHONE
2950 // PACKAGE: The package name of the app that was granted the permission
2951 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2952
2953 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2954 // PACKAGE: The package name of the app requesting the permission
2955 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2956
2957 // ACTION: The permission CALL_PHONE was revoked for an app
2958 // PACKAGE: The package name of the app the permission was revoked for
2959 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2960
2961 // ACTION: An app requested the permission READ_CALL_LOG
2962 // PACKAGE: The package name of the app requesting the permission
2963 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2964
2965 // ACTION: An app was granted the permission READ_CALL_LOG
2966 // PACKAGE: The package name of the app that was granted the permission
2967 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2968
2969 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2970 // PACKAGE: The package name of the app requesting the permission
2971 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2972
2973 // ACTION: The permission READ_CALL_LOG was revoked for an app
2974 // PACKAGE: The package name of the app the permission was revoked for
2975 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2976
2977 // ACTION: An app requested the permission WRITE_CALL_LOG
2978 // PACKAGE: The package name of the app requesting the permission
2979 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2980
2981 // ACTION: An app was granted the permission WRITE_CALL_LOG
2982 // PACKAGE: The package name of the app that was granted the permission
2983 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2984
2985 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2986 // PACKAGE: The package name of the app requesting the permission
2987 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
2988
2989 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
2990 // PACKAGE: The package name of the app the permission was revoked for
2991 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
2992
2993 // ACTION: An app requested the permission ADD_VOICEMAIL
2994 // PACKAGE: The package name of the app requesting the permission
2995 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
2996
2997 // ACTION: An app was granted the permission ADD_VOICEMAIL
2998 // PACKAGE: The package name of the app that was granted the permission
2999 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3000
3001 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3002 // PACKAGE: The package name of the app requesting the permission
3003 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3004
3005 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3006 // PACKAGE: The package name of the app the permission was revoked for
3007 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3008
3009 // ACTION: An app requested the permission USE_SIP
3010 // PACKAGE: The package name of the app requesting the permission
3011 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3012
3013 // ACTION: An app was granted the permission USE_SIP
3014 // PACKAGE: The package name of the app that was granted the permission
3015 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3016
3017 // ACTION: An app requested the permission USE_SIP and the request was denied
3018 // PACKAGE: The package name of the app requesting the permission
3019 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3020
3021 // ACTION: The permission USE_SIP was revoked for an app
3022 // PACKAGE: The package name of the app the permission was revoked for
3023 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3024
3025 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3026 // PACKAGE: The package name of the app requesting the permission
3027 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3028
3029 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3030 // PACKAGE: The package name of the app that was granted the permission
3031 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3032
3033 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3034 // PACKAGE: The package name of the app requesting the permission
3035 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3036
3037 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3038 // PACKAGE: The package name of the app the permission was revoked for
3039 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3040
3041 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3042 // PACKAGE: The package name of the app requesting the permission
3043 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3044
3045 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3046 // PACKAGE: The package name of the app that was granted the permission
3047 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3048
3049 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3050 // PACKAGE: The package name of the app requesting the permission
3051 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3052
3053 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3054 // PACKAGE: The package name of the app the permission was revoked for
3055 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3056
3057 // ACTION: An app requested the permission BODY_SENSORS
3058 // PACKAGE: The package name of the app requesting the permission
3059 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3060
3061 // ACTION: An app was granted the permission BODY_SENSORS
3062 // PACKAGE: The package name of the app that was granted the permission
3063 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3064
3065 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3066 // PACKAGE: The package name of the app requesting the permission
3067 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3068
3069 // ACTION: The permission BODY_SENSORS was revoked for an app
3070 // PACKAGE: The package name of the app the permission was revoked for
3071 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3072
3073 // ACTION: An app requested the permission SEND_SMS
3074 // PACKAGE: The package name of the app requesting the permission
3075 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3076
3077 // ACTION: An app was granted the permission SEND_SMS
3078 // PACKAGE: The package name of the app that was granted the permission
3079 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3080
3081 // ACTION: An app requested the permission SEND_SMS and the request was denied
3082 // PACKAGE: The package name of the app requesting the permission
3083 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3084
3085 // ACTION: The permission SEND_SMS was revoked for an app
3086 // PACKAGE: The package name of the app the permission was revoked for
3087 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3088
3089 // ACTION: An app requested the permission RECEIVE_SMS
3090 // PACKAGE: The package name of the app requesting the permission
3091 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3092
3093 // ACTION: An app was granted the permission RECEIVE_SMS
3094 // PACKAGE: The package name of the app that was granted the permission
3095 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3096
3097 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3098 // PACKAGE: The package name of the app requesting the permission
3099 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3100
3101 // ACTION: The permission RECEIVE_SMS was revoked for an app
3102 // PACKAGE: The package name of the app the permission was revoked for
3103 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3104
3105 // ACTION: An app requested the permission READ_SMS
3106 // PACKAGE: The package name of the app requesting the permission
3107 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3108
3109 // ACTION: An app was granted the permission READ_SMS
3110 // PACKAGE: The package name of the app that was granted the permission
3111 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3112
3113 // ACTION: An app requested the permission READ_SMS and the request was denied
3114 // PACKAGE: The package name of the app requesting the permission
3115 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3116
3117 // ACTION: The permission READ_SMS was revoked for an app
3118 // PACKAGE: The package name of the app the permission was revoked for
3119 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3120
3121 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3122 // PACKAGE: The package name of the app requesting the permission
3123 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3124
3125 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3126 // PACKAGE: The package name of the app that was granted the permission
3127 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3128
3129 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3130 // PACKAGE: The package name of the app requesting the permission
3131 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3132
3133 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3134 // PACKAGE: The package name of the app the permission was revoked for
3135 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3136
3137 // ACTION: An app requested the permission RECEIVE_MMS
3138 // PACKAGE: The package name of the app requesting the permission
3139 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3140
3141 // ACTION: An app was granted the permission RECEIVE_MMS
3142 // PACKAGE: The package name of the app that was granted the permission
3143 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3144
3145 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3146 // PACKAGE: The package name of the app requesting the permission
3147 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3148
3149 // ACTION: The permission RECEIVE_MMS was revoked for an app
3150 // PACKAGE: The package name of the app the permission was revoked for
3151 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3152
3153 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3154 // PACKAGE: The package name of the app requesting the permission
3155 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3156
3157 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3158 // PACKAGE: The package name of the app that was granted the permission
3159 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3160
3161 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3162 // PACKAGE: The package name of the app requesting the permission
3163 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3164
3165 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3166 // PACKAGE: The package name of the app the permission was revoked for
3167 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3168
3169 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3170 // PACKAGE: The package name of the app requesting the permission
3171 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3172
3173 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3174 // PACKAGE: The package name of the app that was granted the permission
3175 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3176
3177 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3178 // PACKAGE: The package name of the app requesting the permission
3179 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3180
3181 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3182 // PACKAGE: The package name of the app the permission was revoked for
3183 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3184
Mahaverfa6566e2016-11-29 21:08:14 +00003185 // ACTION: Logged when a provisioning session has started
3186 PROVISIONING_SESSION_STARTED = 734;
3187
3188 // ACTION: Logged when a provisioning session has completed
3189 PROVISIONING_SESSION_COMPLETED = 735;
3190
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003191 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003192 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003193 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003194
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003195 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003196 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003197 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003198
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003199 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003200 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003201 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003202
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003203 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003204 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003205 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003206
Santos Cordon3107d292016-09-20 15:50:35 -07003207 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3208 // SUBTYPE: slider value
3209 // CATEGORY: QUICK_SETTINGS
3210 // OS: 6.0
3211 ACTION_BRIGHTNESS_FOR_VR = 498;
3212
Hugo Benichie1cbf152016-12-08 09:36:52 +09003213 // ACTION: A captive portal was detected during network validation
3214 // CATEGORY: NOTIFICATION
3215 // OS: N-MR2
3216 NOTIFICATION_NETWORK_SIGN_IN = 740;
3217
3218 // ACTION: An unvalidated network without Internet was selected by the user
3219 // CATEGORY: NOTIFICATION
3220 // OS: N-MR2
3221 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3222
3223 // ACTION: A validated network failed revalidation and lost Internet access
3224 // CATEGORY: NOTIFICATION
3225 // OS: N-MR2
3226 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3227
3228 // ACTION: The system default network switched to a different network
3229 // CATEGORY: NOTIFICATION
3230 // OS: N-MR2
3231 NOTIFICATION_NETWORK_SWITCH = 743;
3232
Fan Zhang074c4cb2016-12-21 12:10:33 -08003233 // OPEN: Settings > System
3234 SETTINGS_SYSTEM_CATEGORY = 744;
3235
3236 // OPEN: Settings > Storage
3237 SETTINGS_STORAGE_CATEGORY = 745;
3238
3239 // OPEN: Settings > Network & Internet
3240 SETTINGS_NETWORK_CATEGORY = 746;
3241
3242 // OPEN: Settings > Connected Device
3243 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3244
3245 // OPEN: Settings > App & Notification
3246 SETTINGS_APP_NOTIF_CATEGORY = 748;
3247
3248 // OPEN: Settings > System > Input & Gesture
3249 SETTINGS_INPUT_CATEGORY = 749;
3250
3251 // OPEN: Settings > System > Language & Region
3252 SETTINGS_LANGUAGE_CATEGORY = 750;
3253
3254 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3255 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3256
3257 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3258 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3259
3260 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3261 SETTINGS_GESTURE_PICKUP = 753;
3262
3263 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3264 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3265
3266 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3267 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3268
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003269 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3270 // CATEGORY: Settings
3271 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3272
Alison Cichowlas803054d2016-12-13 14:38:01 -05003273 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003274 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003275 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3276 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3277 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003278
Salvador Martinezc43ab062016-12-21 11:09:11 -08003279 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3280 // user accepted
3281 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003282
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003283 // Enclosing category for group of APP_TRANSITION_FOO events,
3284 // logged when we execute an app transition.
3285 APP_TRANSITION = 761;
3286
Fan Zhang945deea2017-01-11 16:37:49 -08003287 // ACTION: User leaves Settings search UI without entering any query.
3288 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3289
3290 // ACTION: Clicking on any search result in Settings.
3291 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003292
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003293 // ACTION: Allow Battery optimization for an app
3294 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3295
3296 // ACTION: Deny Battery optimization for an app
3297 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3298
3299 // ACTION: Enable Device Admin app
3300 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3301
3302 // ACTION: Disable Device Admin app
3303 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3304
3305 // ACTION: Allow "Do Not Disturb access" for an app
3306 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3307
3308 // ACTION: Deny "Do Not Disturb access" for an app
3309 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3310
3311 // ACTION: Allow "Draw over other apps" for an app
3312 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3313
Christine Franks47175c32017-03-14 10:21:25 -07003314 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003315 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3316
3317 // ACTION: Allow "VR helper services" for an app
3318 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3319
3320 // ACTION: Deny "VR helper services" for an app
3321 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3322
3323 // ACTION: Allow "Modify system settings" for an app
3324 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3325
3326 // ACTION: Deny "Modify system settings" for an app
3327 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3328
3329 // ACTION: Allow "Notification access" for an app
3330 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3331
3332 // ACTION: Deny "Notification access" for an app
3333 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3334
3335 // ACTION: "Premium SMS access" for an app - "ask user" option
3336 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3337
3338 // ACTION: "Premium SMS access" for an app - "never allow" option
3339 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3340
3341 // ACTION: "Premium SMS access" for an app - "always allow" option
3342 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3343
3344 // ACTION: Allow "Unrestricted data access" for an app
3345 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3346
3347 // ACTION: Deny "Unrestricted data access" for an app
3348 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3349
3350 // ACTION: Allow "Usage access" for an app
3351 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3352
3353 // ACTION: Deny "Usage access" for an app
3354 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3355
Fan Zhangad5dacc2017-01-18 14:18:54 -08003356 // OPEN: Settings > Apps > Default Apps > Default browser
3357 DEFAULT_BROWSER_PICKER = 785;
3358
3359 // OPEN: Settings > Apps > Default Apps > Default emergency app
3360 DEFAULT_EMERGENCY_APP_PICKER = 786;
3361
3362 // OPEN: Settings > Apps > Default Apps > Default home
3363 DEFAULT_HOME_PICKER = 787;
3364
3365 // OPEN: Settings > Apps > Default Apps > Default phone
3366 DEFAULT_PHONE_PICKER = 788;
3367
3368 // OPEN: Settings > Apps > Default Apps > Default sms
3369 DEFAULT_SMS_PICKER = 789;
3370
3371 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3372 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3373
3374 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3375 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3376
Jason Long1b51da62017-01-24 11:35:31 -08003377 // OPEN: Settings > Apps > Default Apps > Default autofill app
3378 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003379
Chris Wren26ca65d2016-11-29 10:43:28 -05003380 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003381 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003382 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3383 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3384 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3385 NOTIFICATION_ID = 796;
3386 NOTIFICATION_TAG = 797;
3387 NOTIFICATION_SHADE_INDEX = 798;
3388 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003389
Anas Karbilaf7648f42016-12-11 00:55:02 +01003390 // OPEN: QS NFC tile shown
3391 // ACTION: QS NFC tile tapped
3392 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003393 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003394
Chris Wren26ca65d2016-11-29 10:43:28 -05003395 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003396 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003397 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3398 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3399 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3400 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3401 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3402 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3403
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003404 // ACTION: "Force stop" action on an app
3405 ACTION_APP_FORCE_STOP = 807;
3406
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003407 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3408 // CATEGORY: SETTINGS
3409 // OS: 8.0
3410 MANAGE_EXTERNAL_SOURCES = 808;
3411
Mahaver6cd47162017-01-23 09:59:33 +00003412 // ACTION: Logged when terms activity finishes.
3413 // TIME: Indicates time taken by terms activity to finish in MS.
3414 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3415
3416 // Indicates number of terms displayed on the terms screen.
3417 PROVISIONING_TERMS_COUNT = 810;
3418
3419 // Indicates number of terms read on the terms screen.
3420 PROVISIONING_TERMS_READ = 811;
3421
Winson Chung59fda9e2017-01-20 16:14:51 -08003422 // Logs that the user has edited the picture-in-picture settings.
3423 // CATEGORY: SETTINGS
3424 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3425
Winson Chungf4ac0632017-03-17 12:34:12 -07003426 // ACTION: Allow "Enable picture-in-picture" for an app
3427 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003428
Winson Chungf4ac0632017-03-17 12:34:12 -07003429 // ACTION: Deny "Enable picture-in-picture" for an app
3430 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003431
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003432 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3433 // CATEGORY: SETTINGS
3434 // OS: 8.0
3435 TTS_SLIDERS = 815;
3436
Jason Monk524fb402017-01-25 10:33:31 -05003437 // ACTION: Settings -> Display -> Theme
3438 ACTION_THEME = 816;
3439
chchaob8e253a2017-01-25 12:12:09 -08003440 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3441 // ACTION: Select to Speak configuration is chosen
3442 // SUBTYPE: 0 is off, 1 is on
3443 // CATEGORY: SETTINGS
3444 // OS: N
3445 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3446
Anton Philippov95a553e2017-01-27 00:08:24 +00003447 // OPEN: Settings > System > Backup
3448 // CATEGORY: SETTINGS
3449 // OS: O
3450 BACKUP_SETTINGS = 818;
3451
Winson Chung14fbe142016-12-19 16:18:24 -08003452 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003453 // VALUE: true if it was entered while hiding as a result of moving to
3454 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003455 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3456
3457 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3458 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3459 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3460
3461 // ACTION: The activity currently in picture-in-picture was minimized
3462 // VALUE: True if the PiP was minimized, false otherwise
3463 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3464
3465 // ACTION: Picture-in-picture was dismissed via the dismiss button
3466 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3467 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3468
3469 // ACTION: The visibility of the picture-in-picture meny
3470 // VALUE: Whether or not the menu is visible
3471 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3472
3473 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3474 // logged when the aspect ratio changes
3475 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3476
3477 // The current aspect ratio of the PiP, logged when it changes.
3478 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3479
Chris Wren27a52fa2017-02-01 14:21:43 -05003480 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3481 // CATEGORY: GLOBAL_SYSTEM_UI
3482 // OS: O
3483 FIELD_GESTURE_LENGTH = 826;
3484
3485 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3486 // CATEGORY: GLOBAL_SYSTEM_UI
3487 // OS: O
3488 FIELD_GESTURE_VELOCITY = 827;
3489
Christine Franks27fde392017-02-07 10:21:55 -08003490 // OPEN: Carrier demo mode password dialog
3491 CARRIER_DEMO_MODE_PASSWORD = 828;
3492
Fan Zhang70967f32017-02-13 16:02:24 -08003493 // ACTION: Create a Settings shortcut item.
3494 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3495
3496 // ACTION: A tile in Settings information architecture is clicked
3497 ACTION_SETTINGS_TILE_CLICK = 830;
3498
Julia Reynolds520df6e2017-02-13 09:05:10 -05003499 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3500 // updated
3501 // CATEGORY: NOTIFICATION
3502 // OS: O
3503 NOTIFICATION_SNOOZED = 831;
3504
3505 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3506 // OS: O
3507 NOTIFICATION_SNOOZED_CRITERIA = 832;
3508
Fan Zhang65899432017-02-14 13:36:53 -08003509 // FIELD - The context (source) from which an action is performed
3510 FIELD_CONTEXT = 833;
3511
Fan Zhangd95dcb42017-02-14 13:48:09 -08003512 // ACTION: Settings advanced button is expanded
3513 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3514
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003515 // ACTION: Logs the number of times the saved network evaluator was used to
3516 // recommend a wifi network
3517 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3518
3519 // ACTION: Logs the number of times the recommended network evaluator was
3520 // used to recommend a wifi network
3521 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3522
3523 // ACTION: Logs the number of times a recommended network was resulted in a
3524 // successful connection
3525 // VALUE: true if the connection was successful, false if the connection failed
3526 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3527
Daniel Nishic581bfc2017-02-08 10:18:19 -08003528 // OPEN: Settings > Storage > Games
3529 // CATEGORY: SETTINGS
3530 // OS: O
3531 APPLICATIONS_STORAGE_GAMES = 838;
3532
3533 // OPEN: Settings > Storage > Audio and Music
3534 // CATEGORY: SETTINGS
3535 // OS: O
3536 APPLICATIONS_STORAGE_MUSIC = 839;
3537
3538 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3539 // CATEGORY: SETTINGS
3540 // OS: O
3541 STORAGE_FREE_UP_SPACE_NOW = 840;
3542
3543 // ACTION: Settings > Storage > Files to open the File Manager
3544 // CATEGORY: SETTINGS
3545 // OS: O
3546 STORAGE_FILES = 841;
3547
Fan Zhangb1d49222017-02-15 17:12:58 -08003548 // FIELD - Rank of the clicked Settings search result
3549 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3550
Fan Zhang7f2cace2017-02-17 12:05:48 -08003551 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3552 DEFAULT_ASSIST_PICKER = 843;
3553
3554 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3555 DEFAULT_VOICE_INPUT_PICKER = 844;
3556
Daniel Nishi4058a842017-02-21 17:11:35 -08003557 // OPEN: Settings > Storage > [Profile]
3558 SETTINGS_STORAGE_PROFILE = 845;
3559
Doris Lingedb84c32017-02-23 10:56:01 -08003560 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3561 // CATEGORY: SETTINGS
3562 // OS: O
3563 ENCRYPTION_AND_CREDENTIAL = 846;
3564
Fan Zhangb66e5422017-02-24 14:37:45 -08003565 // ACTION: Settings > About device > Build number
3566 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3567
3568 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3569 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3570
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003571 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3572 // CATEGORY: SETTINGS
3573 // OS: O
3574 WIFI_NETWORK_DETAILS = 849;
3575
jackqdyuleia2a14342017-02-28 16:20:48 -08003576 // ACTION: Settings > Battery > Menu > Usage Alerts
3577 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3578
3579 // ACTION: Settings > Battery > Menu > Optimization
3580 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3581
3582 // ACTION: Settings > Battery > Menu > Apps Toggle
3583 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3584
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003585 // ACTION: Settings > Any preference is changed
3586 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3587
3588 // FIELD: The name of preference when it is changed in Settings
3589 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3590
3591 // FIELD: The new value of preference when it is changed in Settings
3592 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3593
Julia Reynoldsd373d782017-03-03 13:32:57 -05003594 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3595 // channel updated
3596 // PACKAGE: the package the channel belongs too
3597 // CATEGORY: NOTIFICATION
3598 // OS: O
3599 ACTION_NOTIFICATION_CHANNEL = 856;
3600
3601 // Tagged data for notification channel. String.
3602 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3603
3604 // Tagged data for notification channel. int.
3605 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3606
3607 // OPEN: Notification channel group created.
3608 // PACKAGE: the package the group belongs to
3609 // CATEGORY: NOTIFICATION
3610 // OS: O
3611 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3612
3613 // Tagged data for notification channel group. String.
3614 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3615
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003616 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3617 // CATEGORY: SETTINGS
3618 // OS: O
3619 SETTINGS_NETWORK_SCORER = 861;
3620
Fan Zhang99861312017-03-07 14:32:38 -08003621 // OPEN: Settings > About device > Model > Hardware info dialog
3622 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3623
mariagpuyol0f5512e2017-03-01 12:09:56 -08003624 // ACTION: Checks whether a contact's phone still exists
3625 // Value 0: It doesn't exist anymore
3626 // Value 1: It still exists
3627 // Value 2: A SecurityException was thrown
3628 // CATEGORY: SETTINGS
3629 // OS: N
3630 ACTION_PHONE_EXISTS = 863;
3631
3632 // ACTION: Retrieves a contact from CP2
3633 // Value 0: Contact retrieved without issues
3634 // Value 1: An IllegalArgumentException was thrown
3635 // CATEGORY: SETTINGS
3636 // OS: N
3637 ACTION_GET_CONTACT = 864;
3638
Chris Wren4d6b54d2017-04-27 16:56:54 -04003639 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003640 // internal platform metrics use.
3641 RESERVED_FOR_LOGBUILDER_PID = 865;
3642
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003643 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3644 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3645
3646 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3647 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3648
3649 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3650 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3651
3652 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3653 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3654
3655 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3656 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3657
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003658 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003659 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003660
Fan Zhang082d21c2017-03-13 15:25:54 -07003661 // ACTION: Settings > App detail > Uninstall
3662 ACTION_SETTINGS_UNINSTALL_APP = 872;
3663
3664 // ACTION: Settings > App detail > Uninstall Device admin app
3665 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3666
3667 // ACTION: Settings > App detail > Disable app
3668 ACTION_SETTINGS_DISABLE_APP = 874;
3669
3670 // ACTION: Settings > App detail > Enable app
3671 ACTION_SETTINGS_ENABLE_APP = 875;
3672
3673 // ACTION: Settings > App detail > Clear data
3674 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3675
3676 // ACTION: Settings > App detail > Clear cache
3677 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3678
3679 // ACTION: Clicking on any search result in Settings.
3680 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3681
3682 // FIELD: Settings inline search result name
3683 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3684
3685 // FIELD: Settings inline search result value
3686 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3687
Fan Zhang53797932017-03-13 17:46:24 -07003688 // ACTION: Settings > Search > Click saved queries
3689 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3690
Doris Lingbf8d9de2017-03-15 11:52:50 -07003691 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3692 // CATEGORY: SETTINGS
3693 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3694
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003695 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3696 // PACKAGE: The package name of the app requesting the permission
3697 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3698
3699 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3700 // PACKAGE: The package name of the app that was granted the permission
3701 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3702
3703 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3704 // PACKAGE: The package name of the app requesting the permission
3705 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3706
3707 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3708 // PACKAGE: The package name of the app the permission was revoked for
3709 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3710
3711 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3712 // PACKAGE: The package name of the app requesting the permission
3713 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3714
3715 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3716 // PACKAGE: The package name of the app that was granted the permission
3717 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3718
3719 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3720 // PACKAGE: The package name of the app requesting the permission
3721 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3722
3723 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3724 // PACKAGE: The package name of the app the permission was revoked for
3725 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3726
3727 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3728 // PACKAGE: The package name of the app requesting the permission
3729 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3730
3731 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3732 // PACKAGE: The package name of the app that was granted the permission
3733 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3734
3735 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3736 // PACKAGE: The package name of the app requesting the permission
3737 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3738
3739 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3740 // PACKAGE: The package name of the app the permission was revoked for
3741 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3742
3743 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3744 // PACKAGE: The package name of the app requesting the permission
3745 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3746
3747 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3748 // PACKAGE: The package name of the app that was granted the permission
3749 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3750
3751 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3752 // PACKAGE: The package name of the app requesting the permission
3753 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3754
3755 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3756 // PACKAGE: The package name of the app the permission was revoked for
3757 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3758
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003759 // ACTION: Phase 1 of instant application resolution occurred
3760 // OS: O
3761 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3762
3763 // ACTION: Phase 2 of instant application resolution occurred
3764 // OS: O
3765 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3766
3767 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3768 // OS: O
3769 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3770
3771 // FIELD: The status of an ephemeral resolution phase
3772 // Value 0: success
3773 // Value 1: no full hash match
3774 // OS: O
3775 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3776
3777 // FIELD - A token to identify all events that are part of the same instant application launch
3778 // OS: O
3779 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3780
3781 // FIELD - The name of the package responsible for launching the activity
3782 // OS: O
3783 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3784
3785 // FIELD - Whether or not the launched activity is part of an instant application
3786 // OS: O
3787 APP_TRANSITION_IS_EPHEMERAL = 905;
3788
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003789 // An autofill session was started
3790 // Package: Package of app that is autofilled
3791 AUTOFILL_SESSION_STARTED = 906;
3792
3793 // An autofill request was processed by a service
3794 // Type TYPE_SUCCESS: The request succeeded
3795 // Type TYPE_FAILURE: The request failed
3796 // Package: Package of app that is autofilled
3797 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3798 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3799 AUTOFILL_REQUEST = 907;
3800
3801 // Tag of a field for a package of an autofill service
3802 FIELD_AUTOFILL_SERVICE = 908;
3803
3804 // Tag of a field for the number of datasets
3805 FIELD_AUTOFILL_NUM_DATASETS = 909;
3806
3807 // An autofill dataset selection UI was shown
3808 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3809 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3810 // Type TYPE_ACTION: dataset was selected
3811 // Type TYPE_DETAIL: authentication was selected
3812 // Package: Package of app that was autofilled
3813 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3814 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3815 AUTOFILL_FILL_UI = 910;
3816
3817 // Tag of a field for the length of the filter text
3818 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3819
3820 // An autofill authentification succeeded
3821 // Package: Package of app that was autofilled
3822 AUTOFILL_AUTHENTICATED = 912;
3823
3824 // An activity was autofilled and all values could be applied
3825 // Package: Package of app that is autofilled
3826 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3827 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3828 AUTOFILL_DATASET_APPLIED = 913;
3829
3830 // Tag of a field for the number values to be filled in
3831 FIELD_AUTOFILL_NUM_VALUES = 914;
3832
3833 // Tag of a field for the number of views that were filled
3834 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3835
3836 // An autofill save UI was shown
3837 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3838 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3839 // Type TYPE_ACTION: data was saved
3840 // Package: Package of app that was autofilled
3841 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3842 AUTOFILL_SAVE_UI = 916;
3843
3844 // Tag of a field for the number of saveable ids
3845 FIELD_AUTOFILL_NUM_IDS = 917;
3846
3847 // ACTION: An autofill service was reqiested to save data
3848 // Type TYPE_SUCCESS: The request succeeded
3849 // Type TYPE_FAILURE: The request failed
3850 // Package: Package of app that was autofilled
3851 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3852 AUTOFILL_DATA_SAVE_REQUEST = 918;
3853
3854 // An auto-fill session was finished
3855 // Package: Package of app that was autofilled
3856 AUTOFILL_SESSION_FINISHED = 919;
3857
Chris Wren148805582017-03-17 17:18:11 -04003858 // meta-event: a reader has checkpointed the log here.
3859 METRICS_CHECKPOINT = 920;
3860
Fan Zhanged1845f2017-03-23 14:46:59 -07003861 // OPEN: Settings -> Display -> When in VR Mode
3862 VR_DISPLAY_PREFERENCE = 921;
3863
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003864 // OPEN: Settings > Accessibility > Magnification
3865 // CATEGORY: SETTINGS
3866 // OS: O
3867 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003868
3869 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3870 // app.
3871 // VALUE: The package name of the app
3872 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3873
Fan Zhang1a34e752017-03-24 13:44:51 -07003874 // OPEN: Settings -> System -> Reset options
3875 RESET_DASHBOARD = 924;
3876
Jason Monk8c09ac72017-03-16 11:53:40 -04003877 // ACTION: QS -> Tile clicked
3878 ACTION_QS_CLICK = 925;
3879
3880 // ACTION: QS -> Secondary click
3881 ACTION_QS_SECONDARY_CLICK = 926;
3882
3883 // FIELD: Position info in QS clicks
3884 FIELD_QS_POSITION = 927;
3885
3886 // FIELD: The value of a QS tile when clicked (if applicable)
3887 FIELD_QS_VALUE = 928;
3888
3889 // ACTION: QS -> Detail panel -> more settings
3890 ACTION_QS_MORE_SETTINGS = 929;
3891
3892 // ACTION: QS -> Click date
3893 ACTION_QS_DATE = 930;
3894
Jason Monk1b775652017-03-31 15:42:27 -04003895 // ACTION: Event on nav button
3896 ACTION_NAV_BUTTON_EVENT = 931;
3897
3898 // FIELD: Flags for a nav button event
3899 FIELD_FLAGS = 932;
3900
3901 // FIELD: Action for a nav button event
3902 FIELD_NAV_ACTION = 933;
3903
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003904 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3905 // CATEGORY: SETTINGS
3906 // OS: O
3907 FINGERPRINT_REMOVE_SIDECAR = 934;
3908
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003909 // OPEN: Settings > Storage > Movies & TV
3910 // CATEGORY: SETTINGS
3911 // OS: O
3912 APPLICATIONS_STORAGE_MOVIES = 935;
3913
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003914 // OPEN: Text selection "assist" menu item shown.
3915 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3916 // CATEGORY: TEXT_CONTROLS
3917 // OS: O
3918 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3919
3920 // ACTION: Text selection "assist" menu item clicked.
3921 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3922 // CATEGORY: TEXT_CONTROLS
3923 // OS: O
3924 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3925
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003926 // OPEN: Settings > Security > Managed Device Info > Apps installed
3927 // CATEGORY: SETTINGS
3928 // OS: O
3929 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3930
3931 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3932 // CATEGORY: SETTINGS
3933 // OS: O
3934 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3935
3936 // OPEN: Settings > Security > Managed Device Info > Default apps
3937 // CATEGORY: SETTINGS
3938 // OS: O
3939 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3940
Julia Reynolds80b18072017-04-23 12:27:07 -04003941 // OPEN: Settings > Notifications > An app > A channel > Importance
3942 // CATEGORY: SETTINGS
3943 // OS: O
3944 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3945
3946 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3947 // CATEGORY: SETTINGS
3948 // OS: O
3949 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3950
Chris Wren4d6b54d2017-04-27 16:56:54 -04003951 // This value should never appear in log outputs - it is reserved for
3952 // internal platform metrics use.
3953 RESERVED_FOR_LOGBUILDER_UID = 943;
3954
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003955 // OPEN: Running background apps notification > List of background apps
3956 // CATEGORY: GLOBAL_SYSTEM_UI
3957 // OS: O
3958 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3959
Jorim Jaggi515dd682017-05-05 15:05:07 +02003960 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3961 // client.
3962 // OS: O
3963 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3964
Chris Wrenb3921792017-06-01 13:34:46 -04003965 // FIELD - The group ID of a notification.
3966 // Type: string
3967 // OS: O
3968 FIELD_NOTIFICATION_GROUP_ID = 946;
3969
3970 // FIELD - If the notification is a group summary: 1.
3971 // Type: int encoded boolean
3972 // OS: O
3973 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
3974
Chris Wren26ca65d2016-11-29 10:43:28 -05003975 // ---- End O Constants, all O constants go above this line ----
3976
Daniel Sheng2c4bc642017-04-18 14:17:16 -07003977 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
3978 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
3979
jackqdyulei92e492e2017-04-28 13:04:42 -07003980 // OPEN: Settings > Battery > High Usage > Abnormal app page
3981 // CATEGORY: SETTINGS
3982 FUELGAUGE_ANOMALY_DETAIL = 987;
3983
3984 // OPEN: Settings > Battery > High Usage
3985 DIALOG_HANDLE_ANOMALY = 988;
3986
Jonathan Solnita4138162017-05-10 21:06:04 -07003987 // ACTION: Camera lift gesture
3988 // CATEGORY: GLOBAL_SYSTEM_UI
3989 // OS: O
3990 ACTION_CAMERA_LIFT_TRIGGER = 989;
3991
Maurice Lam76ae09c2017-05-05 12:03:49 -07003992 // OPEN: Choose screen lock dialog in Settings
3993 // CATEGORY: SETTINGS
3994 // OS: O DR
3995 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
3996
Maurice Lam05b2b8b2017-05-15 15:59:59 -07003997 // OPEN: Assist Gesture training intro in Settings
3998 // CATEGORY: SETTINGS
3999 // OS: O DR
4000 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4001
4002 // OPEN: Assist Gesture training enrolling in Settings
4003 // CATEGORY: SETTINGS
4004 // OS: O DR
4005 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4006
4007 // OPEN: Assist Gesture training finished in Settings
4008 // CATEGORY: SETTINGS
4009 // OS: O DR
4010 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4011
Fan Zhangc666a202017-05-18 17:50:20 -07004012 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4013 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4014
4015 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4016 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4017
Philip Quinn0f9566d2017-05-23 10:32:08 -07004018 // OPEN: Settings > System > Languages & input > Assist gesture
4019 // CATEGORY: SETTINGS
4020 // OS: O DR
4021 SETTINGS_ASSIST_GESTURE = 996;
4022
4023 // ACTION: Assist gesture released without triggering
4024 // CATEGORY: GLOBAL_SYSTEM_UI
4025 // OS: O DR
4026 ASSIST_GESTURE_RELEASED = 997;
4027
4028 // ACTION: Assist gesture primed
4029 // CATEGORY: GLOBAL_SYSTEM_UI
4030 // OS: O DR
4031 ASSIST_GESTURE_PRIMED = 998;
4032
4033 // ACTION: Assist gesture triggered
4034 // CATEGORY: GLOBAL_SYSTEM_UI
4035 // OS: O DR
4036 ASSIST_GESTURE_TRIGGERED = 999;
4037
Fan Zhang238162b2017-05-25 14:01:41 -07004038 // ACTION: Update default app from Settings
4039 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4040
4041 // FIELD - Query length when Settings search result is clicked
4042 FIELD_SETTINGS_SERACH_QUERY_LENGTH = 1001;
4043
4044 // FIELD - Number of results when Settings search result is clicked
4045 FIELD_SETTINGS_SERACH_RESULT_COUNT = 1002;
4046
Adrian Roos1c81d772017-05-25 18:00:21 -07004047 // OPEN: Settings > Display > Ambient Display
4048 // CATEGORY: SETTINGS
4049 // OS: O DR
4050 AMBIENT_DISPLAY_SETTINGS = 1003;
4051
Hugo Benichi11da42b2017-05-31 11:11:37 +09004052 // ACTION: CaptivePortalLoginActivity starts
4053 // CATEGORY: GLOBAL_SYSTEM_UI
4054 // OS: O DR
4055 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4056
4057 // ACTION: CaptivePortalLoginActivity auto-closes
4058 // CATEGORY: GLOBAL_SYSTEM_UI
4059 // OS: O DR
4060 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4061
4062 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4063 // CATEGORY: GLOBAL_SYSTEM_UI
4064 // OS: O DR
4065 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4066
4067 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4068 // CATEGORY: GLOBAL_SYSTEM_UI
4069 // OS: O DR
4070 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4071
4072 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4073 // CATEGORY: SETTINGS
4074 // OS: O DR
4075 ACTION_WIFI_SIGNIN = 1008;
4076
Antony Sargentf3cc3172017-05-04 14:58:06 -07004077 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4078 // CATEGORY: SETTINGS
4079 // OS: O DR
4080 BLUETOOTH_DEVICE_DETAILS = 1009;
4081
fanzhang172255759d2017-06-05 21:43:47 -07004082 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4083 CONFIGURE_KEYGUARD_DIALOG = 1010;
4084
Fan Zhange33c70d2017-06-06 12:37:13 -07004085 // Open: Settings > Search > No Result View
4086 SETTINGS_SEARCH_NO_RESULT = 1011;
4087
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004088 // OPEN: Assist Gesture before training
4089 // CATEGORY: SETTINGS
4090 // OS: O DR
4091 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4092
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004093 // CaptivePortalLoginActivity displays SSL error page
4094 // CATEGORY: GLOBAL_SYSTEM_UI
4095 // OS: O DR
4096 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4097
Fan Zhang1a0fc992017-06-13 13:45:21 -07004098 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4099 WIFI_TETHER_SETTINGS = 1014;
4100
Antony Sargentc3b5da62017-06-16 11:50:13 -07004101 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4102 // -> Edit name button.
4103 // CATEGORY: SETTINGS
4104 // OS: O DR
4105 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4106
Fan Zhang543587d2017-06-19 12:32:14 -07004107 // ACTION: Settings > Notification Settings > Open application notification
4108 // CATEGORY: SETTINGS
4109 // OS: O DR
4110 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4111
4112 // ACTION: Settings > App Info > Open app settings
4113 // CATEGORY: SETTINGS
4114 // OS: O DR
4115 ACTION_OPEN_APP_SETTING = 1017;
4116
jackqdyulei2f1a3592017-06-19 13:11:05 -07004117 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4118 // CATEGORY: SETTINGS
4119 // OS: O DR
4120 BLUETOOTH_PAIRING = 1018;
4121
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004122 // ACTION: Collect PSD Signals
4123 // CATEGORY: SETTINGS
4124 // OS: O DR
4125 ACTION_PSD_LOADER = 1019;
4126
jackqdyulei602bcc92017-06-21 15:17:53 -07004127 // ACTION: Background check action on an app
4128 // CATEGORY: SETTINGS
4129 // OS: O DR
4130 ACTION_APP_BACKGROUND_CHECK = 1020;
4131
4132 // ACTION: Location check action on an app
4133 // CATEGORY: SETTINGS
4134 // OS: O DR
4135 ACTION_APP_LOCATION_CHECK = 1021;
4136
Charlie Wang15a36ed2017-06-14 14:46:39 -07004137 // Device headset status
4138 // CATEGORY: OTHER
4139 // SUBTYPE: 1 is DON, 2 is DOFF
4140 // OS: O DR
4141 ACTION_HEADSET_STATUS = 1022;
4142
4143 // Device Headset Plug status
4144 // CATEGORY: OTHER
4145 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4146 // OS: O DR
4147 ACTION_HEADSET_PLUG = 1023;
4148
4149 // Device Headset battery level on Plug
4150 // CATEGORY: OTHER
4151 // FIELD - The battery percentage when the user decided to plug in
4152 // Type: integer
4153 // OS: O DR
4154 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4155
Charlie Wang566ec702017-06-26 15:30:03 -07004156 // Device Headset battery level on Plug
4157 // CATEGORY: OTHER
4158 // FIELD - The battery percentage when the user decided to plug in
4159 // Type: integer
4160 // OS: O DR
4161 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4162
Charlie Wang15a36ed2017-06-14 14:46:39 -07004163 // Device Headset Pose status
4164 // CATEGORY: OTHER
4165 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4166 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004167 ACTION_HEADSET_POSE_STATUS = 1026;
4168
4169 // Device Headset Usage session time
4170 // CATEGORY: OTHER
4171 // FIELD - The time the headset was used in a session
4172 // OS: O DR
4173 FIELD_SESSION_TIME_MS = 1027;
4174
4175 // Device Headset Idle time
4176 // CATEGORY: OTHER
4177 // FIELD - The time in between each session
4178 // OS: O DR
4179 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4180
4181 // Device Headset charge session time
4182 // CATEGORY: OTHER
4183 // FIELD - The time taken for each charge
4184 // OS: O DR
4185 FIELD_TIME_OF_CHARGE_MS = 1029;
4186
4187 // Device Headset time between charge
4188 // CATEGORY: OTHER
4189 // FIELD - The time in between each charge
4190 // OS: O DR
4191 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004192
Adrian Roos159ef7b2016-02-25 11:58:32 -08004193 // Add new aosp constants above this line.
4194 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004195 }
4196}