blob: 0c787dbfc31617d6b78618371d8396346890f175 [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;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wren5e334f62016-11-14 10:16:21 -050073 }
74
Chris Wren65f07fe2017-03-14 14:10:37 -040075 // Types of alerts, as bit field values
76 enum Alert {
77 // Vibrate the device.
78 ALERT_BUZZ = 1;
79
80 // Make sound through the speaker.
81 ALERT_BEEP = 2;
82
83 // Flash a notificaiton light.
84 ALERT_BLINK = 4;
85 }
86
87 // Reasons that a notification might be dismissed.
88 enum DismissReason {
89 // from android.service.notification.NotificationListenerService
90
91 // Notification was canceled by the status bar reporting a notification click
92 REASON_CLICK = 1;
93
94 // Notification was canceled by the status bar reporting a user dismissal.
95 REASON_CANCEL = 2;
96
97 // Notification was canceled by the status bar reporting a user dismiss all.
98 REASON_CANCEL_ALL = 3;
99
100 // Notification was canceled by the status bar reporting an inflation error.
101 REASON_ERROR = 4;
102
103 // Notification was canceled by the package manager modifying the package.
104 REASON_PACKAGE_CHANGED = 5;
105
106 // Notification was canceled by the owning user context being stopped.
107 REASON_USER_STOPPED = 6;
108
109 // Notification was canceled by the user banning the package.
110 REASON_PACKAGE_BANNED = 7;
111
112 // Notification was canceled by the app canceling this specific notification.
113 REASON_APP_CANCEL = 8;
114
115 //Notification was canceled by the app cancelling all its notifications.
116 REASON_APP_CANCEL_ALL = 9;
117
118 // Notification was canceled by a listener reporting a user dismissal.
119 REASON_LISTENER_CANCEL = 10;
120
121 //Notification was canceled by a listener reporting a user dismiss all.
122 REASON_LISTENER_CANCEL_ALL = 11;
123
124 // Notification was canceled because it was a member of a canceled group.
125 REASON_GROUP_SUMMARY_CANCELED = 12;
126
127 // Notification was canceled because it was an invisible member of a group.
128 REASON_GROUP_OPTIMIZATION = 13;
129
130 // Notification was canceled by the device administrator suspending the package.
131 REASON_PACKAGE_SUSPENDED = 14;
132
133 // Notification was canceled by the owning managed profile being turned off.
134 REASON_PROFILE_TURNED_OFF = 15;
135
136 // Autobundled summary notification was canceled because its group was unbundled.
137 REASON_UNAUTOBUNDLED = 16;
138
139 // Notification was canceled by the user banning the channel.
140 REASON_CHANNEL_BANNED = 17;
141
142 // Notification was snoozed.
143 REASON_SNOOZED = 18;
144
145 // Notification was canceled due to timeout.
146 REASON_TIMEOUT = 19;
147 }
148
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700149 // Subtypes of camera events for ACTION_CAMERA_EVENT
150 enum CameraEvent {
151 // A back-facing camera was used
152 CAMERA_BACK_USED = 0;
153
154 // A front-facing camera was used
155 CAMERA_FRONT_USED = 1;
156
157 // An external camera was used
158 CAMERA_EXTERNAL_USED = 2;
159 }
160
Chris Wren77781d32016-01-11 14:49:26 -0500161 // Known visual elements: views or controls.
162 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500163 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500164 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500165
166 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500167 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500168
169 // OPEN: Settings > Accessibility
170 // CATEGORY: SETTINGS
171 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500172 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500173
174 // OPEN: Settings > Accessibility > Captions
175 // CATEGORY: SETTINGS
176 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500177 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500178
179 // OPEN: Settings > Accessibility > [Service]
180 // CATEGORY: SETTINGS
181 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500182 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500183
184 // OPEN: Settings > Accessibility > Color correction
185 // CATEGORY: SETTINGS
186 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500187 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500188
189 // OPEN: Settings > Accessibility > Accessibility shortcut
190 // CATEGORY: SETTINGS
191 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500192 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500193
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700194 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
195 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
196 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500197 // CATEGORY: SETTINGS
198 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500199 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500200
201 // OPEN: Settings > Accounts
202 // CATEGORY: SETTINGS
203 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500204 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500205
206 // OPEN: Settings > Accounts > [Single Account Sync Settings]
207 // CATEGORY: SETTINGS
208 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500209 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500210
211 // OPEN: Settings > Accounts > Add an account
212 // CATEGORY: SETTINGS
213 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500214 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500215
216 // OPEN: Settings > Accounts > [List of accounts when more than one]
217 // CATEGORY: SETTINGS
218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500219 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500220
221 // OPEN: Settings > Cellular network settings > APNs
222 // CATEGORY: SETTINGS
223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500224 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500225
226 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
227 // CATEGORY: SETTINGS
228 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500229 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500230
231 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500232 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500235 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500236
237 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500238 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500239
240 // OPEN: Settings > Apps > Configure apps > App links > [App]
241 // CATEGORY: SETTINGS
242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500243 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500244
245 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500246 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500247
248 // OPEN: Settings > Internal storage > Apps storage > [App]
249 // CATEGORY: SETTINGS
250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500251 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500252
253 // OPEN: Settings > Apps > [App info]
254 // CATEGORY: SETTINGS
255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500256 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > Memory > App usage > [App Memory usage]
259 // CATEGORY: SETTINGS
260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500261 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500262
263 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500264 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Memory > App usage
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Bluetooth
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Choose Bluetooth device (ex: when sharing)
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500282 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Security > Choose screen lock
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OPEN: Settings > Security > Choose screen lock > Choose your password
290 // CATEGORY: SETTINGS
291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500292 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OPEN: Settings > Security > Choose screen lock > Confirm your password
300 // CATEGORY: SETTINGS
301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500302 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Security > Encrypt phone
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Security > Encrypt phone > Confirm
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Search results
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings (Root page)
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500330 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OPEN: Settings > Data usage
333 // CATEGORY: SETTINGS
334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500335 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings > Date & time
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Developer options
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OPEN: Settings > About phone
348 // CATEGORY: SETTINGS
349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500350 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OPEN: Settings > About phone > Status > IMEI information
353 // CATEGORY: SETTINGS
354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500355 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > Internal storage
358 // CATEGORY: SETTINGS
359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500360 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > About phone > Status > SIM status
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > About phone > Status
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500373 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OPEN: Settings > Display
376 // CATEGORY: SETTINGS
377 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500378 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500379
380 // OPEN: Settings > Display > Daydream
381 // CATEGORY: SETTINGS
382 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500383 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500384
385 // OPEN: Settings > Security > Screen lock > Secure start-up
386 // CATEGORY: SETTINGS
387 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500388 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500389
390 // OPEN: Settings > Security > Nexus Imprint
391 // CATEGORY: SETTINGS
392 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500393 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500394
395 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500396 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500397
398 // OPEN: Settings > Battery > History details
399 // CATEGORY: SETTINGS
400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500401 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500402
403 // OPEN: Settings > Battery > Battery saver
404 // CATEGORY: SETTINGS
405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500406 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500407
408 // OPEN: Settings > Battery > [App Use details]
409 // CATEGORY: SETTINGS
410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500411 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500412
413 // OPEN: Settings > Battery
414 // CATEGORY: SETTINGS
415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500416 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings > Home
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Security > SIM card lock settings
424 // CATEGORY: SETTINGS
425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500426 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: Settings > Language & input
429 // CATEGORY: SETTINGS
430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500431 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 // OPEN: Settings > Language & input > Physical keyboard
434 // CATEGORY: SETTINGS
435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500436 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings > Language & input > Spell checker
439 // CATEGORY: SETTINGS
440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500441 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500442
443 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500444 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Language & input > Personal dictionary
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 // OPEN: Settings > Language & input > Add word
452 // CATEGORY: SETTINGS
453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500454 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > Location
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OPEN: Settings > Location > Location mode
462 // CATEGORY: SETTINGS
463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500464 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OPEN: Settings > Apps
467 // CATEGORY: SETTINGS
468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500469 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Backup & reset > Factory data reset
472 // CATEGORY: SETTINGS
473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500474 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500475
476 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
477 // CATEGORY: SETTINGS
478 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500479 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500480
481 // OPEN: Settings > Data usage > Network restrictions
482 // CATEGORY: SETTINGS
483 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500484 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > More > Android Beam
487 // CATEGORY: SETTINGS
488 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500489 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500490
491 // OPEN: Settings > Tap & pay
492 // CATEGORY: SETTINGS
493 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500494 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500495
496 // OPEN: Settings > Sound & notification
497 // CATEGORY: SETTINGS
498 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500499 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500500
501 // OPEN: Settings > Sound & notification > App notifications > [App]
502 // CATEGORY: SETTINGS
503 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500504 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500505
506 // OPEN: Settings > Sound & notification > Other sounds
507 // CATEGORY: SETTINGS
508 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500509 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500510
511 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500512 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500513
514 // OPEN: Settings Widget > Notification log
515 // CATEGORY: SETTINGS
516 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500517 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500518
519 // OPEN: Settings > Sound & notification > Do not disturb
520 // CATEGORY: SETTINGS
521 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500522 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500523
524 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500525 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: Print job notification > Print job settings
528 // CATEGORY: SETTINGS
529 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500530 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500531
532 // OPEN: Settings > Printing > [Print Service]
533 // CATEGORY: SETTINGS
534 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500535 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: Settings > Printing
538 // CATEGORY: SETTINGS
539 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500540 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500541
542 // OPEN: Settings > Backup & reset
543 // CATEGORY: SETTINGS
544 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500545 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500548 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 // OPEN: Settings > Backup & reset > Network settings reset
551 // CATEGORY: SETTINGS
552 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500553 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
556 // CATEGORY: SETTINGS
557 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500558 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500559
560 // OPEN: Settings > Developer Options > Running Services
561 // CATEGORY: SETTINGS
562 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500563 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500564
565 // OPEN: Settings > Security > Screen pinning
566 // CATEGORY: SETTINGS
567 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500568 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500569
570 // OPEN: Settings > Security
571 // CATEGORY: SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: Settings > SIM cards
576 // CATEGORY: SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500581 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OPEN: Settings > More > Tethering & portable hotspot
584 // CATEGORY: SETTINGS
585 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500586 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Settings > Security > Trust agents
589 // CATEGORY: SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: Settings > Security > Trusted credentials
594 // CATEGORY: SETTINGS
595 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500596 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500597
598 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
599 // CATEGORY: SETTINGS
600 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500601 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500602
603 // OPEN: Settings > Language & input > Text-to-speech output
604 // CATEGORY: SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: Settings > Security > Apps with usage access
609 // CATEGORY: SETTINGS
610 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500611 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500612
613 // OPEN: Settings > Users
614 // CATEGORY: SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: Settings > Users > [Restricted profile app & content access]
619 // CATEGORY: SETTINGS
620 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500621 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500622
623 // OPEN: Settings > Users > [User settings]
624 // CATEGORY: SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500629 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: Settings > More > VPN
632 // CATEGORY: SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: Settings > Display > Choose wallpaper from
637 // CATEGORY: SETTINGS
638 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500639 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500640
641 // OPEN: Settings > Display > Cast
642 // CATEGORY: SETTINGS
643 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500644 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500645
646 // OPEN: Settings > Wi-Fi
647 // CATEGORY: SETTINGS
648 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500649 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500650
651 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
652 // CATEGORY: SETTINGS
653 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500654 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500655
656 // OPEN: Settings > More > Wi-Fi Calling
657 // CATEGORY: SETTINGS
658 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500659 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // OPEN: Settings > Wi-Fi > Saved networks
662 // CATEGORY: SETTINGS
663 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500664 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500665
666 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500667 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500668
669 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500670 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
673 // CATEGORY: SETTINGS
674 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500675 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500676
677 // OPEN: Settings > More
678 // CATEGORY: SETTINGS
679 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500680 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500681
682 // OPEN: Quick Settings Panel
683 // CATEGORY: QUICK_SETTINGS
684 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500685 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500686
687 // OPEN: QS Airplane mode tile shown
688 // ACTION: QS Airplane mode tile tapped
689 // SUBTYPE: 0 is off, 1 is on
690 // CATEGORY: QUICK_SETTINGS
691 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500692 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500693
694 // OPEN: QS Bluetooth tile shown
695 // ACTION: QS Bluetooth tile tapped
696 // SUBTYPE: 0 is off, 1 is on
697 // CATEGORY: QUICK_SETTINGS
698 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500699 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500700
701 // OPEN: QS Cast tile shown
702 // ACTION: QS Cast tile tapped
703 // CATEGORY: QUICK_SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // OPEN: QS Cellular tile shown
708 // ACTION: QS Cellular tile tapped
709 // CATEGORY: QUICK_SETTINGS
710 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500711 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500712
713 // OPEN: QS Color inversion tile shown
714 // ACTION: QS Color inversion tile tapped
715 // SUBTYPE: 0 is off, 1 is on
716 // CATEGORY: QUICK_SETTINGS
717 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500718 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500719
720 // OPEN: QS Cellular tile > Cellular detail panel
721 // CATEGORY: QUICK_SETTINGS
722 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500723 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500724
725 // OPEN: QS Do not disturb tile shown
726 // ACTION: QS Do not disturb tile tapped
727 // SUBTYPE: 0 is off, 1 is on
728 // CATEGORY: QUICK_SETTINGS
729 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500730 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500731
732 // OPEN: QS Flashlight tile shown
733 // ACTION: QS Flashlight 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_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500738
739 // OPEN: QS Hotspot tile shown
740 // ACTION: QS Hotspot 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_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500745
746 // OPEN: QS 3P tile shown
747 // ACTION: QS 3P tile tapped
748 // CATEGORY: QUICK_SETTINGS
749 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500750 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500751
752 // OPEN: QS Location tile shown
753 // ACTION: QS Location tile tapped
754 // SUBTYPE: 0 is off, 1 is on
755 // CATEGORY: QUICK_SETTINGS
756 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500757 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500758
759 // OPEN: QS Rotation tile shown
760 // ACTION: QS Rotation tile tapped
761 // SUBTYPE: 0 is off, 1 is on
762 // CATEGORY: QUICK_SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500767 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500768
769 // OPEN: QS User list panel
770 // CATEGORY: QUICK_SETTINGS
771 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500772 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500773
774 // OPEN: QS WiFi tile shown
775 // ACTION: QS WiFi tile tapped
776 // SUBTYPE: 0 is off, 1 is on
777 // CATEGORY: QUICK_SETTINGS
778 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500779 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500780
781 // OPEN: Notification Panel (including lockscreen)
782 // CATEGORY: NOTIFICATION
783 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500784 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500785
786 // OPEN: Notification in panel became visible.
787 // PACKAGE: App that posted the notification.
788 // ACTION: Notification is tapped.
789 // PACKAGE: App that posted the notification
790 // DETAIL: Notification is expanded by user.
791 // PACKAGE: App that posted the notification
792 // DISMISS: Notification is dismissed.
793 // PACKAGE: App that posted the notification
794 // SUBTYPE: Dismiss reason from NotificationManagerService.java
795 // CATEGORY: NOTIFICATION
796 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500797 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // ACTION: User tapped notification action
800 // PACKAGE: App that posted the notification
801 // SUBTYPE: Index of action on notification
802 // CATEGORY: NOTIFICATION
803 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500804 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500805
806 // OPEN: Settings > Apps > Configure apps > App permissions
807 // CATEGORY: SETTINGS
808 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500809 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500810
811 // OPEN: Settings > Location > Scanning
812 // CATEGORY: SETTINGS
813 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500814 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500815
816 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500817 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500818
819 // OPEN: Settings > Sound & notification > App notifications
820 // CATEGORY: SETTINGS
821 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500822 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500823
824 // ACTION: Settings > Wi-Fi > Overflow > Add Network
825 // CATEGORY: SETTINGS
826 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500827 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700830 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500831 // CATEGORY: SETTINGS
832 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500833 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // ACTION: Settings > Wi-Fi > Overflow > Refresh
836 // CATEGORY: SETTINGS
837 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500838 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500839
840 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
841 // CATEGORY: SETTINGS
842 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500843 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500844
845 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700846 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500847 // CATEGORY: SETTINGS
848 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500849 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500850
851 // ACTION: Settings > Wi-Fi > Toggle on
852 // CATEGORY: SETTINGS
853 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500854 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500857 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500858
859 // OPEN: Settings > Sound & notification > DND > Priority only allows
860 // CATEGORY: SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // OPEN: Settings > Sound & notification > DND > Automatic rules
865 // CATEGORY: SETTINGS
866 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500867 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500868
869 // OPEN: Settings > Apps > Configure apps > App links
870 // CATEGORY: SETTINGS
871 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500872 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // OPEN: Settings > Sound & notification > DND > [Time based rule]
875 // CATEGORY: SETTINGS
876 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500877 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500878
879 // OPEN: Settings > Sound & notification > DND > [External rule]
880 // CATEGORY: SETTINGS
881 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500882 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500883
884 // OPEN: Settings > Sound & notification > DND > [Event rule]
885 // CATEGORY: SETTINGS
886 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500887 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500888
889 // ACTION: App notification settings > Block Notifications
890 // CATEGORY: SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // ACTION: Notification shade > Dismiss all button
895 // CATEGORY: NOTIFICATION
896 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500897 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500898
899 // OPEN: QS Do Not Disturb detail panel
900 // CATEGORY: QUICK_SETTINGS
901 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500902 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500903
904 // OPEN: QS Bluetooth detail panel
905 // CATEGORY: QUICK_SETTINGS
906 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500907 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500908
909 // OPEN: QS Cast detail panel
910 // CATEGORY: QUICK_SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // OPEN: QS Wi-Fi detail panel
915 // CATEGORY: QUICK_SETTINGS
916 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500917 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500918
919 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
920 // SUBTYPE: 0 is off, 1 is on
921 // CATEGORY: QUICK_SETTINGS
922 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500923 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500924
925 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
926 // SUBTYPE: 0 is off, 1 is on
927 // CATEGORY: QUICK_SETTINGS
928 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500929 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500930
931 // ACTION: QS Cellular detail panel > Cellular toggle
932 // SUBTYPE: 0 is off, 1 is on
933 // CATEGORY: QUICK_SETTINGS
934 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500935 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500936
937 // ACTION: QS User list panel > Select different user
938 // CATEGORY: QUICK_SETTINGS
939 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500940 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500941
942 // ACTION: QS Cast detail panel > Select cast device
943 // CATEGORY: QUICK_SETTINGS
944 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500945 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500946
947 // ACTION: QS Cast detail panel > Disconnect cast device
948 // CATEGORY: QUICK_SETTINGS
949 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500950 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500951
952 // ACTION: Settings > Bluetooth > Toggle
953 // SUBTYPE: 0 is off, 1 is on
954 // CATEGORY: SETTINGS
955 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500956 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500957
958 // ACTION: Settings > Bluetooth > Overflow > Refresh
959 // CATEGORY: SETTINGS
960 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500961 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500962
963 // ACTION: Settings > Bluetooth > Overflow > Rename this device
964 // CATEGORY: SETTINGS
965 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500966 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500967
968 // ACTION: Settings > Bluetooth > Overflow > Show received files
969 // CATEGORY: SETTINGS
970 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500971 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500972
973 // ACTION: QS DND details panel > Increase / Decrease exit time
974 // SUBTYPE: true is increase, false is decrease
975 // CATEGORY: QUICK_SETTINGS
976 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500977 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500978
979 // ACTION: QS DND details panel > [Exit condition]
980 // CATEGORY: QUICK_SETTINGS
981 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500982 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500983
984 // ACTION: QS DND details panel > [DND mode]
985 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
986 // CATEGORY: QUICK_SETTINGS
987 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500988 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500989
990 // ACTION: QS DND detail panel > DND toggle
991 // SUBTYPE: 0 is off, 1 is on
992 // CATEGORY: QUICK_SETTINGS
993 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500994 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500995
996 // ACTION: DND Settings > Priority only allows > Reminder toggle
997 // SUBTYPE: 0 is off, 1 is on
998 // CATEGORY: SETTINGS
999 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001000 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001001
1002 // ACTION: DND Settings > Priority only allows > Event toggle
1003 // SUBTYPE: 0 is off, 1 is on
1004 // CATEGORY: SETTINGS
1005 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001006 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: DND Settings > Priority only allows > Messages
1009 // SUBTYPE: 0 is off, 1 is on
1010 // CATEGORY: SETTINGS
1011 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001012 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001013
1014 // ACTION: DND Settings > Priority only allows > Calls
1015 // SUBTYPE: 0 is off, 1 is on
1016 // CATEGORY: SETTINGS
1017 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001018 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001019
1020 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1021 // SUBTYPE: 0 is off, 1 is on
1022 // CATEGORY: SETTINGS
1023 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001024 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // ACTION: DND Settings > Automatic rules > Add rule
1027 // CATEGORY: SETTINGS
1028 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001029 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001030
1031 // ACTION: DND Settings > Automatic rules > Add rule > OK
1032 // CATEGORY: SETTINGS
1033 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001034 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001035
1036 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1037 // CATEGORY: SETTINGS
1038 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001039 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001040
1041 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1042 // CATEGORY: SETTINGS
1043 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001044 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001045
1046 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1047 // SUBTYPE: 0 is off, 1 is on
1048 // CATEGORY: SETTINGS
1049 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001050 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001051
1052 // ACTION: Settings > More > Airplane mode toggle
1053 // SUBTYPE: 0 is off, 1 is on
1054 // CATEGORY: SETTINGS
1055 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001056 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001057
1058 // ACTION: Settings > Data usage > Cellular data toggle
1059 // SUBTYPE: 0 is off, 1 is on
1060 // CATEGORY: SETTINGS
1061 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001062 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001063
1064 // OPEN: Settings > Sound & notification > Notification access
1065 // CATEGORY: SETTINGS
1066 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001067 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001068
1069 // OPEN: Settings > Sound & notification > Do Not Disturb access
1070 // CATEGORY: SETTINGS
1071 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001072 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001073
1074 // OPEN: Settings > Apps > Configure apps > Default Apps
1075 // CATEGORY: SETTINGS
1076 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001077 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001078
1079 // OPEN: Settings > Internal storage > Apps storage
1080 // CATEGORY: SETTINGS
1081 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001082 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001083
1084 // OPEN: Settings > Security > Usage access
1085 // CATEGORY: SETTINGS
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // OPEN: Settings > Battery > Battery optimization
1090 // CATEGORY: SETTINGS
1091 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001092 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001093
1094 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001095 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // ACTION: Lockscreen > Unlock gesture
1098 // CATEGORY: GLOBAL_SYSTEM_UI
1099 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001100 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001101
1102 // ACTION: Lockscreen > Pull shade open
1103 // CATEGORY: GLOBAL_SYSTEM_UI
1104 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Lockscreen > Tap on lock, shows hint
1108 // CATEGORY: GLOBAL_SYSTEM_UI
1109 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: Lockscreen > Camera
1113 // CATEGORY: GLOBAL_SYSTEM_UI
1114 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001115 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001116
1117 // ACTION: Lockscreen > Dialer
1118 // CATEGORY: GLOBAL_SYSTEM_UI
1119 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001120 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001121
1122 // ACTION: Lockscreen > Tap on lock, locks phone
1123 // CATEGORY: GLOBAL_SYSTEM_UI
1124 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001125 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001126
1127 // ACTION: Lockscreen > Tap on notification, false touch rejection
1128 // CATEGORY: GLOBAL_SYSTEM_UI
1129 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001130 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001131
1132 // ACTION: Lockscreen > Swipe down to open quick settings
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001135 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001136
1137 // ACTION: Swipe down to open quick settings when unlocked
1138 // CATEGORY: GLOBAL_SYSTEM_UI
1139 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: Notification shade > Tap to open quick settings
1143 // CATEGORY: GLOBAL_SYSTEM_UI
1144 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001145 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001146
1147 // OPEN: Lockscreen
1148 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1149 // CATEGORY: GLOBAL_SYSTEM_UI
1150 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001151 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001152
1153 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1154 // CATEGORY: GLOBAL_SYSTEM_UI
1155 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001156 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001157
1158 // OPEN: Screen turned on
1159 // SUBTYPE: 2 is user action
1160 // CATEGORY: GLOBAL_SYSTEM_UI
1161 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001162 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001163
1164 // OPEN: Notification caused sound, vibration, and/or LED blink
1165 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1166 // CATEGORY: NOTIFICATION
1167 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001168 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001169
1170 // ACTION: Lockscreen > Emergency Call button
1171 // CATEGORY: GLOBAL_SYSTEM_UI
1172 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001173 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001174
1175 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1176 // CATEGORY: SETTINGS
1177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001178 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // OPEN: Settings > Memory
1181 // CATEGORY: SETTINGS
1182 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001183 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001184
1185 // ACTION: Settings > Display > When device is rotated
1186 // CATEGORY: SETTINGS
1187 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001188 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001189
1190 // ACTION: Long press on notification to view controls
1191 // CATEGORY: NOTIFICATION
1192 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001193 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001194
1195 // ACTION: Notificatoin controls > Info button
1196 // CATEGORY: NOTIFICATION
1197 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001198 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // ACTION: Notification controls > Settings button
1201 // CATEGORY: NOTIFICATION
1202 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001203 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001204
1205 // OPEN: Volume Dialog (with hardware buttons)
1206 // CATEGORY: GLOBAL_SYSTEM_UI
1207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001208 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1211 // CATEGORY: GLOBAL_SYSTEM_UI
1212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001213 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001214
1215 // ACTION: Volume dialog > Adjust volume slider
1216 // SUBTYPE: volume level (0-7)
1217 // CATEGORY: GLOBAL_SYSTEM_UI
1218 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001219 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001220
1221 // ACTION: Volume dialog > Select non-active stream
1222 // SUBTYPE: stream (defined in AudioSystem.java)
1223 // CATEGORY: GLOBAL_SYSTEM_UI
1224 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001225 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001226
1227 // ACTION: Adjust volume with hardware key
1228 // SUBTYPE: volume level (0-7)
1229 // CATEGORY: GLOBAL_SYSTEM_UI
1230 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001231 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001232
1233 // ACTION: Volume dialog > Mute a stream by tapping icon
1234 // SUBTYPE: mute is 1, audible is 2
1235 // CATEGORY: GLOBAL_SYSTEM_UI
1236 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001237 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001238
1239 // ACTION: Volume dialog > Change ringer mode by tapping icon
1240 // SUBTYPE: 2 is audible, 3 is vibrate
1241 // CATEGORY: GLOBAL_SYSTEM_UI
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Chooser shown (share target, file open, etc.)
1246 // CATEGORY: GLOBAL_SYSTEM_UI
1247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001248 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // ACTION: Chooser > User taps an app target
1251 // SUBTYPE: Index of target
1252 // CATEGORY: GLOBAL_SYSTEM_UI
1253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001254 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001255
1256 // ACTION: Chooser > User taps a service target
1257 // SUBTYPE: Index of target
1258 // CATEGORY: GLOBAL_SYSTEM_UI
1259 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001260 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001261
1262 // ACTION: Chooser > User taps a standard target
1263 // SUBTYPE: Index of target
1264 // CATEGORY: GLOBAL_SYSTEM_UI
1265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001266 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001267
1268 // ACTION: QS Brightness Slider (with auto brightness disabled)
1269 // SUBTYPE: slider value
1270 // CATEGORY: QUICK_SETTINGS
1271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001272 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001273
1274 // ACTION: QS Brightness Slider (with auto brightness enabled)
1275 // SUBTYPE: slider value
1276 // CATEGORY: QUICK_SETTINGS
1277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001278 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // OPEN: Settings > Display > Brightness Slider
1281 // CATEGORY: SETTINGS
1282 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001283 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001284
Christine Franks47175c32017-03-14 10:21:25 -07001285 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001286 // CATEGORY: SETTINGS
1287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001288 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001289
1290 // OPEN: Display has entered dream mode
1291 // CATEGORY: GLOBAL_SYSTEM_UI
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // OPEN: Display has entered ambient notification mode
1296 // CATEGORY: GLOBAL_SYSTEM_UI
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // OPEN: Overview
1301 // CATEGORY: GLOBAL_SYSTEM_UI
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // OPEN: Settings > About phone > Legal information
1306 // CATEGORY: SETTINGS
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // OPEN: Settings > Search > Perform search
1311 // CATEGORY: SETTINGS
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // OPEN: Settings > System UI Tuner
1316 // CATEGORY: SETTINGS
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // OPEN: Settings > System UI Tuner > Quick Settings
1321 // CATEGORY: SETTINGS
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // OPEN: Settings > System UI Tuner > Demo mode
1326 // CATEGORY: SETTINGS
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1331 // PACKAGE: Tile
1332 // CATEGORY: SETTINGS
1333 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001334 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001335
1336 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1337 // PACKAGE: Tile
1338 // CATEGORY: SETTINGS
1339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001340 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001341
1342 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1343 // PACKAGE: Tile
1344 // CATEGORY: SETTINGS
1345 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001346 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001347
1348 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1349 // PACKAGE: Icon
1350 // CATEGORY: SETTINGS
1351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001352 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1355 // PACKAGE: Icon
1356 // CATEGORY: SETTINGS
1357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001358 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001359
1360 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1361 // SUBTYPE: false is disabled, true is enabled
1362 // CATEGORY: SETTINGS
1363 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001364 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1367 // SUBTYPE: false is disabled, true is enabled
1368 // CATEGORY: SETTINGS
1369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001370 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001371
1372 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1373 // SUBTYPE: 0 is disabled, 1 is enabled
1374 // CATEGORY: SETTINGS
1375 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001376 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // OPEN: Settings > Developer options > Inactive apps
1379 // CATEGORY: SETTINGS
1380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001381 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001382
1383 // ACTION: Long press home to bring up assistant
1384 // CATEGORY: GLOBAL_SYSTEM_UI
1385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001386 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001387
1388 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1389 // CATEGORY: SETTINGS
1390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001391 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001392
1393 // OPEN: Fingerprint Enroll > Find Sensor
1394 // CATEGORY: SETTINGS
1395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001396 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001397
1398 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001401 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // OPEN: Fingerprint Enroll introduction
1404 // CATEGORY: SETTINGS
1405 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001406 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001407
1408 // OPEN: Fingerprint Enroll onboarding
1409 // CATEGORY: SETTINGS
1410 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001411 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001412
1413 // OPEN: Fingerprint Enroll > Let's Start!
1414 // CATEGORY: SETTINGS
1415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001416 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // OPEN: Fingerprint Enroll SUW > Let's Start!
1419 // CATEGORY: SETTINGS
1420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001421 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: Fingerprint Enroll SUW > Find Sensor
1424 // CATEGORY: SETTINGS
1425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001426 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001427
1428 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1429 // CATEGORY: SETTINGS
1430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001431 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001432
1433 // OPEN: Fingerprint Enroll SUW introduction
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001436 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001437
1438 // OPEN: Fingerprint Enroll SUW onboarding
1439 // CATEGORY: SETTINGS
1440 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001441 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001442
1443 // ACTION: Add fingerprint > Enroll fingerprint
1444 // CATEGORY: SETTINGS
1445 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001446 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001447
1448 // ACTION: Authenticate using fingerprint
1449 // CATEGORY: SETTINGS
1450 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001451 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001456 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001457
1458 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1459 // CATEGORY: SETTINGS
1460 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001461 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001462
1463 // ACTION: Double tap camera shortcut
1464 // CATEGORY: GLOBAL_SYSTEM_UI
1465 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001466 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001467
1468 // ACTION: Double twist camera shortcut
1469 // CATEGORY: GLOBAL_SYSTEM_UI
1470 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001471 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001472
1473 // OPEN: QS Work Mode tile shown
1474 // ACTION: QS Work Mode tile tapped
1475 // SUBTYPE: 0 is off, 1 is on
1476 // CATEGORY: QUICK_SETTINGS
1477 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001478 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001479
1480 // OPEN: Settings > Developer Options > Background Check
1481 // CATEGORY: SETTINGS
1482 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001483 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001484
1485 // OPEN: QS Lock tile shown
1486 // ACTION: QS Lock tile tapped
1487 // SUBTYPE: 0 is off, 1 is on
1488 // CATEGORY: QUICK_SETTINGS
1489 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001490 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001491
1492 // OPEN: QS User Tile shown
1493 // CATEGORY: QUICK_SETTINGS
1494 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001495 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001496
1497 // OPEN: QS Battery tile shown
1498 // CATEGORY: QUICK_SETTINGS
1499 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001500 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001501
1502 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1503 // CATEGORY: SETTINGS
1504 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001505 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001506
1507 // ACTION: Visual interruptions > No screen interuptions toggle
1508 // SUBTYPE: 0 is off, 1 is on
1509 // CATEGORY: SETTINGS
1510 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001511 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001512
1513 // ACTION: Visual interruptions > No notification light toggle
1514 // SUBTYPE: 0 is off, 1 is on
1515 // CATEGORY: SETTINGS
1516 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001517 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001518
1519 // OPEN: Settings > Notifications > [App] > Topic Notifications
1520 // CATEGORY: SETTINGS
1521 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001522 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001523
1524 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1525 // PACKAGE: Selected SMS app
1526 // CATEGORY: SETTINGS
1527 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001528 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001529
1530 // OPEN: QS Color modification tile shown
1531 // ACTION: QS Color modification tile tapped
1532 // SUBTYPE: 0 is off, 1 is on
1533 // CATEGORY: QUICK_SETTINGS
1534 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001535 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001536
1537 // OPEN: QS Custom tile shown
1538 // ACTION: QS Work Mode tile tapped
1539 // CATEGORY: QUICK_SETTINGS
1540 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001541 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001542
1543 // ACTION: Visual interruptions > Never turn off the screen toggle
1544 // SUBTYPE: 0 is off, 1 is on
1545 // CATEGORY: SETTINGS
1546 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001547 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001548
Chris Wren7c516842016-03-01 16:44:32 -05001549 // ACTION: Overview > Long-press task, drag to enter split-screen
1550 // CATEGORY: GLOBAL_SYSTEM_UI
1551 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001552 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1553
Chris Wren7c516842016-03-01 16:44:32 -05001554 // ACTION: In App > Long-press Overview button to enter split-screen
1555 // CATEGORY: GLOBAL_SYSTEM_UI
1556 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001557 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1558
Chris Wren7c516842016-03-01 16:44:32 -05001559 // ACTION: In App > Swipe Overview button to enter split-screen
1560 // CATEGORY: GLOBAL_SYSTEM_UI
1561 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001562 ACTION_WINDOW_DOCK_SWIPE = 272;
1563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: Launch profile-specific app > Confirm credentials
1565 // CATEGORY: GLOBAL_SYSTEM_UI
1566 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001567 PROFILE_CHALLENGE = 273;
1568
Chris Wren7c516842016-03-01 16:44:32 -05001569 // OPEN: QS Battery detail panel
1570 // CATEGORY: GLOBAL_SYSTEM_UI
1571 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001572 QS_BATTERY_DETAIL = 274;
1573
Chris Wren7c516842016-03-01 16:44:32 -05001574 // OPEN: Overview > History
1575 // CATEGORY: GLOBAL_SYSTEM_UI
1576 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001577 OVERVIEW_HISTORY = 275;
1578
Chris Wren7c516842016-03-01 16:44:32 -05001579 // ACTION: Overview > Page by tapping Overview button
1580 // CATEGORY: GLOBAL_SYSTEM_UI
1581 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001582 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001583
Chris Wren7c516842016-03-01 16:44:32 -05001584 // ACTION: Overview > Select app
1585 // CATEGORY: GLOBAL_SYSTEM_UI
1586 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001587 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001588
Chris Wren7c516842016-03-01 16:44:32 -05001589 // ACTION: View emergency info
1590 // CATEGORY: GLOBAL_SYSTEM_UI
1591 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001592 ACTION_VIEW_EMERGENCY_INFO = 278;
1593
Chris Wren7c516842016-03-01 16:44:32 -05001594 // ACTION: Edit emergency info activity
1595 // CATEGORY: SETTINGS
1596 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001597 ACTION_EDIT_EMERGENCY_INFO = 279;
1598
Chris Wren7c516842016-03-01 16:44:32 -05001599 // ACTION: Edit emergency info field
1600 // CATEGORY: SETTINGS
1601 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001602 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1603
Chris Wren7c516842016-03-01 16:44:32 -05001604 // ACTION: Add emergency contact
1605 // CATEGORY: SETTINGS
1606 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001607 ACTION_ADD_EMERGENCY_CONTACT = 281;
1608
Chris Wren7c516842016-03-01 16:44:32 -05001609 // ACTION: Delete emergency contact
1610 // CATEGORY: SETTINGS
1611 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001612 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1613
Chris Wren7c516842016-03-01 16:44:32 -05001614 // ACTION: Call emergency contact
1615 // CATEGORY: SETTINGS
1616 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001617 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001618
Chris Wren7c516842016-03-01 16:44:32 -05001619 // OPEN: QS Data Saver tile shown
1620 // ACTION: QS Data Saver tile tapped
1621 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001622 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001623
Robin Lee8c1306e2016-02-01 11:37:02 +00001624 // OPEN: Settings > Security > User credentials
1625 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001626 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001627 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001628
Chris Wren7c516842016-03-01 16:44:32 -05001629 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1630 // CATEGORY: GLOBAL_SYSTEM_UI
1631 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001632 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001633
1634 // Logged when the user scrolls through overview manually
1635 OVERVIEW_SCROLL = 287;
1636
1637 // Logged when the overview times out automatically selecting an app
1638 OVERVIEW_SELECT_TIMEOUT = 288;
1639
1640 // Logged when a user dismisses a task in overview
1641 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001642
1643 // Logged when the user modifying the notification importance slider.
1644 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1645
1646 // Logged when the user saves a modification to notification importance. Negative numbers
1647 // indicate the user lowered the importance; positive means they increased it.
1648 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001649
Chris Wren7c516842016-03-01 16:44:32 -05001650 // ACTION: Long-press power button, then tap "Take bug report" option.
1651 // CATEGORY: GLOBAL_SYSTEM_UI
1652 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001653 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1654
Chris Wren7c516842016-03-01 16:44:32 -05001655 // ACTION: Long-press power button, then long-press "Take bug report" option.
1656 // CATEGORY: GLOBAL_SYSTEM_UI
1657 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001658 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1659
Chris Wren7c516842016-03-01 16:44:32 -05001660 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1661 // CATEGORY: SETTINGS
1662 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001663 // Interactive bug report initiated from Settings.
1664 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1665
Chris Wren7c516842016-03-01 16:44:32 -05001666 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1667 // CATEGORY: SETTINGS
1668 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001669 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001670 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1671
Chris Wren7c516842016-03-01 16:44:32 -05001672 // ACTION: User tapped notification action to cancel a bug report
1673 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001674 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001675 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1676
Chris Wren7c516842016-03-01 16:44:32 -05001677 // ACTION: User tapped notification action to launch bug report details screen
1678 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001679 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001680 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1681
Chris Wren7c516842016-03-01 16:44:32 -05001682 // ACTION: User tapped notification action to take adition screenshot on bug report
1683 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001684 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001685 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1686
Chris Wren7c516842016-03-01 16:44:32 -05001687 // ACTION: User tapped notification to share bug report
1688 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001689 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001690 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: User changed bug report name using the 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_NAME_CHANGED = 300;
1696
Chris Wren7c516842016-03-01 16:44:32 -05001697 // ACTION: User changed bug report title using the details screen
1698 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001699 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001700 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1701
Chris Wren7c516842016-03-01 16:44:32 -05001702 // ACTION: User changed bug report description using the details screen
1703 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001704 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001705 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1706
Chris Wren7c516842016-03-01 16:44:32 -05001707 // ACTION: User tapped Save in the bug report details screen.
1708 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001709 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001710 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1711
Chris Wren7c516842016-03-01 16:44:32 -05001712 // ACTION: User tapped Cancel in the bug report details screen.
1713 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001714 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001715 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001716
1717 // Tuner: Open/close calibrate dialog.
1718 TUNER_CALIBRATE_DISPLAY = 305;
1719
1720 // Tuner: Open/close color and appearance.
1721 TUNER_COLOR_AND_APPEARANCE = 306;
1722
1723 // Tuner: Apply calibrate dialog.
1724 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1725
1726 // Tuner: Open/close night mode.
1727 TUNER_NIGHT_MODE = 308;
1728
1729 // Tuner: Change night mode.
1730 ACTION_TUNER_NIGHT_MODE = 309;
1731
1732 // Tuner: Change night mode auto.
1733 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1734
1735 // Tuner: Change night mode adjust dark theme.
1736 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1737
1738 // Tuner: Change night mode adjust tint.
1739 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1740
1741 // Tuner: Change night mode adjust brightness.
1742 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1743
1744 // Tuner: Change do not disturb in volume panel.
1745 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1746
1747 // Tuner: Change do not disturb volume buttons shortcut.
1748 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001749
1750 // Logs the action the user takes when an app crashed.
1751 ACTION_APP_CRASH = 316;
1752
1753 // Logs the action the user takes when an app ANR'd.
1754 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001755
1756 // Logged when a user double taps the overview button to launch the previous task
1757 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001758
1759 // Logged when we execute an app transition. This indicates the total delay from startActivity
1760 // until the app transition is starting to animate, in milliseconds.
1761 APP_TRANSITION_DELAY_MS = 319;
1762
1763 // Logged when we execute an app transition. This indicates the reason why the transition
1764 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1765 APP_TRANSITION_REASON = 320;
1766
1767 // Logged when we execute an app transition and we drew a starting window. This indicates the
1768 // delay from startActivity until the starting window was drawn.
1769 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1770
1771 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1772 // the delay from startActivity until all windows have been drawn.
1773 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1774
1775 // Logged when we execute an app transition. This indicates the component name of the current
1776 // transition.
1777 APP_TRANSITION_COMPONENT_NAME = 323;
1778
1779 // Logged when we execute an app transition. This indicates whether the process was already
1780 // running.
1781 APP_TRANSITION_PROCESS_RUNNING = 324;
1782
1783 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1784 // the transition was executed.
1785 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001786
Chris Wren38f98812016-07-13 14:28:40 -04001787 // ACTION: app requested access to a scoped directory, user granted it.
1788 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1789 // CATEGORY: GLOBAL_SYSTEM_UI
1790 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001791 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1792
Chris Wren38f98812016-07-13 14:28:40 -04001793 // ACTION: app requested access to a scoped directory, user denied it.
1794 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1795 // CATEGORY: GLOBAL_SYSTEM_UI
1796 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001797 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1798
Chris Wren38f98812016-07-13 14:28:40 -04001799 // ACTION: app requested access to a scoped directory, user granted it.
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_GRANTED_BY_PACKAGE = 328;
1804
Chris Wren38f98812016-07-13 14:28:40 -04001805 // ACTION: app requested access to a scoped directory, user denied it.
1806 // PACKAGE: app that requested access.
1807 // CATEGORY: GLOBAL_SYSTEM_UI
1808 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001809 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1810
Chris Wren38f98812016-07-13 14:28:40 -04001811 // ACTION: app requested access to a directory user has already been granted
1812 // access before.
1813 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1814 // CATEGORY: GLOBAL_SYSTEM_UI
1815 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001816 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1817
Chris Wren38f98812016-07-13 14:28:40 -04001818 // ACTION: app requested access to a directory user has already been granted
1819 // access before.
1820 // PACKAGE: app that requested access.
1821 // CATEGORY: GLOBAL_SYSTEM_UI
1822 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001823 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001824
Chris Wren38f98812016-07-13 14:28:40 -04001825 // ACTION: Logged when the user slides a notification and reveals the gear
1826 // beneath it.
1827 // CATEGORY: NOTIFICATION
1828 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001829 ACTION_REVEAL_GEAR = 332;
1830
Chris Wren38f98812016-07-13 14:28:40 -04001831 // ACTION: Logged when the user taps on the gear beneath a notification.
1832 // CATEGORY: NOTIFICATION
1833 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001834 ACTION_TOUCH_GEAR = 333;
1835
Ruben Brunke24b9a62016-02-16 21:38:24 -08001836 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001837 // CATEGORY: SETTINGS
1838 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001839 VR_MANAGE_LISTENERS = 334;
1840
Jason Monk6f5354d2016-03-08 14:18:08 -05001841 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001842 // CATEGORY: SETTINGS
1843 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001844 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001845
Jason Monk6f5354d2016-03-08 14:18:08 -05001846 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001847 // CATEGORY: SETTINGS
1848 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001849 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001850
Jason Monk6f5354d2016-03-08 14:18:08 -05001851 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001852 // CATEGORY: SETTINGS
1853 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001854 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001855
Jason Monk6f5354d2016-03-08 14:18:08 -05001856 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001857 // CATEGORY: SETTINGS
1858 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001859 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001860
Jason Monk6f5354d2016-03-08 14:18:08 -05001861 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001862 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001863 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001864
Jason Monk6f5354d2016-03-08 14:18:08 -05001865 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001866 // CATEGORY: SETTINGS
1867 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001868 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001869
Jason Monk6f5354d2016-03-08 14:18:08 -05001870 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001871 // CATEGORY: SETTINGS
1872 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001873 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001874
Jason Monk6f5354d2016-03-08 14:18:08 -05001875 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001876 // CATEGORY: SETTINGS
1877 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001878 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001879
Jason Monk6f5354d2016-03-08 14:18:08 -05001880 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001881 // CATEGORY: SETTINGS
1882 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001884
Jason Monk6f5354d2016-03-08 14:18:08 -05001885 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001886 // CATEGORY: SETTINGS
1887 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001889
Jason Monk6f5354d2016-03-08 14:18:08 -05001890 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001891 // CATEGORY: SETTINGS
1892 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001894
Jason Monk6f5354d2016-03-08 14:18:08 -05001895 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001896 // CATEGORY: SETTINGS
1897 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001899
Jason Monk6f5354d2016-03-08 14:18:08 -05001900 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001901 // CATEGORY: SETTINGS
1902 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001904
Jason Monk6f5354d2016-03-08 14:18:08 -05001905 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001906 // CATEGORY: SETTINGS
1907 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001909
Jason Monk6f5354d2016-03-08 14:18:08 -05001910 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001911 // CATEGORY: SETTINGS
1912 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1914
1915 // Used for generic logging of Settings Preference Persistence, should not be used
1916 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001917 // CATEGORY: SETTINGS
1918 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001919 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001920
Jason Monk6f5354d2016-03-08 14:18:08 -05001921 // Settings -> Apps -> Gear -> Special access
1922 SPECIAL_ACCESS = 351;
1923
Muyuan Lia2129992016-03-03 18:30:39 -08001924 // Logs that the user docks window via shortcut key.
1925 WINDOW_DOCK_SHORTCUTS = 352;
1926
Felipe Lemeadccb992016-03-09 17:40:49 -08001927 // User already denied access to the request folder; action takes an integer
1928 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001929 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001930 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1931
1932 // User already denied access to the request folder; action pass package name
1933 // of calling package.
1934 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1935
1936 // User denied access to the request folder and checked 'Do not ask again';
1937 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001938 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001939 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1940
1941 // User denied access to the request folder and checked 'Do not ask again';
1942 // action pass package name of calling package.
1943 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1944
Winson3b6ba1a2016-03-22 15:37:54 -07001945 // Logged when a user dismisses all task in overview
1946 OVERVIEW_DISMISS_ALL = 357;
1947
Jason Monk96defbe2016-03-29 16:51:03 -04001948 // Quick Settings -> Edit
1949 QS_EDIT = 358;
1950
1951 // Quick Settings -> Edit -> Overflow -> Reset
1952 ACTION_QS_EDIT_RESET = 359;
1953
1954 // QS -> Edit - Drag a tile out of the active tiles.
1955 // The _SPEC contains either the spec of the tile or
1956 // the package of the 3rd party app in the PKG field.
1957 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1958 ACTION_QS_EDIT_REMOVE = 361;
1959
1960 // QS -> Edit - Drag a tile into the active tiles.
1961 // The _SPEC contains either the spec of the tile or
1962 // the package of the 3rd party app in the PKG field.
1963 ACTION_QS_EDIT_ADD_SPEC = 362;
1964 ACTION_QS_EDIT_ADD = 363;
1965
1966 // QS -> Edit - Drag a tile within the active tiles.
1967 // The _SPEC contains either the spec of the tile or
1968 // the package of the 3rd party app in the PKG field.
1969 ACTION_QS_EDIT_MOVE_SPEC = 364;
1970 ACTION_QS_EDIT_MOVE = 365;
1971
1972 // Long-press on a QS tile. Tile spec in package field.
1973 ACTION_QS_LONG_PRESS = 366;
1974
Anna Galuszadad131f2016-03-22 13:49:02 -07001975 // OPEN: SUW Welcome Screen -> Vision Settings
1976 // CATEGORY: SETTINGS
1977 // OS: N
1978 SUW_ACCESSIBILITY = 367;
1979
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001980 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1981 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1982 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001983 // ACTION: New magnification gesture configuration is chosen
1984 // SUBTYPE: 0 is off, 1 is on
1985 // CATEGORY: SETTINGS
1986 // OS: N
1987 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1988
1989 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1990 // ACTION: New font size is chosen
1991 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1992 // CATEGORY: SETTINGS
1993 // OS: N
1994 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1995
1996 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1997 // ACTION: New display size is chosen
1998 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1999 // CATEGORY: SETTINGS
2000 // OS: N
2001 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2002
2003 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2004 // ACTION: New screen reader configuration is chosen
2005 // SUBTYPE: 0 is off, 1 is on
2006 // CATEGORY: SETTINGS
2007 // OS: N
2008 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2009
Jason Monkc3620392016-03-30 15:46:03 -04002010 // ------- Begin N Settings conditionals -----
2011 // Conditionals are the green bars at the top of the settings dashboard
2012 // All conditionals will have visible/hide events onResume/onPause
2013 // but they will also be used as extra ints in the
2014 // dismiss/expand/collapse/click/button events
2015
2016 // swipe away conditional
2017 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2018
2019 // click on collapsed conditional or clicks expand button
2020 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2021
2022 // click collapse button on expanded conditional
2023 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2024
2025 // click main area of expanded conditional
2026 ACTION_SETTINGS_CONDITION_CLICK = 375;
2027
2028 // click a direct button on expanded conditional
2029 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2030
2031 // Airplane mode on
2032 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2033 // AKA Data saver on
2034 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2035 // Battery saver on
2036 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2037 // Cellular data off
2038 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2039 // Do not disturb on
2040 SETTINGS_CONDITION_DND = 381;
2041 // Hotspot on
2042 SETTINGS_CONDITION_HOTSPOT = 382;
2043 // Work profile off
2044 SETTINGS_CONDITION_WORK_MODE = 383;
2045
Jason Monk1b5d87b2016-03-30 16:03:15 -04002046 // ------- Begin N Settings suggestions -----
2047 // Since suggestions come from system apps, suggestions will
2048 // have generic constants and the package providing the suggestion
2049 // will be put in the package field. For suggestions in the Settings
2050 // package, the class name will be filled in instead (since settings
2051 // provides several suggetions).
2052
2053 // Settings shown/hidden on main settings dashboard.
2054 // These are actually visibility events, but visible/hidden doesn't
2055 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002056 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2057 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002058
2059 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002060 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002061
2062 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002063 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002064
Jason Monk397df682016-03-28 15:48:34 -04002065 // Settings > Apps > Gear > Special Access > Premium SMS access
2066 PREMIUM_SMS_ACCESS = 388;
2067
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002068 // Logged when the user resizes the docked stack. Arguments:
2069 // 0: Split 50:50
2070 // 1: Docked smaller
2071 // 2: Docked larger
2072 ACTION_WINDOW_DOCK_RESIZE = 389;
2073
2074 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2075 // 0: Docked gets maximized
2076 // 1: Fullscreen gets maximized
2077 ACTION_WINDOW_UNDOCK_MAX = 390;
2078
2079 // User tried to dock an unresizable app.
2080 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2081
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002082 // System UI Tuner > Other > Power notification controls
2083 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2084
2085 // System UI Tuner > Other > Power notification controls > Toggle on/off
2086 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2087
Chris Wren38f98812016-07-13 14:28:40 -04002088 // Action: user enable / disabled data saver using Settings
2089 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2090 // VALUE: 1 for enabled, 0 for disabled
2091 // CATEGORY: SETTINGS
2092 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002093 ACTION_DATA_SAVER_MODE = 394;
2094
Chris Wren38f98812016-07-13 14:28:40 -04002095 // User whitelisted an app for Data Saver mode; action pass package name of app
2096 // Action: user enable / disabled data saver using Settings
2097 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2098 // or
2099 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2100 // VALUE: package name of APP
2101 // CATEGORY: SETTINGS
2102 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002103 ACTION_DATA_SAVER_WHITELIST = 395;
2104
Chris Wren38f98812016-07-13 14:28:40 -04002105 // User blacklisted an app for Data Saver mode; action pass package name of app
2106 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2107 // VALUE: package name of APP
2108 // CATEGORY: SETTINGS
2109 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002110 ACTION_DATA_SAVER_BLACKLIST = 396;
2111
Adrian Roosceeb04c2016-04-25 14:00:54 -07002112 // User opened a remote input view associated with a notification. Passes package name of app
2113 // that posted the notification. Note that this can also happen transiently during notification
2114 // reinflation.
2115 ACTION_REMOTE_INPUT_OPEN = 397;
2116
2117 // User attempt to send data through a remote input view associated with a notification.
2118 // Passes package name of app that posted the notification. May succeed or fail.
2119 ACTION_REMOTE_INPUT_SEND = 398;
2120
2121 // Failed attempt to send data through a remote input view associated with a
2122 // notification. Passes package name of app that posted the notification.
2123 ACTION_REMOTE_INPUT_FAIL = 399;
2124
2125 // User closed a remote input view associated with a notification. Passes package name of app
2126 // that posted the notification. Note that this can also happen transiently during notification
2127 // reinflation.
2128 ACTION_REMOTE_INPUT_CLOSE = 400;
2129
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002130 // OPEN: Settings > Accounts > Work profile settings
2131 // CATEGORY: SETTINGS
2132 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2133
Jason Monk25118d12016-05-10 13:25:50 -04002134 // Settings -> Dev options -> Convert to file encryption
2135 CONVERT_FBE = 402;
2136
2137 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2138 CONVERT_FBE_CONFIRM = 403;
2139
2140 // Settings -> Dev options -> Running services
2141 RUNNING_SERVICES = 404;
2142
Jason Monka1f697f2016-05-06 15:09:44 -04002143 // The dialog shown by 3P intent to change current webview implementation.
2144 WEBVIEW_IMPLEMENTATION = 405;
2145
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002146 // Settings launched from expanded quick settings.
2147 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2148
Chris Wren698b1702016-05-23 11:16:32 -04002149 // Notification expansion state toggled by the expand affordance.
2150 ACTION_NOTIFICATION_EXPANDER = 407;
2151
2152 // Notification group expansion state toggled by the expand affordance.
2153 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2154
Chris Wren7ee84182016-05-27 13:34:02 -04002155
Chris Wren6abeeb92016-05-26 14:44:38 -04002156 // Notification expansion state toggled by the expand gesture.
2157 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2158
2159 // Notification group expansion state toggled by the expand gesture.
2160 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2161
Bhavik Singh3451da42016-06-01 18:25:59 -07002162 // User performs gesture that activates the ambient display
2163 // 1: Gesture performed is Nudge
2164 // 2: Gesture performed is Pickup
2165 // 4: Gesture performed is Double Tap
2166 ACTION_AMBIENT_GESTURE = 411;
2167
Jason Monk9fa5f822016-05-11 10:26:31 -04002168 // ---- End N Constants, all N constants go above this line ----
2169
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002170 // ------- Begin N App Disambig Shade -----
2171 // Application disambig shade opened or closed with a featured app.
2172 // These are actually visibility events, but visible/hidden doesn't
2173 // take a package, so these are being logged as actions.
2174 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002175 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2176 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002177
2178 // Application disambig shade opened or closed without a featured app.
2179 // These are actually visibility events, but visible/hidden doesn't
2180 // take a package, so these are being logged as actions.
2181 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002182 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2183 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002184
2185 // User opens in an app by pressing “Always” in the application disambig shade.
2186 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002187 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002188
2189 // User opens in an app by pressing “Just Once” in the application disambig shade.
2190 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002191 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002192
2193 // User opens in an app by tapping on its name in the application disambig shade.
2194 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002195 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002196
Daniel Nishi010aa492016-05-11 09:42:24 -07002197 // OPEN: Settings > Internal storage > Storage manager
2198 // CATEGORY: SETTINGS
2199 STORAGE_MANAGER_SETTINGS = 458;
2200
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002201 // OPEN: Settings -> Gestures
2202 // CATEGORY: SETTINGS
2203 SETTINGS_GESTURES = 459;
2204
Daniel Nishi597e67f2016-05-18 13:56:13 -07002205 // ------ Begin Deletion Helper ------
2206 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2207 // SUBTYPE: false is off, true is on
2208 // CATEGORY: SETTINGS
2209 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002210
Daniel Nishi597e67f2016-05-18 13:56:13 -07002211 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2212 // SUBTYPE: false is off, true is on
2213 // CATEGORY: SETTINGS
2214 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2215
2216 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2217 // CATEGORY: SETTINGS
2218 // PACKAGE: Unchecked app
2219 ACTION_DELETION_SELECTION_APP_ON = 462;
2220
2221 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2222 // CATEGORY: SETTINGS
2223 // PACKAGE: Checked app
2224 ACTION_DELETION_SELECTION_APP_OFF = 463;
2225
2226 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2227 // SUBTYPE: false is expanded, true is collapsed
2228 // CATEGORY: SETTINGS
2229 ACTION_DELETION_APPS_COLLAPSED = 464;
2230
2231 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2232 // SUBTYPE: false is off, true is on
2233 // CATEGORY: SETTINGS
2234 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2235
2236 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2237 // SUBTYPE: false is expanded, true is collapsed
2238 // CATEGORY: SETTINGS
2239 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2240
2241 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2242 // CATEGORY: SETTINGS
2243 ACTION_DELETION_HELPER_CLEAR = 467;
2244
2245 // ACTION: Settings > Storage > Free Up Space > Cancel
2246 // CATEGORY: SETTINGS
2247 ACTION_DELETION_HELPER_CANCEL = 468;
2248
2249 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2250 // CATEGORY: SETTINGS
2251 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2252
2253 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2254 // CATEGORY: SETTINGS
2255 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2256
2257 // Deletion helper encountered an error during package deletion.
2258 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2259
2260 // Deletion helper encountered an error during downloads folder deletion.
2261 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2262
2263 // Deletion helper encountered an error during photo and video deletion.
2264 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2265
Fan Zhang5e956e82016-05-06 10:51:47 -07002266 // OPEN: Settings (root page if there are multiple tabs)
2267 // CATEGORY: SETTINGS
2268 DASHBOARD_CONTAINER = 474;
2269
2270 // OPEN: Settings -> SUPPORT TAB
2271 // CATEGORY: SETTINGS
2272 SUPPORT_FRAGMENT = 475;
2273
2274 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002275 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002276 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002277
2278 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002279 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002280 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2281
Fan Zhanga1985502016-06-16 16:48:38 -07002282 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002283 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002284 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2285
2286 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002287 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002288 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2289
2290 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002291 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002292 ACTION_SUPPORT_SIGN_IN = 480;
2293
2294 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002295 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002296 ACTION_SUPPORT_PHONE = 481;
2297
2298 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002299 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002300 ACTION_SUPPORT_CHAT = 482;
2301
2302 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002303 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002304 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2305
2306 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002307 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002308 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2309
Fan Zhang80807212016-06-30 12:26:55 -07002310 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002311 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002312 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2313
2314 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002315 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002316 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2317
2318 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002319 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002320 ACTION_SUPPORT_DIAL_TOLLED = 487;
2321
Justin Klaassen19494272016-07-18 21:38:24 -07002322 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002323 // CATEGORY: SETTINGS
2324 NIGHT_DISPLAY_SETTINGS = 488;
2325
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002326 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002327 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002328 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2329
Jason Monk484fd362016-07-13 15:24:32 -04002330 // Settings launched from collapsed quick settings.
2331 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2332
Justin Klaassen19494272016-07-18 21:38:24 -07002333 // OPEN: QS Night Light tile shown
2334 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002335 // SUBTYPE: 0 is off, 1 is on
2336 // CATEGORY: QUICK_SETTINGS
2337 QS_NIGHT_DISPLAY = 491;
2338
Justin Klaassen19494272016-07-18 21:38:24 -07002339 // Night Light on
2340 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2341
Doris Ling3c00afb2016-07-19 17:04:21 -07002342 // System navigation key up.
2343 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2344
2345 // System navigation key down.
2346 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2347
Doris Ling6dd3e462016-08-04 13:17:27 -07002348 // OPEN: Settings > Display -> Ambient Display
2349 // CATEGORY: SETTINGS
2350 ACTION_AMBIENT_DISPLAY = 495;
2351
Adrian Roos159ef7b2016-02-25 11:58:32 -08002352 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2353
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002354 // ACTION: The lockscreen gets shown because the SIM card was removed
2355 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2356 // CATEGORY: GLOBAL_SYSTEM_UI
2357 // OS: N-MR2
2358 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2359
2360 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2361
Clara Bayarric17a5982016-04-15 12:26:47 +01002362 // ------- Begin N Keyboard Shortcuts Helper -----
2363 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002364 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002365
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002366 // OPEN: Print Preview screen
2367 // Package: Package of app where print job is from
2368 PRINT_PREVIEW = 501;
2369
2370 // OPEN: User expands full print job options shade in print preview.
2371 PRINT_JOB_OPTIONS = 502;
2372
2373 // OPEN: “All Printers” screen for selecting printer
2374 // Subtype: # of printers listed
2375 PRINT_ALL_PRINTERS = 503;
2376
2377 // OPEN: “Add Printers” screen for adding printers
2378 // Subtype: # of enabled print service listed
2379 PRINT_ADD_PRINTERS = 504;
2380
2381 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2382 // Package: Package of print service.
2383 ACTION_PRINT = 505;
2384
2385 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2386 // Count all ACTION_PRINTER_SELECT_ALL actions.
2387 // Package: Package of print service tied to printer
2388 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2389
2390 // ACTION: User selects a printer from the “All printers” screen.
2391 // Package: Package of print service tied to printer
2392 ACTION_PRINTER_SELECT_ALL = 507;
2393
2394 // ACTION: User changes an option for the print job from print preview.
2395 // Subtype: 1: Copies
2396 // 2: Color mode
2397 // 3: Duplex mode
2398 // 4: Media (==Paper) size
2399 // 5: Orientation
2400 // 6: Page range
2401 // Package: Package of print service tied to printer
2402 ACTION_PRINT_JOB_OPTIONS = 508;
2403
2404 // ACTION: User searches for printer from All Printers
2405 ACTION_PRINTER_SEARCH = 509;
2406
2407 // ACTION: User selects “Add print service” button from All Printers
2408 ACTION_PRINT_SERVICE_ADD = 510;
2409
2410 // ACTION: User Enables/Disables Print Service via any means.
2411 // Subtype: 0: Enabled
2412 // 1: Disabled
2413 ACTION_PRINT_SERVICE_TOGGLE = 511;
2414
2415 // ACTION: User installs print recommended print service
2416 // Package: Package of print service
2417 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2418
Doris Ling88a6b162016-08-08 16:17:43 -07002419 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2420 // SUBTYPE: sub settings classname
2421 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2422
Fan Zhang92c60382016-08-08 14:03:53 -07002423 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2424 USER_DICTIONARY_SETTINGS = 514;
2425
2426 // OPEN: Settings > Date & time > Select time zone
2427 ZONE_PICKER = 515;
2428
2429 // OPEN: Settings > Security > Device administrators
2430 DEVICE_ADMIN_SETTINGS = 516;
2431
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002432 // ACTION: Managed provisioning was launched to set this package as DPC app.
2433 // PACKAGE: DPC's package name.
2434 PROVISIONING_DPC_PACKAGE_NAME = 517;
2435
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002436 // ACTION: Managed provisioning triggered DPC installation.
2437 // PACKAGE: Package name of package which installed DPC.
2438 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2439
2440 // ACTION: Logged when provisioning activity finishes.
2441 // TIME: Indicates time taken by provisioning activity to finish in MS.
2442 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2443
2444 // ACTION: Logged when preprovisioning activity finishes.
2445 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2446 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2447
2448 // ACTION: Logged when encrypt device activity finishes.
2449 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2450 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2451
2452 // ACTION: Logged when web activity finishes.
2453 // TIME: Indicates total time taken by web activity to finish in MS.
2454 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2455
2456 // ACTION: Logged when trampoline activity finishes.
2457 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2458 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2459
2460 // ACTION: Logged when encryption activity finishes.
2461 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2462 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2463
2464 // ACTION: Logged when finalization activity finishes.
2465 // TIME: Indicates time taken by finalization activity to finish in MS.
2466 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002467
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002468 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002469 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002470
Fan Zhang95094182016-08-24 18:14:16 -07002471 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002472 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002473
2474 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002475 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002476
2477 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002478 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002479
2480 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002481 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002482
2483 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002484 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002485
Fan Zhangc1352ae2016-09-16 12:46:11 -07002486 // OPEN: Settings > Security > Use one lock dialog
2487 DIALOG_UNIFICATION_CONFIRMATION = 532;
2488
2489 // OPEN: Settings > Security > User Credential
2490 DIALOG_USER_CREDENTIAL = 533;
2491
2492 // OPEN: Settings > Accounts > Remove account
2493 DIALOG_REMOVE_USER = 534;
2494
2495 // OPEN: Settings > Accounts > Confirm auto sync dialog
2496 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2497
2498 // OPEN: Settings > Apps > Dialog for running service details
2499 DIALOG_RUNNIGN_SERVICE = 536;
2500
2501 // OPEN: Settings > Dialog for hiding home settings
2502 DIALOG_NO_HOME = 537;
2503
2504 // OPEN: Settings > Bluetooth > Rename this device
2505 DIALOG_BLUETOOTH_RENAME = 538;
2506
2507 // OPEN: Settings > Bluetooth > Paired device profile
2508 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2509
2510 // OPEN: Settings > Battery optimization > details for app
2511 DIALOG_HIGH_POWER_DETAILS = 540;
2512
2513 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2514 DIALOG_KEYBOARD_LAYOUT = 541;
2515
2516 // OPEN: Settings > Wifi > WPS Setup dialog
2517 DIALOG_WPS_SETUP = 542;
2518
2519 // OPEN: Settings > WIFI Scan permission dialog
2520 DIALOG_WIFI_SCAN_MODE = 543;
2521
2522 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2523 DIALOG_WIFI_SKIP = 544;
2524
2525 // OPEN: Settings > Wireless > VPN > Config dialog
2526 DIALOG_LEGACY_VPN_CONFIG = 545;
2527
2528 // OPEN: Settings > Wireless > VPN > Config dialog for app
2529 DIALOG_VPN_APP_CONFIG = 546;
2530
2531 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2532 DIALOG_VPN_CANNOT_CONNECT = 547;
2533
2534 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2535 DIALOG_VPN_REPLACE_EXISTING = 548;
2536
2537 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2538 DIALOG_BILLING_CYCLE = 549;
2539
2540 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2541 DIALOG_BILLING_BYTE_LIMIT = 550;
2542
2543 // OPEN: Settings > Billing cycle > turn on data limit dialog
2544 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2545
2546 // OPEN: Settings > Service > Turn off notification access dialog
2547 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2548
2549 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2550 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2551
2552 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2553 DIALOG_ZEN_ACCESS_GRANT = 554;
2554
2555 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2556 DIALOG_ZEN_ACCESS_REVOKE = 555;
2557
2558 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2559 DIALOG_ZEN_TIMEPICKER = 556;
2560
2561 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2562 DIALOG_SERVICE_ACCESS_WARNING = 557;
2563
2564 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2565 DIALOG_APP_INFO_ACTION = 558;
2566
2567 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2568 DIALOG_VOLUME_FORGET = 559;
2569
2570 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2571 DIALOG_VOLUME_SLOW_WARNING = 560;
2572
2573 // OPEN: Settings > Storage > Dialog for initializing a volume
2574 DIALOG_VOLUME_INIT = 561;
2575
2576 // OPEN: Settings > Storage > Dialog for unmounting a volume
2577 DIALOG_VOLUME_UNMOUNT = 562;
2578
2579 // OPEN: Settings > Storage > Dialog for renaming a volume
2580 DIALOG_VOLUME_RENAME = 563;
2581
2582 // OPEN: Settings > Storage > Dialog for clear cache
2583 DIALOG_STORAGE_CLEAR_CACHE = 564;
2584
2585 // OPEN: Settings > Storage > Dialog for system info
2586 DIALOG_STORAGE_SYSTEM_INFO = 565;
2587
2588 // OPEN: Settings > Storage > Dialog for other info
2589 DIALOG_STORAGE_OTHER_INFO = 566;
2590
2591 // OPEN: Settings > Storage > Dialog for user info
2592 DIALOG_STORAGE_USER_INFO = 567;
2593
2594 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2595 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2596
2597 // OPEN: Settings > Add fingerprint > Error dialog
2598 DIALOG_FINGERPINT_ERROR = 569;
2599
2600 // OPEN: Settings > Fingerprint > Rename or delete dialog
2601 DIALOG_FINGERPINT_EDIT = 570;
2602
2603 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2604 DIALOG_FINGERPINT_DELETE_LAST = 571;
2605
2606 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2607 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2608
2609 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2610 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2611
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002612 // OPEN: Settings > Proxy Selector error dialog
2613 DIALOG_PROXY_SELECTOR_ERROR = 574;
2614
2615 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2616 DIALOG_WIFI_P2P_DISCONNECT = 575;
2617
2618 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2619 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2620
2621 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2622 DIALOG_WIFI_P2P_RENAME = 577;
2623
2624 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2625 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2626
2627 // OPEN: Settings > APN > Restore default dialog
2628 DIALOG_APN_RESTORE_DEFAULT = 579;
2629
2630 // OPEN: Settings > Dream > When to dream dialog
2631 DIALOG_DREAM_START_DELAY = 580;
2632
2633 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2634 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2635
2636 // OPEN: Settings > Tether > AP setting dialog
2637 DIALOG_AP_SETTINGS = 582;
2638
2639 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2640 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2641
2642 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2643 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2644
2645 // OPEN: Settings > Account > Remove account dialog
2646 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2647
2648 // OPEN: Settings > Account > Remove account failed dialog
2649 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2650
2651 // OPEN: Settings > Account > Cannot do onetime sync dialog
2652 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2653
2654 // OPEN: Settings > Display > Night light > Set start time dialog
2655 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2656
2657 // OPEN: Settings > Display > Night light > Set end time dialog
2658 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2659
2660 // OPEN: Settings > User > Edit info dialog
2661 DIALOG_USER_EDIT = 590;
2662
2663 // OPEN: Settings > User > Confirm remove dialog
2664 DIALOG_USER_REMOVE = 591;
2665
2666 // OPEN: Settings > User > Enable calling dialog
2667 DIALOG_USER_ENABLE_CALLING = 592;
2668
2669 // OPEN: Settings > User > Enable calling and sms dialog
2670 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2671
2672 // OPEN: Settings > User > Cannot manage device message dialog
2673 DIALOG_USER_CANNOT_MANAGE = 594;
2674
2675 // OPEN: Settings > User > Add user dialog
2676 DIALOG_USER_ADD = 595;
2677
2678 // OPEN: Settings > User > Setup user dialog
2679 DIALOG_USER_SETUP = 596;
2680
2681 // OPEN: Settings > User > Setup profile dialog
2682 DIALOG_USER_SETUP_PROFILE = 597;
2683
2684 // OPEN: Settings > User > Choose user type dialog
2685 DIALOG_USER_CHOOSE_TYPE = 598;
2686
2687 // OPEN: Settings > User > Need lockscreen dialog
2688 DIALOG_USER_NEED_LOCKSCREEN = 599;
2689
2690 // OPEN: Settings > User > Confirm exit guest mode dialog
2691 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2692
2693 // OPEN: Settings > User > Edit user profile dialog
2694 DIALOG_USER_EDIT_PROFILE = 601;
2695
2696 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2697 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2698
2699 // OPEN: Settings > Wifi > Edit AP dialog
2700 DIALOG_WIFI_AP_EDIT = 603;
2701
2702 // OPEN: Settings > Wifi > PBC Config dialog
2703 DIALOG_WIFI_PBC = 604;
2704
2705 // OPEN: Settings > Wifi > Display pin dialog
2706 DIALOG_WIFI_PIN = 605;
2707
2708 // OPEN: Settings > Wifi > Write config to NFC dialog
2709 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002710 // OPEN: Settings > Date > Date picker dialog
2711 DIALOG_DATE_PICKER = 607;
2712
2713 // OPEN: Settings > Date > Time picker dialog
2714 DIALOG_TIME_PICKER = 608;
2715
2716 // OPEN: Settings > Wireless > Manage wireless plan dialog
2717 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002718
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002719 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002720 PROVISIONING_NETWORK_TYPE = 610;
2721
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002722 // ACTION: Logs action which triggered provisioning.
2723 PROVISIONING_ACTION = 611;
2724
Mahaver Chopraab282072016-10-06 19:19:23 +01002725 // ACTION: Logs extra passed by the dpc while provisioning.
2726 PROVISIONING_EXTRA = 612;
2727
Salvador Martinez64867c12016-10-14 15:25:09 -07002728 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2729 BLUETOOTH_DIALOG_FRAGMENT = 613;
2730
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002731 // ACTION: Logs provisioning started by zero touch.
2732 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2733
2734 // ACTION: Logs provisioning started by NFC bump.
2735 PROVISIONING_ENTRY_POINT_NFC = 615;
2736
2737 // ACTION: Logs provisioning started using QR code.
2738 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2739
2740 // ACTION: Logs provisioning started using adb.
2741 PROVISIONING_ENTRY_POINT_ADB = 617;
2742
2743 // ACTION: Logs provisioning started by trusted source.
2744 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2745
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002746 // ACTION: Logged when copy account task finishes.
2747 // TIME: Indicates time taken by copy account task to finish in MS.
2748 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2749
2750 // ACTION: Logged when create profile task finishes.
2751 // TIME: Indicates time taken by create profile task to finish in MS.
2752 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2753
2754 // ACTION: Logged when start profile task finishes.
2755 // TIME: Indicates time taken by start profile task to finish in MS.
2756 PROVISIONING_START_PROFILE_TASK_MS = 621;
2757
2758 // ACTION: Logged when download package task finishes.
2759 // TIME: Indicates time taken by download package task to finish in MS.
2760 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2761
2762 // ACTION: Logged when install package task finishes.
2763 // TIME: Indicates time taken by install package task to finish in MS.
2764 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2765
2766 // ACTION: User cancelled provisioning.
2767 PROVISIONING_CANCELLED = 624;
2768
2769 // ACTION: Logged when provisioning throws an error.
2770 PROVISIONING_ERROR = 625;
2771
2772 // ACTION: Logs the status of copying user account during provisioning.
2773 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2774
2775 // ACTION: Logs the end to end time taken by all provisioning tasks.
2776 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2777
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002778 // OPEN: Settings > Privacy
2779 // CATEGORY: SETTINGS
2780 // OS: O
2781 ENTERPRISE_PRIVACY_SETTINGS = 628;
2782
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002783 // ACTION: Longpress on a TextView.
2784 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2785 // CATEGORY: TEXT_CONTROLS
2786 // OS: O
2787 TEXT_LONGPRESS = 629;
2788
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002789 // ACTION: An app requested an unknown permission
2790 // PACKAGE: The package name of the app requesting the permission
2791 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2792
2793 // ACTION: An app was granted an unknown permission
2794 // PACKAGE: The package name of the app that was granted the permission
2795 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2796
2797 // ACTION: An app requested an unknown permission and the request was denied
2798 // PACKAGE: The package name of the app requesting the permission
2799 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2800
2801 // ACTION: An unknown permission was revoked for an app
2802 // PACKAGE: The package name of the app the permission was revoked for
2803 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2804
2805 // ACTION: An app requested the permission READ_CALENDAR
2806 // PACKAGE: The package name of the app requesting the permission
2807 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2808
2809 // ACTION: An app was granted the permission READ_CALENDAR
2810 // PACKAGE: The package name of the app that was granted the permission
2811 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2812
2813 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2814 // PACKAGE: The package name of the app requesting the permission
2815 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2816
2817 // ACTION: The permission READ_CALENDAR was revoked for an app
2818 // PACKAGE: The package name of the app the permission was revoked for
2819 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2820
2821 // ACTION: An app requested the permission WRITE_CALENDAR
2822 // PACKAGE: The package name of the app requesting the permission
2823 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2824
2825 // ACTION: An app was granted the permission WRITE_CALENDAR
2826 // PACKAGE: The package name of the app that was granted the permission
2827 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2828
2829 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2830 // PACKAGE: The package name of the app requesting the permission
2831 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2832
2833 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2834 // PACKAGE: The package name of the app the permission was revoked for
2835 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2836
2837 // ACTION: An app requested the permission CAMERA
2838 // PACKAGE: The package name of the app requesting the permission
2839 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2840
2841 // ACTION: An app was granted the permission CAMERA
2842 // PACKAGE: The package name of the app that was granted the permission
2843 ACTION_PERMISSION_GRANT_CAMERA = 643;
2844
2845 // ACTION: An app requested the permission CAMERA and the request was denied
2846 // PACKAGE: The package name of the app requesting the permission
2847 ACTION_PERMISSION_DENIED_CAMERA = 644;
2848
2849 // ACTION: The permission CAMERA was revoked for an app
2850 // PACKAGE: The package name of the app the permission was revoked for
2851 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2852
2853 // ACTION: An app requested the permission READ_CONTACTS
2854 // PACKAGE: The package name of the app requesting the permission
2855 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2856
2857 // ACTION: An app was granted the permission READ_CONTACTS
2858 // PACKAGE: The package name of the app that was granted the permission
2859 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2860
2861 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2862 // PACKAGE: The package name of the app requesting the permission
2863 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2864
2865 // ACTION: The permission READ_CONTACTS was revoked for an app
2866 // PACKAGE: The package name of the app the permission was revoked for
2867 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2868
2869 // ACTION: An app requested the permission WRITE_CONTACTS
2870 // PACKAGE: The package name of the app requesting the permission
2871 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2872
2873 // ACTION: An app was granted the permission WRITE_CONTACTS
2874 // PACKAGE: The package name of the app that was granted the permission
2875 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2876
2877 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2878 // PACKAGE: The package name of the app requesting the permission
2879 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2880
2881 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2882 // PACKAGE: The package name of the app the permission was revoked for
2883 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2884
2885 // ACTION: An app requested the permission GET_ACCOUNTS
2886 // PACKAGE: The package name of the app requesting the permission
2887 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2888
2889 // ACTION: An app was granted the permission GET_ACCOUNTS
2890 // PACKAGE: The package name of the app that was granted the permission
2891 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2892
2893 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2894 // PACKAGE: The package name of the app requesting the permission
2895 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2896
2897 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2898 // PACKAGE: The package name of the app the permission was revoked for
2899 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2900
2901 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2902 // PACKAGE: The package name of the app requesting the permission
2903 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2904
2905 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2906 // PACKAGE: The package name of the app that was granted the permission
2907 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2908
2909 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2910 // PACKAGE: The package name of the app requesting the permission
2911 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2912
2913 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2914 // PACKAGE: The package name of the app the permission was revoked for
2915 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2916
2917 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2918 // PACKAGE: The package name of the app requesting the permission
2919 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2920
2921 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2922 // PACKAGE: The package name of the app that was granted the permission
2923 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2924
2925 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2926 // PACKAGE: The package name of the app requesting the permission
2927 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2928
2929 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2930 // PACKAGE: The package name of the app the permission was revoked for
2931 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2932
2933 // ACTION: An app requested the permission RECORD_AUDIO
2934 // PACKAGE: The package name of the app requesting the permission
2935 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2936
2937 // ACTION: An app was granted the permission RECORD_AUDIO
2938 // PACKAGE: The package name of the app that was granted the permission
2939 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2940
2941 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2942 // PACKAGE: The package name of the app requesting the permission
2943 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2944
2945 // ACTION: The permission RECORD_AUDIO was revoked for an app
2946 // PACKAGE: The package name of the app the permission was revoked for
2947 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2948
2949 // ACTION: An app requested the permission READ_PHONE_STATE
2950 // PACKAGE: The package name of the app requesting the permission
2951 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2952
2953 // ACTION: An app was granted the permission READ_PHONE_STATE
2954 // PACKAGE: The package name of the app that was granted the permission
2955 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2956
2957 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2958 // PACKAGE: The package name of the app requesting the permission
2959 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2960
2961 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2962 // PACKAGE: The package name of the app the permission was revoked for
2963 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2964
2965 // ACTION: An app requested the permission CALL_PHONE
2966 // PACKAGE: The package name of the app requesting the permission
2967 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2968
2969 // ACTION: An app was granted the permission CALL_PHONE
2970 // PACKAGE: The package name of the app that was granted the permission
2971 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2972
2973 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2974 // PACKAGE: The package name of the app requesting the permission
2975 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2976
2977 // ACTION: The permission CALL_PHONE was revoked for an app
2978 // PACKAGE: The package name of the app the permission was revoked for
2979 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2980
2981 // ACTION: An app requested the permission READ_CALL_LOG
2982 // PACKAGE: The package name of the app requesting the permission
2983 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2984
2985 // ACTION: An app was granted the permission READ_CALL_LOG
2986 // PACKAGE: The package name of the app that was granted the permission
2987 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2988
2989 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2990 // PACKAGE: The package name of the app requesting the permission
2991 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2992
2993 // ACTION: The permission READ_CALL_LOG was revoked for an app
2994 // PACKAGE: The package name of the app the permission was revoked for
2995 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2996
2997 // ACTION: An app requested the permission WRITE_CALL_LOG
2998 // PACKAGE: The package name of the app requesting the permission
2999 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3000
3001 // ACTION: An app was granted the permission WRITE_CALL_LOG
3002 // PACKAGE: The package name of the app that was granted the permission
3003 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3004
3005 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3006 // PACKAGE: The package name of the app requesting the permission
3007 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3008
3009 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3010 // PACKAGE: The package name of the app the permission was revoked for
3011 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3012
3013 // ACTION: An app requested the permission ADD_VOICEMAIL
3014 // PACKAGE: The package name of the app requesting the permission
3015 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3016
3017 // ACTION: An app was granted the permission ADD_VOICEMAIL
3018 // PACKAGE: The package name of the app that was granted the permission
3019 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3020
3021 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3022 // PACKAGE: The package name of the app requesting the permission
3023 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3024
3025 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3026 // PACKAGE: The package name of the app the permission was revoked for
3027 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3028
3029 // ACTION: An app requested the permission USE_SIP
3030 // PACKAGE: The package name of the app requesting the permission
3031 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3032
3033 // ACTION: An app was granted the permission USE_SIP
3034 // PACKAGE: The package name of the app that was granted the permission
3035 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3036
3037 // ACTION: An app requested the permission USE_SIP and the request was denied
3038 // PACKAGE: The package name of the app requesting the permission
3039 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3040
3041 // ACTION: The permission USE_SIP was revoked for an app
3042 // PACKAGE: The package name of the app the permission was revoked for
3043 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3044
3045 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3046 // PACKAGE: The package name of the app requesting the permission
3047 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3048
3049 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3050 // PACKAGE: The package name of the app that was granted the permission
3051 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3052
3053 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3054 // PACKAGE: The package name of the app requesting the permission
3055 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3056
3057 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3058 // PACKAGE: The package name of the app the permission was revoked for
3059 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3060
3061 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3062 // PACKAGE: The package name of the app requesting the permission
3063 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3064
3065 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3066 // PACKAGE: The package name of the app that was granted the permission
3067 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3068
3069 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3070 // PACKAGE: The package name of the app requesting the permission
3071 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3072
3073 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3074 // PACKAGE: The package name of the app the permission was revoked for
3075 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3076
3077 // ACTION: An app requested the permission BODY_SENSORS
3078 // PACKAGE: The package name of the app requesting the permission
3079 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3080
3081 // ACTION: An app was granted the permission BODY_SENSORS
3082 // PACKAGE: The package name of the app that was granted the permission
3083 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3084
3085 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3086 // PACKAGE: The package name of the app requesting the permission
3087 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3088
3089 // ACTION: The permission BODY_SENSORS was revoked for an app
3090 // PACKAGE: The package name of the app the permission was revoked for
3091 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3092
3093 // ACTION: An app requested the permission SEND_SMS
3094 // PACKAGE: The package name of the app requesting the permission
3095 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3096
3097 // ACTION: An app was granted the permission SEND_SMS
3098 // PACKAGE: The package name of the app that was granted the permission
3099 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3100
3101 // ACTION: An app requested the permission SEND_SMS and the request was denied
3102 // PACKAGE: The package name of the app requesting the permission
3103 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3104
3105 // ACTION: The permission SEND_SMS was revoked for an app
3106 // PACKAGE: The package name of the app the permission was revoked for
3107 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3108
3109 // ACTION: An app requested the permission RECEIVE_SMS
3110 // PACKAGE: The package name of the app requesting the permission
3111 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3112
3113 // ACTION: An app was granted the permission RECEIVE_SMS
3114 // PACKAGE: The package name of the app that was granted the permission
3115 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3116
3117 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3118 // PACKAGE: The package name of the app requesting the permission
3119 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3120
3121 // ACTION: The permission RECEIVE_SMS was revoked for an app
3122 // PACKAGE: The package name of the app the permission was revoked for
3123 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3124
3125 // ACTION: An app requested the permission READ_SMS
3126 // PACKAGE: The package name of the app requesting the permission
3127 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3128
3129 // ACTION: An app was granted the permission READ_SMS
3130 // PACKAGE: The package name of the app that was granted the permission
3131 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3132
3133 // ACTION: An app requested the permission READ_SMS and the request was denied
3134 // PACKAGE: The package name of the app requesting the permission
3135 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3136
3137 // ACTION: The permission READ_SMS was revoked for an app
3138 // PACKAGE: The package name of the app the permission was revoked for
3139 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3140
3141 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3142 // PACKAGE: The package name of the app requesting the permission
3143 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3144
3145 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3146 // PACKAGE: The package name of the app that was granted the permission
3147 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3148
3149 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3150 // PACKAGE: The package name of the app requesting the permission
3151 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3152
3153 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3154 // PACKAGE: The package name of the app the permission was revoked for
3155 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3156
3157 // ACTION: An app requested the permission RECEIVE_MMS
3158 // PACKAGE: The package name of the app requesting the permission
3159 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3160
3161 // ACTION: An app was granted the permission RECEIVE_MMS
3162 // PACKAGE: The package name of the app that was granted the permission
3163 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3164
3165 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3166 // PACKAGE: The package name of the app requesting the permission
3167 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3168
3169 // ACTION: The permission RECEIVE_MMS was revoked for an app
3170 // PACKAGE: The package name of the app the permission was revoked for
3171 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3172
3173 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3174 // PACKAGE: The package name of the app requesting the permission
3175 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3176
3177 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3178 // PACKAGE: The package name of the app that was granted the permission
3179 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3180
3181 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3182 // PACKAGE: The package name of the app requesting the permission
3183 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3184
3185 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3186 // PACKAGE: The package name of the app the permission was revoked for
3187 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3188
3189 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3190 // PACKAGE: The package name of the app requesting the permission
3191 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3192
3193 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3194 // PACKAGE: The package name of the app that was granted the permission
3195 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3196
3197 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3198 // PACKAGE: The package name of the app requesting the permission
3199 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3200
3201 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3202 // PACKAGE: The package name of the app the permission was revoked for
3203 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3204
Mahaverfa6566e2016-11-29 21:08:14 +00003205 // ACTION: Logged when a provisioning session has started
3206 PROVISIONING_SESSION_STARTED = 734;
3207
3208 // ACTION: Logged when a provisioning session has completed
3209 PROVISIONING_SESSION_COMPLETED = 735;
3210
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003211 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003212 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003213 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003214
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003215 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003216 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003217 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003218
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003219 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003220 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003221 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003222
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003223 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003224 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003225 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003226
Santos Cordon3107d292016-09-20 15:50:35 -07003227 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3228 // SUBTYPE: slider value
3229 // CATEGORY: QUICK_SETTINGS
3230 // OS: 6.0
3231 ACTION_BRIGHTNESS_FOR_VR = 498;
3232
Hugo Benichie1cbf152016-12-08 09:36:52 +09003233 // ACTION: A captive portal was detected during network validation
3234 // CATEGORY: NOTIFICATION
3235 // OS: N-MR2
3236 NOTIFICATION_NETWORK_SIGN_IN = 740;
3237
3238 // ACTION: An unvalidated network without Internet was selected by the user
3239 // CATEGORY: NOTIFICATION
3240 // OS: N-MR2
3241 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3242
3243 // ACTION: A validated network failed revalidation and lost Internet access
3244 // CATEGORY: NOTIFICATION
3245 // OS: N-MR2
3246 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3247
3248 // ACTION: The system default network switched to a different network
3249 // CATEGORY: NOTIFICATION
3250 // OS: N-MR2
3251 NOTIFICATION_NETWORK_SWITCH = 743;
3252
Fan Zhang074c4cb2016-12-21 12:10:33 -08003253 // OPEN: Settings > System
3254 SETTINGS_SYSTEM_CATEGORY = 744;
3255
3256 // OPEN: Settings > Storage
3257 SETTINGS_STORAGE_CATEGORY = 745;
3258
3259 // OPEN: Settings > Network & Internet
3260 SETTINGS_NETWORK_CATEGORY = 746;
3261
3262 // OPEN: Settings > Connected Device
3263 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3264
3265 // OPEN: Settings > App & Notification
3266 SETTINGS_APP_NOTIF_CATEGORY = 748;
3267
3268 // OPEN: Settings > System > Input & Gesture
3269 SETTINGS_INPUT_CATEGORY = 749;
3270
3271 // OPEN: Settings > System > Language & Region
3272 SETTINGS_LANGUAGE_CATEGORY = 750;
3273
3274 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3275 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3276
3277 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3278 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3279
3280 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3281 SETTINGS_GESTURE_PICKUP = 753;
3282
3283 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3284 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3285
3286 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3287 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3288
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003289 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3290 // CATEGORY: Settings
3291 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3292
Alison Cichowlas803054d2016-12-13 14:38:01 -05003293 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003294 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003295 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3296 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3297 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003298
Salvador Martinezc43ab062016-12-21 11:09:11 -08003299 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3300 // user accepted
3301 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003302
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003303 // Enclosing category for group of APP_TRANSITION_FOO events,
3304 // logged when we execute an app transition.
3305 APP_TRANSITION = 761;
3306
Fan Zhang945deea2017-01-11 16:37:49 -08003307 // ACTION: User leaves Settings search UI without entering any query.
3308 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3309
3310 // ACTION: Clicking on any search result in Settings.
3311 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003312
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003313 // ACTION: Allow Battery optimization for an app
3314 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3315
3316 // ACTION: Deny Battery optimization for an app
3317 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3318
3319 // ACTION: Enable Device Admin app
3320 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3321
3322 // ACTION: Disable Device Admin app
3323 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3324
3325 // ACTION: Allow "Do Not Disturb access" for an app
3326 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3327
3328 // ACTION: Deny "Do Not Disturb access" for an app
3329 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3330
3331 // ACTION: Allow "Draw over other apps" for an app
3332 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3333
Christine Franks47175c32017-03-14 10:21:25 -07003334 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003335 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3336
3337 // ACTION: Allow "VR helper services" for an app
3338 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3339
3340 // ACTION: Deny "VR helper services" for an app
3341 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3342
3343 // ACTION: Allow "Modify system settings" for an app
3344 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3345
3346 // ACTION: Deny "Modify system settings" for an app
3347 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3348
3349 // ACTION: Allow "Notification access" for an app
3350 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3351
3352 // ACTION: Deny "Notification access" for an app
3353 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3354
3355 // ACTION: "Premium SMS access" for an app - "ask user" option
3356 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3357
3358 // ACTION: "Premium SMS access" for an app - "never allow" option
3359 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3360
3361 // ACTION: "Premium SMS access" for an app - "always allow" option
3362 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3363
3364 // ACTION: Allow "Unrestricted data access" for an app
3365 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3366
3367 // ACTION: Deny "Unrestricted data access" for an app
3368 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3369
3370 // ACTION: Allow "Usage access" for an app
3371 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3372
3373 // ACTION: Deny "Usage access" for an app
3374 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3375
Fan Zhangad5dacc2017-01-18 14:18:54 -08003376 // OPEN: Settings > Apps > Default Apps > Default browser
3377 DEFAULT_BROWSER_PICKER = 785;
3378
3379 // OPEN: Settings > Apps > Default Apps > Default emergency app
3380 DEFAULT_EMERGENCY_APP_PICKER = 786;
3381
3382 // OPEN: Settings > Apps > Default Apps > Default home
3383 DEFAULT_HOME_PICKER = 787;
3384
3385 // OPEN: Settings > Apps > Default Apps > Default phone
3386 DEFAULT_PHONE_PICKER = 788;
3387
3388 // OPEN: Settings > Apps > Default Apps > Default sms
3389 DEFAULT_SMS_PICKER = 789;
3390
3391 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3392 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3393
3394 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3395 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3396
Jason Long1b51da62017-01-24 11:35:31 -08003397 // OPEN: Settings > Apps > Default Apps > Default autofill app
3398 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003399
Chris Wren26ca65d2016-11-29 10:43:28 -05003400 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003401 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003402 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3403 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3404 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3405 NOTIFICATION_ID = 796;
3406 NOTIFICATION_TAG = 797;
3407 NOTIFICATION_SHADE_INDEX = 798;
3408 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003409
Anas Karbilaf7648f42016-12-11 00:55:02 +01003410 // OPEN: QS NFC tile shown
3411 // ACTION: QS NFC tile tapped
3412 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003413 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003414
Chris Wren26ca65d2016-11-29 10:43:28 -05003415 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003416 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003417 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3418 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3419 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3420 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3421 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3422 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3423
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003424 // ACTION: "Force stop" action on an app
3425 ACTION_APP_FORCE_STOP = 807;
3426
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003427 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3428 // CATEGORY: SETTINGS
3429 // OS: 8.0
3430 MANAGE_EXTERNAL_SOURCES = 808;
3431
Mahaver6cd47162017-01-23 09:59:33 +00003432 // ACTION: Logged when terms activity finishes.
3433 // TIME: Indicates time taken by terms activity to finish in MS.
3434 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3435
3436 // Indicates number of terms displayed on the terms screen.
3437 PROVISIONING_TERMS_COUNT = 810;
3438
3439 // Indicates number of terms read on the terms screen.
3440 PROVISIONING_TERMS_READ = 811;
3441
Winson Chung59fda9e2017-01-20 16:14:51 -08003442 // Logs that the user has edited the picture-in-picture settings.
3443 // CATEGORY: SETTINGS
3444 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3445
Winson Chungf4ac0632017-03-17 12:34:12 -07003446 // ACTION: Allow "Enable picture-in-picture" for an app
3447 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003448
Winson Chungf4ac0632017-03-17 12:34:12 -07003449 // ACTION: Deny "Enable picture-in-picture" for an app
3450 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003451
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003452 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3453 // CATEGORY: SETTINGS
3454 // OS: 8.0
3455 TTS_SLIDERS = 815;
3456
Jason Monk524fb402017-01-25 10:33:31 -05003457 // ACTION: Settings -> Display -> Theme
3458 ACTION_THEME = 816;
3459
chchaob8e253a2017-01-25 12:12:09 -08003460 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3461 // ACTION: Select to Speak configuration is chosen
3462 // SUBTYPE: 0 is off, 1 is on
3463 // CATEGORY: SETTINGS
3464 // OS: N
3465 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3466
Anton Philippov95a553e2017-01-27 00:08:24 +00003467 // OPEN: Settings > System > Backup
3468 // CATEGORY: SETTINGS
3469 // OS: O
3470 BACKUP_SETTINGS = 818;
3471
Winson Chung14fbe142016-12-19 16:18:24 -08003472 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003473 // VALUE: true if it was entered while hiding as a result of moving to
3474 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003475 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3476
3477 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3478 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3479 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3480
3481 // ACTION: The activity currently in picture-in-picture was minimized
3482 // VALUE: True if the PiP was minimized, false otherwise
3483 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3484
3485 // ACTION: Picture-in-picture was dismissed via the dismiss button
3486 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3487 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3488
3489 // ACTION: The visibility of the picture-in-picture meny
3490 // VALUE: Whether or not the menu is visible
3491 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3492
3493 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3494 // logged when the aspect ratio changes
3495 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3496
3497 // The current aspect ratio of the PiP, logged when it changes.
3498 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3499
Chris Wren27a52fa2017-02-01 14:21:43 -05003500 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3501 // CATEGORY: GLOBAL_SYSTEM_UI
3502 // OS: O
3503 FIELD_GESTURE_LENGTH = 826;
3504
3505 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3506 // CATEGORY: GLOBAL_SYSTEM_UI
3507 // OS: O
3508 FIELD_GESTURE_VELOCITY = 827;
3509
Christine Franks27fde392017-02-07 10:21:55 -08003510 // OPEN: Carrier demo mode password dialog
3511 CARRIER_DEMO_MODE_PASSWORD = 828;
3512
Fan Zhang70967f32017-02-13 16:02:24 -08003513 // ACTION: Create a Settings shortcut item.
3514 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3515
3516 // ACTION: A tile in Settings information architecture is clicked
3517 ACTION_SETTINGS_TILE_CLICK = 830;
3518
Julia Reynolds520df6e2017-02-13 09:05:10 -05003519 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3520 // updated
3521 // CATEGORY: NOTIFICATION
3522 // OS: O
3523 NOTIFICATION_SNOOZED = 831;
3524
3525 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3526 // OS: O
3527 NOTIFICATION_SNOOZED_CRITERIA = 832;
3528
Fan Zhang65899432017-02-14 13:36:53 -08003529 // FIELD - The context (source) from which an action is performed
3530 FIELD_CONTEXT = 833;
3531
Fan Zhangd95dcb42017-02-14 13:48:09 -08003532 // ACTION: Settings advanced button is expanded
3533 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3534
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003535 // ACTION: Logs the number of times the saved network evaluator was used to
3536 // recommend a wifi network
3537 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3538
3539 // ACTION: Logs the number of times the recommended network evaluator was
3540 // used to recommend a wifi network
3541 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3542
3543 // ACTION: Logs the number of times a recommended network was resulted in a
3544 // successful connection
3545 // VALUE: true if the connection was successful, false if the connection failed
3546 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3547
Daniel Nishic581bfc2017-02-08 10:18:19 -08003548 // OPEN: Settings > Storage > Games
3549 // CATEGORY: SETTINGS
3550 // OS: O
3551 APPLICATIONS_STORAGE_GAMES = 838;
3552
3553 // OPEN: Settings > Storage > Audio and Music
3554 // CATEGORY: SETTINGS
3555 // OS: O
3556 APPLICATIONS_STORAGE_MUSIC = 839;
3557
3558 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3559 // CATEGORY: SETTINGS
3560 // OS: O
3561 STORAGE_FREE_UP_SPACE_NOW = 840;
3562
3563 // ACTION: Settings > Storage > Files to open the File Manager
3564 // CATEGORY: SETTINGS
3565 // OS: O
3566 STORAGE_FILES = 841;
3567
Fan Zhangb1d49222017-02-15 17:12:58 -08003568 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003569 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003570
Fan Zhang7f2cace2017-02-17 12:05:48 -08003571 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3572 DEFAULT_ASSIST_PICKER = 843;
3573
3574 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3575 DEFAULT_VOICE_INPUT_PICKER = 844;
3576
Daniel Nishi4058a842017-02-21 17:11:35 -08003577 // OPEN: Settings > Storage > [Profile]
3578 SETTINGS_STORAGE_PROFILE = 845;
3579
Doris Lingedb84c32017-02-23 10:56:01 -08003580 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3581 // CATEGORY: SETTINGS
3582 // OS: O
3583 ENCRYPTION_AND_CREDENTIAL = 846;
3584
Fan Zhangb66e5422017-02-24 14:37:45 -08003585 // ACTION: Settings > About device > Build number
3586 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3587
3588 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3589 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3590
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003591 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3592 // CATEGORY: SETTINGS
3593 // OS: O
3594 WIFI_NETWORK_DETAILS = 849;
3595
jackqdyuleia2a14342017-02-28 16:20:48 -08003596 // ACTION: Settings > Battery > Menu > Usage Alerts
3597 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3598
3599 // ACTION: Settings > Battery > Menu > Optimization
3600 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3601
3602 // ACTION: Settings > Battery > Menu > Apps Toggle
3603 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3604
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003605 // ACTION: Settings > Any preference is changed
3606 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3607
3608 // FIELD: The name of preference when it is changed in Settings
3609 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3610
3611 // FIELD: The new value of preference when it is changed in Settings
3612 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3613
Julia Reynoldsd373d782017-03-03 13:32:57 -05003614 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3615 // channel updated
3616 // PACKAGE: the package the channel belongs too
3617 // CATEGORY: NOTIFICATION
3618 // OS: O
3619 ACTION_NOTIFICATION_CHANNEL = 856;
3620
3621 // Tagged data for notification channel. String.
3622 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3623
3624 // Tagged data for notification channel. int.
3625 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3626
3627 // OPEN: Notification channel group created.
3628 // PACKAGE: the package the group belongs to
3629 // CATEGORY: NOTIFICATION
3630 // OS: O
3631 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3632
3633 // Tagged data for notification channel group. String.
3634 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3635
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003636 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3637 // CATEGORY: SETTINGS
3638 // OS: O
3639 SETTINGS_NETWORK_SCORER = 861;
3640
Fan Zhang99861312017-03-07 14:32:38 -08003641 // OPEN: Settings > About device > Model > Hardware info dialog
3642 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3643
mariagpuyol0f5512e2017-03-01 12:09:56 -08003644 // ACTION: Checks whether a contact's phone still exists
3645 // Value 0: It doesn't exist anymore
3646 // Value 1: It still exists
3647 // Value 2: A SecurityException was thrown
3648 // CATEGORY: SETTINGS
3649 // OS: N
3650 ACTION_PHONE_EXISTS = 863;
3651
3652 // ACTION: Retrieves a contact from CP2
3653 // Value 0: Contact retrieved without issues
3654 // Value 1: An IllegalArgumentException was thrown
3655 // CATEGORY: SETTINGS
3656 // OS: N
3657 ACTION_GET_CONTACT = 864;
3658
Chris Wren4d6b54d2017-04-27 16:56:54 -04003659 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003660 // internal platform metrics use.
3661 RESERVED_FOR_LOGBUILDER_PID = 865;
3662
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003663 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3664 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3665
3666 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3667 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3668
3669 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3670 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3671
3672 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3673 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3674
3675 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3676 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3677
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003678 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003679 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003680
Fan Zhang082d21c2017-03-13 15:25:54 -07003681 // ACTION: Settings > App detail > Uninstall
3682 ACTION_SETTINGS_UNINSTALL_APP = 872;
3683
3684 // ACTION: Settings > App detail > Uninstall Device admin app
3685 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3686
3687 // ACTION: Settings > App detail > Disable app
3688 ACTION_SETTINGS_DISABLE_APP = 874;
3689
3690 // ACTION: Settings > App detail > Enable app
3691 ACTION_SETTINGS_ENABLE_APP = 875;
3692
3693 // ACTION: Settings > App detail > Clear data
3694 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3695
3696 // ACTION: Settings > App detail > Clear cache
3697 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3698
3699 // ACTION: Clicking on any search result in Settings.
3700 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3701
3702 // FIELD: Settings inline search result name
3703 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3704
3705 // FIELD: Settings inline search result value
3706 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3707
Fan Zhang53797932017-03-13 17:46:24 -07003708 // ACTION: Settings > Search > Click saved queries
3709 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3710
Doris Lingbf8d9de2017-03-15 11:52:50 -07003711 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3712 // CATEGORY: SETTINGS
3713 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3714
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003715 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3716 // PACKAGE: The package name of the app requesting the permission
3717 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3718
3719 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3720 // PACKAGE: The package name of the app that was granted the permission
3721 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3722
3723 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3724 // PACKAGE: The package name of the app requesting the permission
3725 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3726
3727 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3728 // PACKAGE: The package name of the app the permission was revoked for
3729 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3730
3731 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3732 // PACKAGE: The package name of the app requesting the permission
3733 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3734
3735 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3736 // PACKAGE: The package name of the app that was granted the permission
3737 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3738
3739 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3740 // PACKAGE: The package name of the app requesting the permission
3741 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3742
3743 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3744 // PACKAGE: The package name of the app the permission was revoked for
3745 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3746
3747 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3748 // PACKAGE: The package name of the app requesting the permission
3749 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3750
3751 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3752 // PACKAGE: The package name of the app that was granted the permission
3753 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3754
3755 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3756 // PACKAGE: The package name of the app requesting the permission
3757 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3758
3759 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3760 // PACKAGE: The package name of the app the permission was revoked for
3761 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3762
3763 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3764 // PACKAGE: The package name of the app requesting the permission
3765 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3766
3767 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3768 // PACKAGE: The package name of the app that was granted the permission
3769 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3770
3771 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3772 // PACKAGE: The package name of the app requesting the permission
3773 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3774
3775 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3776 // PACKAGE: The package name of the app the permission was revoked for
3777 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3778
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003779 // ACTION: Phase 1 of instant application resolution occurred
3780 // OS: O
3781 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3782
3783 // ACTION: Phase 2 of instant application resolution occurred
3784 // OS: O
3785 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3786
3787 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3788 // OS: O
3789 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3790
3791 // FIELD: The status of an ephemeral resolution phase
3792 // Value 0: success
3793 // Value 1: no full hash match
3794 // OS: O
3795 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3796
3797 // FIELD - A token to identify all events that are part of the same instant application launch
3798 // OS: O
3799 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3800
3801 // FIELD - The name of the package responsible for launching the activity
3802 // OS: O
3803 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3804
3805 // FIELD - Whether or not the launched activity is part of an instant application
3806 // OS: O
3807 APP_TRANSITION_IS_EPHEMERAL = 905;
3808
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003809 // An autofill session was started
3810 // Package: Package of app that is autofilled
3811 AUTOFILL_SESSION_STARTED = 906;
3812
3813 // An autofill request was processed by a service
3814 // Type TYPE_SUCCESS: The request succeeded
3815 // Type TYPE_FAILURE: The request failed
3816 // Package: Package of app that is autofilled
3817 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3818 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3819 AUTOFILL_REQUEST = 907;
3820
3821 // Tag of a field for a package of an autofill service
3822 FIELD_AUTOFILL_SERVICE = 908;
3823
3824 // Tag of a field for the number of datasets
3825 FIELD_AUTOFILL_NUM_DATASETS = 909;
3826
3827 // An autofill dataset selection UI was shown
3828 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3829 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3830 // Type TYPE_ACTION: dataset was selected
3831 // Type TYPE_DETAIL: authentication was selected
3832 // Package: Package of app that was autofilled
3833 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3834 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3835 AUTOFILL_FILL_UI = 910;
3836
3837 // Tag of a field for the length of the filter text
3838 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3839
3840 // An autofill authentification succeeded
3841 // Package: Package of app that was autofilled
3842 AUTOFILL_AUTHENTICATED = 912;
3843
3844 // An activity was autofilled and all values could be applied
3845 // Package: Package of app that is autofilled
3846 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3847 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3848 AUTOFILL_DATASET_APPLIED = 913;
3849
3850 // Tag of a field for the number values to be filled in
3851 FIELD_AUTOFILL_NUM_VALUES = 914;
3852
3853 // Tag of a field for the number of views that were filled
3854 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3855
3856 // An autofill save UI was shown
3857 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3858 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3859 // Type TYPE_ACTION: data was saved
3860 // Package: Package of app that was autofilled
3861 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3862 AUTOFILL_SAVE_UI = 916;
3863
3864 // Tag of a field for the number of saveable ids
3865 FIELD_AUTOFILL_NUM_IDS = 917;
3866
3867 // ACTION: An autofill service was reqiested to save data
3868 // Type TYPE_SUCCESS: The request succeeded
3869 // Type TYPE_FAILURE: The request failed
3870 // Package: Package of app that was autofilled
3871 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3872 AUTOFILL_DATA_SAVE_REQUEST = 918;
3873
3874 // An auto-fill session was finished
3875 // Package: Package of app that was autofilled
3876 AUTOFILL_SESSION_FINISHED = 919;
3877
Chris Wren148805582017-03-17 17:18:11 -04003878 // meta-event: a reader has checkpointed the log here.
3879 METRICS_CHECKPOINT = 920;
3880
Fan Zhanged1845f2017-03-23 14:46:59 -07003881 // OPEN: Settings -> Display -> When in VR Mode
3882 VR_DISPLAY_PREFERENCE = 921;
3883
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003884 // OPEN: Settings > Accessibility > Magnification
3885 // CATEGORY: SETTINGS
3886 // OS: O
3887 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003888
3889 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3890 // app.
3891 // VALUE: The package name of the app
3892 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3893
Fan Zhang1a34e752017-03-24 13:44:51 -07003894 // OPEN: Settings -> System -> Reset options
3895 RESET_DASHBOARD = 924;
3896
Jason Monk8c09ac72017-03-16 11:53:40 -04003897 // ACTION: QS -> Tile clicked
3898 ACTION_QS_CLICK = 925;
3899
3900 // ACTION: QS -> Secondary click
3901 ACTION_QS_SECONDARY_CLICK = 926;
3902
3903 // FIELD: Position info in QS clicks
3904 FIELD_QS_POSITION = 927;
3905
3906 // FIELD: The value of a QS tile when clicked (if applicable)
3907 FIELD_QS_VALUE = 928;
3908
3909 // ACTION: QS -> Detail panel -> more settings
3910 ACTION_QS_MORE_SETTINGS = 929;
3911
3912 // ACTION: QS -> Click date
3913 ACTION_QS_DATE = 930;
3914
Jason Monk1b775652017-03-31 15:42:27 -04003915 // ACTION: Event on nav button
3916 ACTION_NAV_BUTTON_EVENT = 931;
3917
3918 // FIELD: Flags for a nav button event
3919 FIELD_FLAGS = 932;
3920
3921 // FIELD: Action for a nav button event
3922 FIELD_NAV_ACTION = 933;
3923
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003924 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3925 // CATEGORY: SETTINGS
3926 // OS: O
3927 FINGERPRINT_REMOVE_SIDECAR = 934;
3928
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003929 // OPEN: Settings > Storage > Movies & TV
3930 // CATEGORY: SETTINGS
3931 // OS: O
3932 APPLICATIONS_STORAGE_MOVIES = 935;
3933
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003934 // OPEN: Text selection "assist" menu item shown.
3935 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3936 // CATEGORY: TEXT_CONTROLS
3937 // OS: O
3938 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3939
3940 // ACTION: Text selection "assist" menu item clicked.
3941 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3942 // CATEGORY: TEXT_CONTROLS
3943 // OS: O
3944 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3945
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003946 // OPEN: Settings > Security > Managed Device Info > Apps installed
3947 // CATEGORY: SETTINGS
3948 // OS: O
3949 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3950
3951 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3952 // CATEGORY: SETTINGS
3953 // OS: O
3954 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3955
3956 // OPEN: Settings > Security > Managed Device Info > Default apps
3957 // CATEGORY: SETTINGS
3958 // OS: O
3959 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3960
Julia Reynolds80b18072017-04-23 12:27:07 -04003961 // OPEN: Settings > Notifications > An app > A channel > Importance
3962 // CATEGORY: SETTINGS
3963 // OS: O
3964 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3965
3966 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3967 // CATEGORY: SETTINGS
3968 // OS: O
3969 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3970
Chris Wren4d6b54d2017-04-27 16:56:54 -04003971 // This value should never appear in log outputs - it is reserved for
3972 // internal platform metrics use.
3973 RESERVED_FOR_LOGBUILDER_UID = 943;
3974
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003975 // OPEN: Running background apps notification > List of background apps
3976 // CATEGORY: GLOBAL_SYSTEM_UI
3977 // OS: O
3978 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3979
Jorim Jaggi515dd682017-05-05 15:05:07 +02003980 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3981 // client.
3982 // OS: O
3983 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3984
Chris Wrenb3921792017-06-01 13:34:46 -04003985 // FIELD - The group ID of a notification.
3986 // Type: string
3987 // OS: O
3988 FIELD_NOTIFICATION_GROUP_ID = 946;
3989
3990 // FIELD - If the notification is a group summary: 1.
3991 // Type: int encoded boolean
3992 // OS: O
3993 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
3994
Chris Wren26ca65d2016-11-29 10:43:28 -05003995 // ---- End O Constants, all O constants go above this line ----
3996
Daniel Sheng2c4bc642017-04-18 14:17:16 -07003997 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
3998 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
3999
jackqdyulei92e492e2017-04-28 13:04:42 -07004000 // OPEN: Settings > Battery > High Usage > Abnormal app page
4001 // CATEGORY: SETTINGS
4002 FUELGAUGE_ANOMALY_DETAIL = 987;
4003
4004 // OPEN: Settings > Battery > High Usage
4005 DIALOG_HANDLE_ANOMALY = 988;
4006
Jonathan Solnita4138162017-05-10 21:06:04 -07004007 // ACTION: Camera lift gesture
4008 // CATEGORY: GLOBAL_SYSTEM_UI
4009 // OS: O
4010 ACTION_CAMERA_LIFT_TRIGGER = 989;
4011
Maurice Lam76ae09c2017-05-05 12:03:49 -07004012 // OPEN: Choose screen lock dialog in Settings
4013 // CATEGORY: SETTINGS
4014 // OS: O DR
4015 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4016
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004017 // OPEN: Assist Gesture training intro in Settings
4018 // CATEGORY: SETTINGS
4019 // OS: O DR
4020 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4021
4022 // OPEN: Assist Gesture training enrolling in Settings
4023 // CATEGORY: SETTINGS
4024 // OS: O DR
4025 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4026
4027 // OPEN: Assist Gesture training finished in Settings
4028 // CATEGORY: SETTINGS
4029 // OS: O DR
4030 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4031
Fan Zhangc666a202017-05-18 17:50:20 -07004032 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4033 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4034
4035 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4036 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4037
Philip Quinn0f9566d2017-05-23 10:32:08 -07004038 // OPEN: Settings > System > Languages & input > Assist gesture
4039 // CATEGORY: SETTINGS
4040 // OS: O DR
4041 SETTINGS_ASSIST_GESTURE = 996;
4042
4043 // ACTION: Assist gesture released without triggering
4044 // CATEGORY: GLOBAL_SYSTEM_UI
4045 // OS: O DR
4046 ASSIST_GESTURE_RELEASED = 997;
4047
4048 // ACTION: Assist gesture primed
4049 // CATEGORY: GLOBAL_SYSTEM_UI
4050 // OS: O DR
4051 ASSIST_GESTURE_PRIMED = 998;
4052
4053 // ACTION: Assist gesture triggered
4054 // CATEGORY: GLOBAL_SYSTEM_UI
4055 // OS: O DR
4056 ASSIST_GESTURE_TRIGGERED = 999;
4057
Fan Zhang238162b2017-05-25 14:01:41 -07004058 // ACTION: Update default app from Settings
4059 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4060
4061 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004062 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004063
4064 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004065 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004066
Adrian Roos1c81d772017-05-25 18:00:21 -07004067 // OPEN: Settings > Display > Ambient Display
4068 // CATEGORY: SETTINGS
4069 // OS: O DR
4070 AMBIENT_DISPLAY_SETTINGS = 1003;
4071
Hugo Benichi11da42b2017-05-31 11:11:37 +09004072 // ACTION: CaptivePortalLoginActivity starts
4073 // CATEGORY: GLOBAL_SYSTEM_UI
4074 // OS: O DR
4075 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4076
4077 // ACTION: CaptivePortalLoginActivity auto-closes
4078 // CATEGORY: GLOBAL_SYSTEM_UI
4079 // OS: O DR
4080 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4081
4082 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4083 // CATEGORY: GLOBAL_SYSTEM_UI
4084 // OS: O DR
4085 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4086
4087 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4088 // CATEGORY: GLOBAL_SYSTEM_UI
4089 // OS: O DR
4090 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4091
4092 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4093 // CATEGORY: SETTINGS
4094 // OS: O DR
4095 ACTION_WIFI_SIGNIN = 1008;
4096
Antony Sargentf3cc3172017-05-04 14:58:06 -07004097 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4098 // CATEGORY: SETTINGS
4099 // OS: O DR
4100 BLUETOOTH_DEVICE_DETAILS = 1009;
4101
fanzhang172255759d2017-06-05 21:43:47 -07004102 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4103 CONFIGURE_KEYGUARD_DIALOG = 1010;
4104
Fan Zhange33c70d2017-06-06 12:37:13 -07004105 // Open: Settings > Search > No Result View
4106 SETTINGS_SEARCH_NO_RESULT = 1011;
4107
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004108 // OPEN: Assist Gesture before training
4109 // CATEGORY: SETTINGS
4110 // OS: O DR
4111 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4112
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004113 // CaptivePortalLoginActivity displays SSL error page
4114 // CATEGORY: GLOBAL_SYSTEM_UI
4115 // OS: O DR
4116 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4117
Fan Zhang1a0fc992017-06-13 13:45:21 -07004118 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4119 WIFI_TETHER_SETTINGS = 1014;
4120
Antony Sargentc3b5da62017-06-16 11:50:13 -07004121 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4122 // -> Edit name button.
4123 // CATEGORY: SETTINGS
4124 // OS: O DR
4125 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4126
Fan Zhang543587d2017-06-19 12:32:14 -07004127 // ACTION: Settings > Notification Settings > Open application notification
4128 // CATEGORY: SETTINGS
4129 // OS: O DR
4130 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4131
4132 // ACTION: Settings > App Info > Open app settings
4133 // CATEGORY: SETTINGS
4134 // OS: O DR
4135 ACTION_OPEN_APP_SETTING = 1017;
4136
jackqdyulei2f1a3592017-06-19 13:11:05 -07004137 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4138 // CATEGORY: SETTINGS
4139 // OS: O DR
4140 BLUETOOTH_PAIRING = 1018;
4141
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004142 // ACTION: Collect PSD Signals
4143 // CATEGORY: SETTINGS
4144 // OS: O DR
4145 ACTION_PSD_LOADER = 1019;
4146
jackqdyulei602bcc92017-06-21 15:17:53 -07004147 // ACTION: Background check action on an app
4148 // CATEGORY: SETTINGS
4149 // OS: O DR
4150 ACTION_APP_BACKGROUND_CHECK = 1020;
4151
4152 // ACTION: Location check action on an app
4153 // CATEGORY: SETTINGS
4154 // OS: O DR
4155 ACTION_APP_LOCATION_CHECK = 1021;
4156
Charlie Wang15a36ed2017-06-14 14:46:39 -07004157 // Device headset status
4158 // CATEGORY: OTHER
4159 // SUBTYPE: 1 is DON, 2 is DOFF
4160 // OS: O DR
4161 ACTION_HEADSET_STATUS = 1022;
4162
4163 // Device Headset Plug status
4164 // CATEGORY: OTHER
4165 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4166 // OS: O DR
4167 ACTION_HEADSET_PLUG = 1023;
4168
4169 // Device Headset battery level on Plug
4170 // CATEGORY: OTHER
4171 // FIELD - The battery percentage when the user decided to plug in
4172 // Type: integer
4173 // OS: O DR
4174 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4175
Charlie Wang566ec702017-06-26 15:30:03 -07004176 // Device Headset battery level on Plug
4177 // CATEGORY: OTHER
4178 // FIELD - The battery percentage when the user decided to plug in
4179 // Type: integer
4180 // OS: O DR
4181 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4182
Charlie Wang15a36ed2017-06-14 14:46:39 -07004183 // Device Headset Pose status
4184 // CATEGORY: OTHER
4185 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4186 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004187 ACTION_HEADSET_POSE_STATUS = 1026;
4188
4189 // Device Headset Usage session time
4190 // CATEGORY: OTHER
4191 // FIELD - The time the headset was used in a session
4192 // OS: O DR
4193 FIELD_SESSION_TIME_MS = 1027;
4194
4195 // Device Headset Idle time
4196 // CATEGORY: OTHER
4197 // FIELD - The time in between each session
4198 // OS: O DR
4199 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4200
4201 // Device Headset charge session time
4202 // CATEGORY: OTHER
4203 // FIELD - The time taken for each charge
4204 // OS: O DR
4205 FIELD_TIME_OF_CHARGE_MS = 1029;
4206
4207 // Device Headset time between charge
4208 // CATEGORY: OTHER
4209 // FIELD - The time in between each charge
4210 // OS: O DR
4211 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004212
Antony Sargentca701a22017-07-05 17:02:00 -07004213 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4214 // -> Forget button.
4215 // CATEGORY: SETTINGS
4216 // OS: O DR
4217 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4218
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004219 // An event from the camera service
4220 // CATEGORY: OTHER
4221 // SUBTYPE: CameraEvent
4222 // OS: O DR
4223 ACTION_CAMERA_EVENT = 1032;
4224
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004225 // OPEN: Settings > Trampoline Intent > Settings page
4226 // CATEGORY: SETTINGS
4227 // OS: O DR
4228 TRAMPOLINE_SETTINGS_EVENT = 1033;
4229
Chris Wren9a4f2662017-06-29 10:10:02 -04004230 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4231
Malcolm Chen21062542017-06-20 11:36:01 -07004232 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4233 // CATEGORY: SETTINGS
4234 // OS: O MR
4235 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4236
4237 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4238 // CATEGORY: SETTINGS
4239 // OS: O MR
4240 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4241
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004242 // FIELD - State of asynchronous ranking when Settings search result is clicked
4243 // CATEGORY: SETTINGS
4244 // OS: O MR
4245 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4246
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004247 // ACTION: Settings > Connected devices > SMS Mirroring
4248 // CATEGORY: SETTINGS
4249 // OS: O MR
4250 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4251
Kang Li2c571892017-07-05 14:47:32 -07004252 // ACTION: Chooser picked a ranked target.
4253 // CATEGORY: GLOBAL_SYSTEM_UI
4254 // OS: O MR
4255 ACTION_TARGET_SELECTED = 1085;
4256
4257 // FIELD - is category used in Chooser: 1.
4258 // Type: int encoded boolean
4259 // CATEGORY: GLOBAL_SYSTEM_UI
4260 // OS: O MR
4261 FIELD_IS_CATEGORY_USED = 1086;
4262
4263 // FIELD - ranked position of selected target for Chooser.
4264 // CATEGORY: GLOBAL_SYSTEM_UI
4265 // OS: O MR
4266 FIELD_RANKED_POSITION = 1087;
4267
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004268 // OPEN: Settings > Data plan usage
4269 // CATEGORY: SETTINGS
4270 // OS: O MR
4271 DATA_PLAN_USAGE_SUMMARY = 1088;
4272
Doris Ling2b5f30c2017-08-08 13:03:41 -07004273 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4274 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4275
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004276 // ACTION: Logged when the app has notified that it has fully drawn. See
4277 // Activity.reportFullyDrawn().
4278 APP_TRANSITION_REPORTED_DRAWN = 1090;
4279
4280 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4281 // the app transition.
4282 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4283
Adrian Roos159ef7b2016-02-25 11:58:32 -08004284 // Add new aosp constants above this line.
4285 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004286 }
4287}