blob: 7672e55bf4774f7e79ad42f81e2681a0c530e095 [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
Chris Wrenf7342712017-09-14 10:55:55 -040036 // The view switched to detail mode (most relevant for quick settings tiles and notifications)
Chris Wren5e334f62016-11-14 10:16:21 -050037 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080047
Chris Wren65f07fe2017-03-14 14:10:37 -040048 // Type for APP_TRANSITION event: The transition started a new
49 // activity for which it's process wasn't running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080050 TYPE_TRANSITION_COLD_LAUNCH = 7;
51
Chris Wren65f07fe2017-03-14 14:10:37 -040052 // Type for APP_TRANSITION event: The transition started a new
53 // activity for which it's process was already running.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080054 TYPE_TRANSITION_WARM_LAUNCH = 8;
55
Chris Wren65f07fe2017-03-14 14:10:37 -040056 // Type for APP_TRANSITION event: The transition brought an
57 // already existing activity to the front.
Jorim Jaggi3878ca32017-02-02 17:13:05 -080058 TYPE_TRANSITION_HOT_LAUNCH = 9;
Philip P. Moltmann7b771162017-03-03 17:22:57 -080059
60 // The action was successful
61 TYPE_SUCCESS = 10;
62
63 // The action failed
64 TYPE_FAILURE = 11;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020065
66 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started without restoring from
67 // a bundle.
68 TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE = 12;
69
70 // Type for APP_TRANSITION_REPORTED_DRAWN event: The activity was started with restoring from
71 // a bundle.
72 TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE = 13;
Chris Wrenf7342712017-09-14 10:55:55 -040073
74 // The view switched to summary mode (most relevant for notifications)
75 TYPE_COLLAPSE = 14;
Chris Wren5e334f62016-11-14 10:16:21 -050076 }
77
Chris Wren65f07fe2017-03-14 14:10:37 -040078 // Types of alerts, as bit field values
79 enum Alert {
80 // Vibrate the device.
81 ALERT_BUZZ = 1;
82
83 // Make sound through the speaker.
84 ALERT_BEEP = 2;
85
86 // Flash a notificaiton light.
87 ALERT_BLINK = 4;
88 }
89
90 // Reasons that a notification might be dismissed.
91 enum DismissReason {
92 // from android.service.notification.NotificationListenerService
93
94 // Notification was canceled by the status bar reporting a notification click
95 REASON_CLICK = 1;
96
97 // Notification was canceled by the status bar reporting a user dismissal.
98 REASON_CANCEL = 2;
99
100 // Notification was canceled by the status bar reporting a user dismiss all.
101 REASON_CANCEL_ALL = 3;
102
103 // Notification was canceled by the status bar reporting an inflation error.
104 REASON_ERROR = 4;
105
106 // Notification was canceled by the package manager modifying the package.
107 REASON_PACKAGE_CHANGED = 5;
108
109 // Notification was canceled by the owning user context being stopped.
110 REASON_USER_STOPPED = 6;
111
112 // Notification was canceled by the user banning the package.
113 REASON_PACKAGE_BANNED = 7;
114
115 // Notification was canceled by the app canceling this specific notification.
116 REASON_APP_CANCEL = 8;
117
118 //Notification was canceled by the app cancelling all its notifications.
119 REASON_APP_CANCEL_ALL = 9;
120
121 // Notification was canceled by a listener reporting a user dismissal.
122 REASON_LISTENER_CANCEL = 10;
123
124 //Notification was canceled by a listener reporting a user dismiss all.
125 REASON_LISTENER_CANCEL_ALL = 11;
126
127 // Notification was canceled because it was a member of a canceled group.
128 REASON_GROUP_SUMMARY_CANCELED = 12;
129
130 // Notification was canceled because it was an invisible member of a group.
131 REASON_GROUP_OPTIMIZATION = 13;
132
133 // Notification was canceled by the device administrator suspending the package.
134 REASON_PACKAGE_SUSPENDED = 14;
135
136 // Notification was canceled by the owning managed profile being turned off.
137 REASON_PROFILE_TURNED_OFF = 15;
138
139 // Autobundled summary notification was canceled because its group was unbundled.
140 REASON_UNAUTOBUNDLED = 16;
141
142 // Notification was canceled by the user banning the channel.
143 REASON_CHANNEL_BANNED = 17;
144
145 // Notification was snoozed.
146 REASON_SNOOZED = 18;
147
148 // Notification was canceled due to timeout.
149 REASON_TIMEOUT = 19;
150 }
151
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700152 // Subtypes of camera events for ACTION_CAMERA_EVENT
153 enum CameraEvent {
154 // A back-facing camera was used
155 CAMERA_BACK_USED = 0;
156
157 // A front-facing camera was used
158 CAMERA_FRONT_USED = 1;
159
160 // An external camera was used
161 CAMERA_EXTERNAL_USED = 2;
162 }
163
Chris Wren77781d32016-01-11 14:49:26 -0500164 // Known visual elements: views or controls.
165 enum View {
Chris Wren7c516842016-03-01 16:44:32 -0500166 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -0500167 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -0500168
169 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500170 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -0500171
172 // OPEN: Settings > Accessibility
173 // CATEGORY: SETTINGS
174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500175 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -0500176
177 // OPEN: Settings > Accessibility > Captions
178 // CATEGORY: SETTINGS
179 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500180 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -0500181
182 // OPEN: Settings > Accessibility > [Service]
183 // CATEGORY: SETTINGS
184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500185 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -0500186
187 // OPEN: Settings > Accessibility > Color correction
188 // CATEGORY: SETTINGS
189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500190 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -0500191
192 // OPEN: Settings > Accessibility > Accessibility shortcut
193 // CATEGORY: SETTINGS
194 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500195 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -0500196
Casey Burkhardtf4e98032017-03-22 22:52:24 -0700197 // OPEN: Settings > Accessibility > Magnification gestures (Renamed in O)
198 // OPEN: Settings > Accessibility > Magnification > Magnify with triple-tap
199 // OPEN: Settings > Accessibility > Magnification > Magnify with button
Chris Wren7c516842016-03-01 16:44:32 -0500200 // CATEGORY: SETTINGS
201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500202 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -0500203
204 // OPEN: Settings > Accounts
205 // CATEGORY: SETTINGS
206 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500207 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -0500208
209 // OPEN: Settings > Accounts > [Single Account Sync Settings]
210 // CATEGORY: SETTINGS
211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500212 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -0500213
214 // OPEN: Settings > Accounts > Add an account
215 // CATEGORY: SETTINGS
216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500217 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500218
219 // OPEN: Settings > Accounts > [List of accounts when more than one]
220 // CATEGORY: SETTINGS
221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500222 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > Cellular network settings > APNs
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500235 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500236
237 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500238 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500239
240 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500241 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500242
243 // OPEN: Settings > Apps > Configure apps > App links > [App]
244 // CATEGORY: SETTINGS
245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500246 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500247
248 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500249 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500250
251 // OPEN: Settings > Internal storage > Apps storage > [App]
252 // CATEGORY: SETTINGS
253 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500254 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500255
256 // OPEN: Settings > Apps > [App info]
257 // CATEGORY: SETTINGS
258 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500259 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Memory > App usage > [App Memory usage]
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500267 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500268
269 // OPEN: Settings > Memory > App usage
270 // CATEGORY: SETTINGS
271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500272 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500273
274 // OPEN: Settings > Bluetooth
275 // CATEGORY: SETTINGS
276 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500277 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Choose Bluetooth device (ex: when sharing)
280 // CATEGORY: SETTINGS
281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500282 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500285 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500286
287 // OPEN: Settings > Security > Choose screen lock
288 // CATEGORY: SETTINGS
289 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500290 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500291
292 // OPEN: Settings > Security > Choose screen lock > Choose your password
293 // CATEGORY: SETTINGS
294 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500295 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500296
297 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
298 // CATEGORY: SETTINGS
299 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500300 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500301
302 // OPEN: Settings > Security > Choose screen lock > Confirm your password
303 // CATEGORY: SETTINGS
304 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500305 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500306
307 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
308 // CATEGORY: SETTINGS
309 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500310 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500311
312 // OPEN: Settings > Security > Encrypt phone
313 // CATEGORY: SETTINGS
314 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500315 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500316
317 // OPEN: Settings > Security > Encrypt phone > Confirm
318 // CATEGORY: SETTINGS
319 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500320 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500321
322 // OPEN: Settings > Search results
323 // CATEGORY: SETTINGS
324 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500325 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500326
327 // OPEN: Settings (Root page)
328 // CATEGORY: SETTINGS
329 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500330 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500333 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500334
335 // OPEN: Settings > Data usage
336 // CATEGORY: SETTINGS
337 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500338 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500339
340 // OPEN: Settings > Date & time
341 // CATEGORY: SETTINGS
342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500343 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500344
345 // OPEN: Settings > Developer options
346 // CATEGORY: SETTINGS
347 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500348 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500349
350 // OPEN: Settings > About phone
351 // CATEGORY: SETTINGS
352 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500353 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500354
355 // OPEN: Settings > About phone > Status > IMEI information
356 // CATEGORY: SETTINGS
357 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500358 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500359
360 // OPEN: Settings > Internal storage
361 // CATEGORY: SETTINGS
362 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500363 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500364
365 // OPEN: Settings > About phone > Status > SIM status
366 // CATEGORY: SETTINGS
367 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500368 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500369
370 // OPEN: Settings > About phone > Status
371 // CATEGORY: SETTINGS
372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500373 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500376 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500377
378 // OPEN: Settings > Display
379 // CATEGORY: SETTINGS
380 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500381 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500382
383 // OPEN: Settings > Display > Daydream
384 // CATEGORY: SETTINGS
385 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500386 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500387
388 // OPEN: Settings > Security > Screen lock > Secure start-up
389 // CATEGORY: SETTINGS
390 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500391 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500392
393 // OPEN: Settings > Security > Nexus Imprint
394 // CATEGORY: SETTINGS
395 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500396 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500397
398 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500399 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500400
401 // OPEN: Settings > Battery > History details
402 // CATEGORY: SETTINGS
403 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500404 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500405
406 // OPEN: Settings > Battery > Battery saver
407 // CATEGORY: SETTINGS
408 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500409 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500410
411 // OPEN: Settings > Battery > [App Use details]
412 // CATEGORY: SETTINGS
413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500414 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500415
416 // OPEN: Settings > Battery
417 // CATEGORY: SETTINGS
418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500419 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500420
421 // OPEN: Settings > Home
422 // CATEGORY: SETTINGS
423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500424 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500425
426 // OPEN: Settings > Security > SIM card lock settings
427 // CATEGORY: SETTINGS
428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500429 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500430
431 // OPEN: Settings > Language & input
432 // CATEGORY: SETTINGS
433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500434 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > Language & input > Physical keyboard
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > Language & input > Spell checker
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500447 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500448
449 // OPEN: Settings > Language & input > Personal dictionary
450 // CATEGORY: SETTINGS
451 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500452 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500453
454 // OPEN: Settings > Language & input > Add word
455 // CATEGORY: SETTINGS
456 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500457 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500458
459 // OPEN: Settings > Location
460 // CATEGORY: SETTINGS
461 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500462 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500463
464 // OPEN: Settings > Location > Location mode
465 // CATEGORY: SETTINGS
466 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500467 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > Apps
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OPEN: Settings > Backup & reset > Factory data reset
475 // CATEGORY: SETTINGS
476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500477 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500478
479 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
480 // CATEGORY: SETTINGS
481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500482 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500483
484 // OPEN: Settings > Data usage > Network restrictions
485 // CATEGORY: SETTINGS
486 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500487 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500488
489 // OPEN: Settings > More > Android Beam
490 // CATEGORY: SETTINGS
491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500492 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500493
494 // OPEN: Settings > Tap & pay
495 // CATEGORY: SETTINGS
496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500497 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500498
499 // OPEN: Settings > Sound & notification
500 // CATEGORY: SETTINGS
501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500502 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: Settings > Sound & notification > App notifications > [App]
505 // CATEGORY: SETTINGS
506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500507 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500508
509 // OPEN: Settings > Sound & notification > Other sounds
510 // CATEGORY: SETTINGS
511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500512 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500513
514 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500515 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500516
517 // OPEN: Settings Widget > Notification log
518 // CATEGORY: SETTINGS
519 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500520 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500521
522 // OPEN: Settings > Sound & notification > Do not disturb
523 // CATEGORY: SETTINGS
524 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500525 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500528 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500529
530 // OPEN: Print job notification > Print job settings
531 // CATEGORY: SETTINGS
532 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500533 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500534
535 // OPEN: Settings > Printing > [Print Service]
536 // CATEGORY: SETTINGS
537 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500538 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500539
540 // OPEN: Settings > Printing
541 // CATEGORY: SETTINGS
542 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500543 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500544
545 // OPEN: Settings > Backup & reset
546 // CATEGORY: SETTINGS
547 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500548 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500549
550 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500551 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500552
553 // OPEN: Settings > Backup & reset > Network settings reset
554 // CATEGORY: SETTINGS
555 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500556 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500557
558 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
559 // CATEGORY: SETTINGS
560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500561 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > Developer Options > Running Services
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OPEN: Settings > Security > Screen pinning
569 // CATEGORY: SETTINGS
570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500571 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OPEN: Settings > Security
574 // CATEGORY: SETTINGS
575 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500576 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500577
578 // OPEN: Settings > SIM cards
579 // CATEGORY: SETTINGS
580 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500581 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500582
583 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500584 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500585
586 // OPEN: Settings > More > Tethering & portable hotspot
587 // CATEGORY: SETTINGS
588 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500589 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500590
591 // OPEN: Settings > Security > Trust agents
592 // CATEGORY: SETTINGS
593 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500594 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500595
596 // OPEN: Settings > Security > Trusted credentials
597 // CATEGORY: SETTINGS
598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500599 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500600
601 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
602 // CATEGORY: SETTINGS
603 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500604 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OPEN: Settings > Language & input > Text-to-speech output
607 // CATEGORY: SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: Settings > Security > Apps with usage access
612 // CATEGORY: SETTINGS
613 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500614 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500615
616 // OPEN: Settings > Users
617 // CATEGORY: SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: Settings > Users > [Restricted profile app & content access]
622 // CATEGORY: SETTINGS
623 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500624 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500625
626 // OPEN: Settings > Users > [User settings]
627 // CATEGORY: SETTINGS
628 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500629 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500632 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500633
634 // OPEN: Settings > More > VPN
635 // CATEGORY: SETTINGS
636 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500637 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500638
639 // OPEN: Settings > Display > Choose wallpaper from
640 // CATEGORY: SETTINGS
641 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500642 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500643
644 // OPEN: Settings > Display > Cast
645 // CATEGORY: SETTINGS
646 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500647 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500648
649 // OPEN: Settings > Wi-Fi
650 // CATEGORY: SETTINGS
651 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500652 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500653
654 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
655 // CATEGORY: SETTINGS
656 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500657 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500658
659 // OPEN: Settings > More > Wi-Fi Calling
660 // CATEGORY: SETTINGS
661 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500662 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500663
664 // OPEN: Settings > Wi-Fi > Saved networks
665 // CATEGORY: SETTINGS
666 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500667 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500668
669 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500670 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500673 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500674
675 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
676 // CATEGORY: SETTINGS
677 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500678 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500679
680 // OPEN: Settings > More
681 // CATEGORY: SETTINGS
682 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500683 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // OPEN: Quick Settings Panel
686 // CATEGORY: QUICK_SETTINGS
687 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500688 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500689
690 // OPEN: QS Airplane mode tile shown
691 // ACTION: QS Airplane mode tile tapped
692 // SUBTYPE: 0 is off, 1 is on
693 // CATEGORY: QUICK_SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // OPEN: QS Bluetooth tile shown
698 // ACTION: QS Bluetooth tile tapped
699 // SUBTYPE: 0 is off, 1 is on
700 // CATEGORY: QUICK_SETTINGS
701 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500702 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500703
704 // OPEN: QS Cast tile shown
705 // ACTION: QS Cast tile tapped
706 // CATEGORY: QUICK_SETTINGS
707 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500708 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500709
710 // OPEN: QS Cellular tile shown
711 // ACTION: QS Cellular tile tapped
712 // CATEGORY: QUICK_SETTINGS
713 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500714 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OPEN: QS Color inversion tile shown
717 // ACTION: QS Color inversion tile tapped
718 // SUBTYPE: 0 is off, 1 is on
719 // CATEGORY: QUICK_SETTINGS
720 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500721 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500722
723 // OPEN: QS Cellular tile > Cellular detail panel
724 // CATEGORY: QUICK_SETTINGS
725 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500726 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500727
728 // OPEN: QS Do not disturb tile shown
729 // ACTION: QS Do not disturb tile tapped
730 // SUBTYPE: 0 is off, 1 is on
731 // CATEGORY: QUICK_SETTINGS
732 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500733 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500734
735 // OPEN: QS Flashlight tile shown
736 // ACTION: QS Flashlight tile tapped
737 // SUBTYPE: 0 is off, 1 is on
738 // CATEGORY: QUICK_SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS Hotspot tile shown
743 // ACTION: QS Hotspot tile tapped
744 // SUBTYPE: 0 is off, 1 is on
745 // CATEGORY: QUICK_SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // OPEN: QS 3P tile shown
750 // ACTION: QS 3P tile tapped
751 // CATEGORY: QUICK_SETTINGS
752 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500753 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500754
755 // OPEN: QS Location tile shown
756 // ACTION: QS Location tile tapped
757 // SUBTYPE: 0 is off, 1 is on
758 // CATEGORY: QUICK_SETTINGS
759 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500760 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500761
762 // OPEN: QS Rotation tile shown
763 // ACTION: QS Rotation tile tapped
764 // SUBTYPE: 0 is off, 1 is on
765 // CATEGORY: QUICK_SETTINGS
766 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500767 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500768
769 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500770 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500771
772 // OPEN: QS User list panel
773 // CATEGORY: QUICK_SETTINGS
774 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500775 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500776
777 // OPEN: QS WiFi tile shown
778 // ACTION: QS WiFi tile tapped
779 // SUBTYPE: 0 is off, 1 is on
780 // CATEGORY: QUICK_SETTINGS
781 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500782 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500783
784 // OPEN: Notification Panel (including lockscreen)
785 // CATEGORY: NOTIFICATION
786 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500787 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500788
789 // OPEN: Notification in panel became visible.
790 // PACKAGE: App that posted the notification.
791 // ACTION: Notification is tapped.
792 // PACKAGE: App that posted the notification
793 // DETAIL: Notification is expanded by user.
794 // PACKAGE: App that posted the notification
795 // DISMISS: Notification is dismissed.
796 // PACKAGE: App that posted the notification
797 // SUBTYPE: Dismiss reason from NotificationManagerService.java
798 // CATEGORY: NOTIFICATION
799 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500800 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // ACTION: User tapped notification action
803 // PACKAGE: App that posted the notification
804 // SUBTYPE: Index of action on notification
805 // CATEGORY: NOTIFICATION
806 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500807 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // OPEN: Settings > Apps > Configure apps > App permissions
810 // CATEGORY: SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // OPEN: Settings > Location > Scanning
815 // CATEGORY: SETTINGS
816 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500817 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500818
819 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500820 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500821
822 // OPEN: Settings > Sound & notification > App notifications
823 // CATEGORY: SETTINGS
824 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500825 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500826
827 // ACTION: Settings > Wi-Fi > Overflow > Add Network
828 // CATEGORY: SETTINGS
829 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500830 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500831
832 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700833 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500834 // CATEGORY: SETTINGS
835 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500836 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500837
838 // ACTION: Settings > Wi-Fi > Overflow > Refresh
839 // CATEGORY: SETTINGS
840 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500841 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500842
843 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
844 // CATEGORY: SETTINGS
845 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500846 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500847
848 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700849 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500850 // CATEGORY: SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: Settings > Wi-Fi > Toggle on
855 // CATEGORY: SETTINGS
856 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500857 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500858
859 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500860 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500861
862 // OPEN: Settings > Sound & notification > DND > Priority only allows
863 // CATEGORY: SETTINGS
864 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500865 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500866
867 // OPEN: Settings > Sound & notification > DND > Automatic rules
868 // CATEGORY: SETTINGS
869 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500870 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500871
872 // OPEN: Settings > Apps > Configure apps > App links
873 // CATEGORY: SETTINGS
874 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500875 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500876
877 // OPEN: Settings > Sound & notification > DND > [Time based rule]
878 // CATEGORY: SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // OPEN: Settings > Sound & notification > DND > [External rule]
883 // CATEGORY: SETTINGS
884 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500885 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500886
887 // OPEN: Settings > Sound & notification > DND > [Event rule]
888 // CATEGORY: SETTINGS
889 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500890 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500891
892 // ACTION: App notification settings > Block Notifications
893 // CATEGORY: SETTINGS
894 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500895 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500896
897 // ACTION: Notification shade > Dismiss all button
898 // CATEGORY: NOTIFICATION
899 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500900 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500901
902 // OPEN: QS Do Not Disturb detail panel
903 // CATEGORY: QUICK_SETTINGS
904 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500905 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500906
907 // OPEN: QS Bluetooth detail panel
908 // CATEGORY: QUICK_SETTINGS
909 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500910 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // OPEN: QS Cast detail panel
913 // CATEGORY: QUICK_SETTINGS
914 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500915 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // OPEN: QS Wi-Fi detail panel
918 // CATEGORY: QUICK_SETTINGS
919 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500920 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500921
922 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
923 // SUBTYPE: 0 is off, 1 is on
924 // CATEGORY: QUICK_SETTINGS
925 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500926 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500927
928 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
929 // SUBTYPE: 0 is off, 1 is on
930 // CATEGORY: QUICK_SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // ACTION: QS Cellular detail panel > Cellular toggle
935 // SUBTYPE: 0 is off, 1 is on
936 // CATEGORY: QUICK_SETTINGS
937 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500938 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500939
940 // ACTION: QS User list panel > Select different user
941 // CATEGORY: QUICK_SETTINGS
942 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500943 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500944
945 // ACTION: QS Cast detail panel > Select cast device
946 // CATEGORY: QUICK_SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // ACTION: QS Cast detail panel > Disconnect cast device
951 // CATEGORY: QUICK_SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // ACTION: Settings > Bluetooth > Toggle
956 // SUBTYPE: 0 is off, 1 is on
957 // CATEGORY: SETTINGS
958 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500959 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500960
961 // ACTION: Settings > Bluetooth > Overflow > Refresh
962 // CATEGORY: SETTINGS
963 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500964 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500965
966 // ACTION: Settings > Bluetooth > Overflow > Rename this device
967 // CATEGORY: SETTINGS
968 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500969 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500970
971 // ACTION: Settings > Bluetooth > Overflow > Show received files
972 // CATEGORY: SETTINGS
973 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500974 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500975
976 // ACTION: QS DND details panel > Increase / Decrease exit time
977 // SUBTYPE: true is increase, false is decrease
978 // CATEGORY: QUICK_SETTINGS
979 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500980 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // ACTION: QS DND details panel > [Exit condition]
983 // CATEGORY: QUICK_SETTINGS
984 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500985 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // ACTION: QS DND details panel > [DND mode]
988 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
989 // CATEGORY: QUICK_SETTINGS
990 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500991 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: QS DND detail panel > DND toggle
994 // SUBTYPE: 0 is off, 1 is on
995 // CATEGORY: QUICK_SETTINGS
996 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500997 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500998
999 // ACTION: DND Settings > Priority only allows > Reminder toggle
1000 // SUBTYPE: 0 is off, 1 is on
1001 // CATEGORY: SETTINGS
1002 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001003 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001004
1005 // ACTION: DND Settings > Priority only allows > Event toggle
1006 // SUBTYPE: 0 is off, 1 is on
1007 // CATEGORY: SETTINGS
1008 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001009 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001010
1011 // ACTION: DND Settings > Priority only allows > Messages
1012 // SUBTYPE: 0 is off, 1 is on
1013 // CATEGORY: SETTINGS
1014 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001015 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001016
1017 // ACTION: DND Settings > Priority only allows > Calls
1018 // SUBTYPE: 0 is off, 1 is on
1019 // CATEGORY: SETTINGS
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1024 // SUBTYPE: 0 is off, 1 is on
1025 // CATEGORY: SETTINGS
1026 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001027 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: DND Settings > Automatic rules > Add rule
1030 // CATEGORY: SETTINGS
1031 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001032 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001033
1034 // ACTION: DND Settings > Automatic rules > Add rule > OK
1035 // CATEGORY: SETTINGS
1036 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001037 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1040 // CATEGORY: SETTINGS
1041 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001042 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1045 // CATEGORY: SETTINGS
1046 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001047 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001048
1049 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1050 // SUBTYPE: 0 is off, 1 is on
1051 // CATEGORY: SETTINGS
1052 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001053 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001054
1055 // ACTION: Settings > More > Airplane mode toggle
1056 // SUBTYPE: 0 is off, 1 is on
1057 // CATEGORY: SETTINGS
1058 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // ACTION: Settings > Data usage > Cellular data toggle
1062 // SUBTYPE: 0 is off, 1 is on
1063 // CATEGORY: SETTINGS
1064 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001065 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001066
1067 // OPEN: Settings > Sound & notification > Notification access
1068 // CATEGORY: SETTINGS
1069 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001070 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001071
1072 // OPEN: Settings > Sound & notification > Do Not Disturb access
1073 // CATEGORY: SETTINGS
1074 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001075 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001076
1077 // OPEN: Settings > Apps > Configure apps > Default Apps
1078 // CATEGORY: SETTINGS
1079 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001080 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001081
1082 // OPEN: Settings > Internal storage > Apps storage
1083 // CATEGORY: SETTINGS
1084 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001085 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // OPEN: Settings > Security > Usage access
1088 // CATEGORY: SETTINGS
1089 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001090 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001091
1092 // OPEN: Settings > Battery > Battery optimization
1093 // CATEGORY: SETTINGS
1094 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001095 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001096
1097 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001098 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001099
1100 // ACTION: Lockscreen > Unlock gesture
1101 // CATEGORY: GLOBAL_SYSTEM_UI
1102 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001103 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001104
1105 // ACTION: Lockscreen > Pull shade open
1106 // CATEGORY: GLOBAL_SYSTEM_UI
1107 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001108 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001109
1110 // ACTION: Lockscreen > Tap on lock, shows hint
1111 // CATEGORY: GLOBAL_SYSTEM_UI
1112 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001113 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001114
1115 // ACTION: Lockscreen > Camera
1116 // CATEGORY: GLOBAL_SYSTEM_UI
1117 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001118 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001119
1120 // ACTION: Lockscreen > Dialer
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: Lockscreen > Tap on lock, locks phone
1126 // CATEGORY: GLOBAL_SYSTEM_UI
1127 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001128 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // ACTION: Lockscreen > Tap on notification, false touch rejection
1131 // CATEGORY: GLOBAL_SYSTEM_UI
1132 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001133 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001134
1135 // ACTION: Lockscreen > Swipe down to open quick settings
1136 // CATEGORY: GLOBAL_SYSTEM_UI
1137 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001138 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001139
1140 // ACTION: Swipe down to open quick settings when unlocked
1141 // CATEGORY: GLOBAL_SYSTEM_UI
1142 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001143 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // ACTION: Notification shade > Tap to open quick settings
1146 // CATEGORY: GLOBAL_SYSTEM_UI
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // OPEN: Lockscreen
1151 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1152 // CATEGORY: GLOBAL_SYSTEM_UI
1153 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001154 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1157 // CATEGORY: GLOBAL_SYSTEM_UI
1158 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001159 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001160
1161 // OPEN: Screen turned on
1162 // SUBTYPE: 2 is user action
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001165 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // OPEN: Notification caused sound, vibration, and/or LED blink
1168 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1169 // CATEGORY: NOTIFICATION
1170 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001171 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001172
1173 // ACTION: Lockscreen > Emergency Call button
1174 // CATEGORY: GLOBAL_SYSTEM_UI
1175 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001176 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001177
1178 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1179 // CATEGORY: SETTINGS
1180 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001181 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001182
1183 // OPEN: Settings > Memory
1184 // CATEGORY: SETTINGS
1185 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001186 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001187
1188 // ACTION: Settings > Display > When device is rotated
1189 // CATEGORY: SETTINGS
1190 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001191 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // ACTION: Long press on notification to view controls
1194 // CATEGORY: NOTIFICATION
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // ACTION: Notificatoin controls > Info button
1199 // CATEGORY: NOTIFICATION
1200 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001201 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001202
1203 // ACTION: Notification controls > Settings button
1204 // CATEGORY: NOTIFICATION
1205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001206 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // OPEN: Volume Dialog (with hardware buttons)
1209 // CATEGORY: GLOBAL_SYSTEM_UI
1210 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001211 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1214 // CATEGORY: GLOBAL_SYSTEM_UI
1215 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001216 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001217
1218 // ACTION: Volume dialog > Adjust volume slider
1219 // SUBTYPE: volume level (0-7)
1220 // CATEGORY: GLOBAL_SYSTEM_UI
1221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001222 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001223
1224 // ACTION: Volume dialog > Select non-active stream
1225 // SUBTYPE: stream (defined in AudioSystem.java)
1226 // CATEGORY: GLOBAL_SYSTEM_UI
1227 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001228 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001229
1230 // ACTION: Adjust volume with hardware key
1231 // SUBTYPE: volume level (0-7)
1232 // CATEGORY: GLOBAL_SYSTEM_UI
1233 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001234 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001235
1236 // ACTION: Volume dialog > Mute a stream by tapping icon
1237 // SUBTYPE: mute is 1, audible is 2
1238 // CATEGORY: GLOBAL_SYSTEM_UI
1239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001240 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001241
1242 // ACTION: Volume dialog > Change ringer mode by tapping icon
1243 // SUBTYPE: 2 is audible, 3 is vibrate
1244 // CATEGORY: GLOBAL_SYSTEM_UI
1245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001246 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001247
1248 // ACTION: Chooser shown (share target, file open, etc.)
1249 // CATEGORY: GLOBAL_SYSTEM_UI
1250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001251 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001252
1253 // ACTION: Chooser > User taps an app target
1254 // SUBTYPE: Index of target
1255 // CATEGORY: GLOBAL_SYSTEM_UI
1256 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001257 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001258
1259 // ACTION: Chooser > User taps a service target
1260 // SUBTYPE: Index of target
1261 // CATEGORY: GLOBAL_SYSTEM_UI
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // ACTION: Chooser > User taps a standard target
1266 // SUBTYPE: Index of target
1267 // CATEGORY: GLOBAL_SYSTEM_UI
1268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001269 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001270
1271 // ACTION: QS Brightness Slider (with auto brightness disabled)
1272 // SUBTYPE: slider value
1273 // CATEGORY: QUICK_SETTINGS
1274 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001275 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001276
1277 // ACTION: QS Brightness Slider (with auto brightness enabled)
1278 // SUBTYPE: slider value
1279 // CATEGORY: QUICK_SETTINGS
1280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001281 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001282
1283 // OPEN: Settings > Display > Brightness Slider
1284 // CATEGORY: SETTINGS
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001287
Christine Franks47175c32017-03-14 10:21:25 -07001288 // OPEN: Settings > Apps > Configure Apps > Display over other apps
Chris Wren7c516842016-03-01 16:44:32 -05001289 // CATEGORY: SETTINGS
1290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001291 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001292
1293 // OPEN: Display has entered dream mode
1294 // CATEGORY: GLOBAL_SYSTEM_UI
1295 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001296 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001297
1298 // OPEN: Display has entered ambient notification mode
1299 // CATEGORY: GLOBAL_SYSTEM_UI
1300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001301 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // OPEN: Overview
1304 // CATEGORY: GLOBAL_SYSTEM_UI
1305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001306 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001307
1308 // OPEN: Settings > About phone > Legal information
1309 // CATEGORY: SETTINGS
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // OPEN: Settings > Search > Perform search
1314 // CATEGORY: SETTINGS
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // OPEN: Settings > System UI Tuner
1319 // CATEGORY: SETTINGS
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // OPEN: Settings > System UI Tuner > Quick Settings
1324 // CATEGORY: SETTINGS
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // OPEN: Settings > System UI Tuner > Demo mode
1329 // CATEGORY: SETTINGS
1330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001331 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001332
1333 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1334 // PACKAGE: Tile
1335 // CATEGORY: SETTINGS
1336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001337 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001338
1339 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1340 // PACKAGE: Tile
1341 // CATEGORY: SETTINGS
1342 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001343 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1346 // PACKAGE: Tile
1347 // CATEGORY: SETTINGS
1348 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001349 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001350
1351 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1352 // PACKAGE: Icon
1353 // CATEGORY: SETTINGS
1354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001355 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001356
1357 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1358 // PACKAGE: Icon
1359 // CATEGORY: SETTINGS
1360 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001361 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001362
1363 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1364 // SUBTYPE: false is disabled, true is enabled
1365 // CATEGORY: SETTINGS
1366 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001367 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001368
1369 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1370 // SUBTYPE: false is disabled, true is enabled
1371 // CATEGORY: SETTINGS
1372 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001373 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001374
1375 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1376 // SUBTYPE: 0 is disabled, 1 is enabled
1377 // CATEGORY: SETTINGS
1378 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001379 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001380
1381 // OPEN: Settings > Developer options > Inactive apps
1382 // CATEGORY: SETTINGS
1383 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001384 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // ACTION: Long press home to bring up assistant
1387 // CATEGORY: GLOBAL_SYSTEM_UI
1388 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001389 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1392 // CATEGORY: SETTINGS
1393 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001394 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001395
1396 // OPEN: Fingerprint Enroll > Find Sensor
1397 // CATEGORY: SETTINGS
1398 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001399 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001400
1401 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1402 // CATEGORY: SETTINGS
1403 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001404 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001405
1406 // OPEN: Fingerprint Enroll introduction
1407 // CATEGORY: SETTINGS
1408 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001409 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001410
1411 // OPEN: Fingerprint Enroll onboarding
1412 // CATEGORY: SETTINGS
1413 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001414 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001415
1416 // OPEN: Fingerprint Enroll > Let's Start!
1417 // CATEGORY: SETTINGS
1418 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001419 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001420
1421 // OPEN: Fingerprint Enroll SUW > Let's Start!
1422 // CATEGORY: SETTINGS
1423 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001424 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001425
1426 // OPEN: Fingerprint Enroll SUW > Find Sensor
1427 // CATEGORY: SETTINGS
1428 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001429 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001430
1431 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1432 // CATEGORY: SETTINGS
1433 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001434 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001435
1436 // OPEN: Fingerprint Enroll SUW introduction
1437 // CATEGORY: SETTINGS
1438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001439 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001440
1441 // OPEN: Fingerprint Enroll SUW onboarding
1442 // CATEGORY: SETTINGS
1443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001444 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001445
1446 // ACTION: Add fingerprint > Enroll fingerprint
1447 // CATEGORY: SETTINGS
1448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001449 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001450
1451 // ACTION: Authenticate using fingerprint
1452 // CATEGORY: SETTINGS
1453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001454 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001455
1456 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1457 // CATEGORY: SETTINGS
1458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001459 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001460
1461 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1462 // CATEGORY: SETTINGS
1463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001464 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001465
1466 // ACTION: Double tap camera shortcut
1467 // CATEGORY: GLOBAL_SYSTEM_UI
1468 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001469 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001470
1471 // ACTION: Double twist camera shortcut
1472 // CATEGORY: GLOBAL_SYSTEM_UI
1473 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001474 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001475
1476 // OPEN: QS Work Mode tile shown
1477 // ACTION: QS Work Mode tile tapped
1478 // SUBTYPE: 0 is off, 1 is on
1479 // CATEGORY: QUICK_SETTINGS
1480 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001481 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: Settings > Developer Options > Background Check
1484 // CATEGORY: SETTINGS
1485 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001486 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001487
1488 // OPEN: QS Lock tile shown
1489 // ACTION: QS Lock tile tapped
1490 // SUBTYPE: 0 is off, 1 is on
1491 // CATEGORY: QUICK_SETTINGS
1492 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001493 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001494
1495 // OPEN: QS User Tile shown
1496 // CATEGORY: QUICK_SETTINGS
1497 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001498 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001499
1500 // OPEN: QS Battery tile shown
1501 // CATEGORY: QUICK_SETTINGS
1502 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001503 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001504
1505 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1506 // CATEGORY: SETTINGS
1507 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001508 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001509
1510 // ACTION: Visual interruptions > No screen interuptions toggle
1511 // SUBTYPE: 0 is off, 1 is on
1512 // CATEGORY: SETTINGS
1513 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001514 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001515
1516 // ACTION: Visual interruptions > No notification light toggle
1517 // SUBTYPE: 0 is off, 1 is on
1518 // CATEGORY: SETTINGS
1519 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001520 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001521
1522 // OPEN: Settings > Notifications > [App] > Topic Notifications
1523 // CATEGORY: SETTINGS
1524 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001525 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001526
1527 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1528 // PACKAGE: Selected SMS app
1529 // CATEGORY: SETTINGS
1530 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001531 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001532
1533 // OPEN: QS Color modification tile shown
1534 // ACTION: QS Color modification tile tapped
1535 // SUBTYPE: 0 is off, 1 is on
1536 // CATEGORY: QUICK_SETTINGS
1537 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001538 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001539
1540 // OPEN: QS Custom tile shown
1541 // ACTION: QS Work Mode tile tapped
1542 // CATEGORY: QUICK_SETTINGS
1543 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001544 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001545
1546 // ACTION: Visual interruptions > Never turn off the screen toggle
1547 // SUBTYPE: 0 is off, 1 is on
1548 // CATEGORY: SETTINGS
1549 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001550 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001551
Chris Wren7c516842016-03-01 16:44:32 -05001552 // ACTION: Overview > Long-press task, drag to enter split-screen
1553 // CATEGORY: GLOBAL_SYSTEM_UI
1554 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001555 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1556
Chris Wren7c516842016-03-01 16:44:32 -05001557 // ACTION: In App > Long-press Overview button to enter split-screen
1558 // CATEGORY: GLOBAL_SYSTEM_UI
1559 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001560 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1561
Chris Wren7c516842016-03-01 16:44:32 -05001562 // ACTION: In App > Swipe Overview button to enter split-screen
1563 // CATEGORY: GLOBAL_SYSTEM_UI
1564 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001565 ACTION_WINDOW_DOCK_SWIPE = 272;
1566
Chris Wren7c516842016-03-01 16:44:32 -05001567 // ACTION: Launch profile-specific app > Confirm credentials
1568 // CATEGORY: GLOBAL_SYSTEM_UI
1569 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001570 PROFILE_CHALLENGE = 273;
1571
Chris Wren7c516842016-03-01 16:44:32 -05001572 // OPEN: QS Battery detail panel
1573 // CATEGORY: GLOBAL_SYSTEM_UI
1574 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001575 QS_BATTERY_DETAIL = 274;
1576
Chris Wren7c516842016-03-01 16:44:32 -05001577 // OPEN: Overview > History
1578 // CATEGORY: GLOBAL_SYSTEM_UI
1579 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001580 OVERVIEW_HISTORY = 275;
1581
Chris Wren7c516842016-03-01 16:44:32 -05001582 // ACTION: Overview > Page by tapping Overview button
1583 // CATEGORY: GLOBAL_SYSTEM_UI
1584 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001585 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001586
Chris Wren7c516842016-03-01 16:44:32 -05001587 // ACTION: Overview > Select app
1588 // CATEGORY: GLOBAL_SYSTEM_UI
1589 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001590 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001591
Chris Wren7c516842016-03-01 16:44:32 -05001592 // ACTION: View emergency info
1593 // CATEGORY: GLOBAL_SYSTEM_UI
1594 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001595 ACTION_VIEW_EMERGENCY_INFO = 278;
1596
Chris Wren7c516842016-03-01 16:44:32 -05001597 // ACTION: Edit emergency info activity
1598 // CATEGORY: SETTINGS
1599 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001600 ACTION_EDIT_EMERGENCY_INFO = 279;
1601
Chris Wren7c516842016-03-01 16:44:32 -05001602 // ACTION: Edit emergency info field
1603 // CATEGORY: SETTINGS
1604 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001605 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1606
Chris Wren7c516842016-03-01 16:44:32 -05001607 // ACTION: Add emergency contact
1608 // CATEGORY: SETTINGS
1609 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001610 ACTION_ADD_EMERGENCY_CONTACT = 281;
1611
Chris Wren7c516842016-03-01 16:44:32 -05001612 // ACTION: Delete emergency contact
1613 // CATEGORY: SETTINGS
1614 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001615 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1616
Chris Wren7c516842016-03-01 16:44:32 -05001617 // ACTION: Call emergency contact
1618 // CATEGORY: SETTINGS
1619 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001620 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001621
Chris Wren7c516842016-03-01 16:44:32 -05001622 // OPEN: QS Data Saver tile shown
1623 // ACTION: QS Data Saver tile tapped
1624 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001625 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001626
Robin Lee8c1306e2016-02-01 11:37:02 +00001627 // OPEN: Settings > Security > User credentials
1628 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001629 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001630 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001631
Chris Wren7c516842016-03-01 16:44:32 -05001632 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1633 // CATEGORY: GLOBAL_SYSTEM_UI
1634 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001635 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001636
1637 // Logged when the user scrolls through overview manually
1638 OVERVIEW_SCROLL = 287;
1639
1640 // Logged when the overview times out automatically selecting an app
1641 OVERVIEW_SELECT_TIMEOUT = 288;
1642
1643 // Logged when a user dismisses a task in overview
1644 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001645
1646 // Logged when the user modifying the notification importance slider.
1647 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1648
1649 // Logged when the user saves a modification to notification importance. Negative numbers
1650 // indicate the user lowered the importance; positive means they increased it.
1651 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001652
Chris Wren7c516842016-03-01 16:44:32 -05001653 // ACTION: Long-press power button, then tap "Take bug report" option.
1654 // CATEGORY: GLOBAL_SYSTEM_UI
1655 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001656 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1657
Chris Wren7c516842016-03-01 16:44:32 -05001658 // ACTION: Long-press power button, then long-press "Take bug report" option.
1659 // CATEGORY: GLOBAL_SYSTEM_UI
1660 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001661 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1662
Chris Wren7c516842016-03-01 16:44:32 -05001663 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1664 // CATEGORY: SETTINGS
1665 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001666 // Interactive bug report initiated from Settings.
1667 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1668
Chris Wren7c516842016-03-01 16:44:32 -05001669 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1670 // CATEGORY: SETTINGS
1671 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001672 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001673 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1674
Chris Wren7c516842016-03-01 16:44:32 -05001675 // ACTION: User tapped notification action to cancel a bug report
1676 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001677 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001678 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1679
Chris Wren7c516842016-03-01 16:44:32 -05001680 // ACTION: User tapped notification action to launch bug report details screen
1681 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001682 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001683 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1684
Chris Wren7c516842016-03-01 16:44:32 -05001685 // ACTION: User tapped notification action to take adition screenshot on bug report
1686 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001687 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001688 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1689
Chris Wren7c516842016-03-01 16:44:32 -05001690 // ACTION: User tapped notification to share bug report
1691 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001692 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001693 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1694
Chris Wren7c516842016-03-01 16:44:32 -05001695 // ACTION: User changed bug report name using the details screen
1696 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001697 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001698 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1699
Chris Wren7c516842016-03-01 16:44:32 -05001700 // ACTION: User changed bug report title using the details screen
1701 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001702 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001703 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1704
Chris Wren7c516842016-03-01 16:44:32 -05001705 // ACTION: User changed bug report description using the details screen
1706 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001707 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001708 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1709
Chris Wren7c516842016-03-01 16:44:32 -05001710 // ACTION: User tapped Save in the bug report details screen.
1711 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001712 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001713 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1714
Chris Wren7c516842016-03-01 16:44:32 -05001715 // ACTION: User tapped Cancel in the bug report details screen.
1716 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001717 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001718 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001719
1720 // Tuner: Open/close calibrate dialog.
1721 TUNER_CALIBRATE_DISPLAY = 305;
1722
1723 // Tuner: Open/close color and appearance.
1724 TUNER_COLOR_AND_APPEARANCE = 306;
1725
1726 // Tuner: Apply calibrate dialog.
1727 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1728
1729 // Tuner: Open/close night mode.
1730 TUNER_NIGHT_MODE = 308;
1731
1732 // Tuner: Change night mode.
1733 ACTION_TUNER_NIGHT_MODE = 309;
1734
1735 // Tuner: Change night mode auto.
1736 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1737
1738 // Tuner: Change night mode adjust dark theme.
1739 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1740
1741 // Tuner: Change night mode adjust tint.
1742 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1743
1744 // Tuner: Change night mode adjust brightness.
1745 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1746
1747 // Tuner: Change do not disturb in volume panel.
1748 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1749
1750 // Tuner: Change do not disturb volume buttons shortcut.
1751 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001752
1753 // Logs the action the user takes when an app crashed.
1754 ACTION_APP_CRASH = 316;
1755
1756 // Logs the action the user takes when an app ANR'd.
1757 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001758
1759 // Logged when a user double taps the overview button to launch the previous task
1760 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001761
1762 // Logged when we execute an app transition. This indicates the total delay from startActivity
1763 // until the app transition is starting to animate, in milliseconds.
1764 APP_TRANSITION_DELAY_MS = 319;
1765
1766 // Logged when we execute an app transition. This indicates the reason why the transition
1767 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1768 APP_TRANSITION_REASON = 320;
1769
1770 // Logged when we execute an app transition and we drew a starting window. This indicates the
1771 // delay from startActivity until the starting window was drawn.
1772 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1773
1774 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1775 // the delay from startActivity until all windows have been drawn.
1776 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1777
1778 // Logged when we execute an app transition. This indicates the component name of the current
1779 // transition.
1780 APP_TRANSITION_COMPONENT_NAME = 323;
1781
1782 // Logged when we execute an app transition. This indicates whether the process was already
1783 // running.
1784 APP_TRANSITION_PROCESS_RUNNING = 324;
1785
1786 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1787 // the transition was executed.
1788 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001789
Chris Wren38f98812016-07-13 14:28:40 -04001790 // ACTION: app requested access to a scoped directory, user granted it.
1791 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1792 // CATEGORY: GLOBAL_SYSTEM_UI
1793 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001794 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1795
Chris Wren38f98812016-07-13 14:28:40 -04001796 // ACTION: app requested access to a scoped directory, user denied it.
1797 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1798 // CATEGORY: GLOBAL_SYSTEM_UI
1799 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001800 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1801
Chris Wren38f98812016-07-13 14:28:40 -04001802 // ACTION: app requested access to a scoped directory, user granted it.
1803 // PACKAGE: app that requested access
1804 // CATEGORY: GLOBAL_SYSTEM_UI
1805 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001806 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1807
Chris Wren38f98812016-07-13 14:28:40 -04001808 // ACTION: app requested access to a scoped directory, user denied it.
1809 // PACKAGE: app that requested access.
1810 // CATEGORY: GLOBAL_SYSTEM_UI
1811 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001812 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1813
Chris Wren38f98812016-07-13 14:28:40 -04001814 // ACTION: app requested access to a directory user has already been granted
1815 // access before.
1816 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1817 // CATEGORY: GLOBAL_SYSTEM_UI
1818 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001819 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1820
Chris Wren38f98812016-07-13 14:28:40 -04001821 // ACTION: app requested access to a directory user has already been granted
1822 // access before.
1823 // PACKAGE: app that requested access.
1824 // CATEGORY: GLOBAL_SYSTEM_UI
1825 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001826 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001827
Chris Wren38f98812016-07-13 14:28:40 -04001828 // ACTION: Logged when the user slides a notification and reveals the gear
1829 // beneath it.
1830 // CATEGORY: NOTIFICATION
1831 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001832 ACTION_REVEAL_GEAR = 332;
1833
Chris Wren38f98812016-07-13 14:28:40 -04001834 // ACTION: Logged when the user taps on the gear beneath a notification.
1835 // CATEGORY: NOTIFICATION
1836 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001837 ACTION_TOUCH_GEAR = 333;
1838
Ruben Brunke24b9a62016-02-16 21:38:24 -08001839 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001840 // CATEGORY: SETTINGS
1841 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001842 VR_MANAGE_LISTENERS = 334;
1843
Jason Monk6f5354d2016-03-08 14:18:08 -05001844 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001845 // CATEGORY: SETTINGS
1846 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001847 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001848
Jason Monk6f5354d2016-03-08 14:18:08 -05001849 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001850 // CATEGORY: SETTINGS
1851 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001852 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001853
Jason Monk6f5354d2016-03-08 14:18:08 -05001854 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001855 // CATEGORY: SETTINGS
1856 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001857 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001858
Jason Monk6f5354d2016-03-08 14:18:08 -05001859 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001860 // CATEGORY: SETTINGS
1861 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001862 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001863
Jason Monk6f5354d2016-03-08 14:18:08 -05001864 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001865 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001866 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001867
Jason Monk6f5354d2016-03-08 14:18:08 -05001868 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001869 // CATEGORY: SETTINGS
1870 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001871 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001872
Jason Monk6f5354d2016-03-08 14:18:08 -05001873 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001874 // CATEGORY: SETTINGS
1875 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001876 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001877
Jason Monk6f5354d2016-03-08 14:18:08 -05001878 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001879 // CATEGORY: SETTINGS
1880 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001881 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001882
Jason Monk6f5354d2016-03-08 14:18:08 -05001883 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001884 // CATEGORY: SETTINGS
1885 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001886 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001887
Jason Monk6f5354d2016-03-08 14:18:08 -05001888 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001889 // CATEGORY: SETTINGS
1890 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001891 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001892
Jason Monk6f5354d2016-03-08 14:18:08 -05001893 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001894 // CATEGORY: SETTINGS
1895 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001896 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001897
Jason Monk6f5354d2016-03-08 14:18:08 -05001898 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001899 // CATEGORY: SETTINGS
1900 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001901 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001902
Jason Monk6f5354d2016-03-08 14:18:08 -05001903 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001904 // CATEGORY: SETTINGS
1905 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001906 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001907
Jason Monk6f5354d2016-03-08 14:18:08 -05001908 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001909 // CATEGORY: SETTINGS
1910 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001911 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001912
Jason Monk6f5354d2016-03-08 14:18:08 -05001913 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001914 // CATEGORY: SETTINGS
1915 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001916 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1917
1918 // Used for generic logging of Settings Preference Persistence, should not be used
1919 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001920 // CATEGORY: SETTINGS
1921 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001922 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001923
Jason Monk6f5354d2016-03-08 14:18:08 -05001924 // Settings -> Apps -> Gear -> Special access
1925 SPECIAL_ACCESS = 351;
1926
Muyuan Lia2129992016-03-03 18:30:39 -08001927 // Logs that the user docks window via shortcut key.
1928 WINDOW_DOCK_SHORTCUTS = 352;
1929
Felipe Lemeadccb992016-03-09 17:40:49 -08001930 // User already denied access to the request folder; action takes an integer
1931 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001932 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001933 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1934
1935 // User already denied access to the request folder; action pass package name
1936 // of calling package.
1937 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1938
1939 // User denied access to the request folder and checked 'Do not ask again';
1940 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001941 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001942 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1943
1944 // User denied access to the request folder and checked 'Do not ask again';
1945 // action pass package name of calling package.
1946 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1947
Winson3b6ba1a2016-03-22 15:37:54 -07001948 // Logged when a user dismisses all task in overview
1949 OVERVIEW_DISMISS_ALL = 357;
1950
Jason Monk96defbe2016-03-29 16:51:03 -04001951 // Quick Settings -> Edit
1952 QS_EDIT = 358;
1953
1954 // Quick Settings -> Edit -> Overflow -> Reset
1955 ACTION_QS_EDIT_RESET = 359;
1956
1957 // QS -> Edit - Drag a tile out of the active tiles.
1958 // The _SPEC contains either the spec of the tile or
1959 // the package of the 3rd party app in the PKG field.
1960 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1961 ACTION_QS_EDIT_REMOVE = 361;
1962
1963 // QS -> Edit - Drag a tile into the active tiles.
1964 // The _SPEC contains either the spec of the tile or
1965 // the package of the 3rd party app in the PKG field.
1966 ACTION_QS_EDIT_ADD_SPEC = 362;
1967 ACTION_QS_EDIT_ADD = 363;
1968
1969 // QS -> Edit - Drag a tile within the active tiles.
1970 // The _SPEC contains either the spec of the tile or
1971 // the package of the 3rd party app in the PKG field.
1972 ACTION_QS_EDIT_MOVE_SPEC = 364;
1973 ACTION_QS_EDIT_MOVE = 365;
1974
1975 // Long-press on a QS tile. Tile spec in package field.
1976 ACTION_QS_LONG_PRESS = 366;
1977
Anna Galuszadad131f2016-03-22 13:49:02 -07001978 // OPEN: SUW Welcome Screen -> Vision Settings
1979 // CATEGORY: SETTINGS
1980 // OS: N
1981 SUW_ACCESSIBILITY = 367;
1982
Casey Burkhardtf4e98032017-03-22 22:52:24 -07001983 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gestures (Renamed in O)
1984 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with triple-tap
1985 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification -> Magnify with button
Anna Galuszadad131f2016-03-22 13:49:02 -07001986 // ACTION: New magnification gesture configuration is chosen
1987 // SUBTYPE: 0 is off, 1 is on
1988 // CATEGORY: SETTINGS
1989 // OS: N
1990 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1991
1992 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1993 // ACTION: New font size is chosen
1994 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1995 // CATEGORY: SETTINGS
1996 // OS: N
1997 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1998
1999 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2000 // ACTION: New display size is chosen
2001 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2002 // CATEGORY: SETTINGS
2003 // OS: N
2004 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2005
2006 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2007 // ACTION: New screen reader configuration is chosen
2008 // SUBTYPE: 0 is off, 1 is on
2009 // CATEGORY: SETTINGS
2010 // OS: N
2011 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2012
Jason Monkc3620392016-03-30 15:46:03 -04002013 // ------- Begin N Settings conditionals -----
2014 // Conditionals are the green bars at the top of the settings dashboard
2015 // All conditionals will have visible/hide events onResume/onPause
2016 // but they will also be used as extra ints in the
2017 // dismiss/expand/collapse/click/button events
2018
2019 // swipe away conditional
2020 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2021
2022 // click on collapsed conditional or clicks expand button
2023 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2024
2025 // click collapse button on expanded conditional
2026 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2027
2028 // click main area of expanded conditional
2029 ACTION_SETTINGS_CONDITION_CLICK = 375;
2030
2031 // click a direct button on expanded conditional
2032 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2033
2034 // Airplane mode on
2035 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2036 // AKA Data saver on
2037 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2038 // Battery saver on
2039 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2040 // Cellular data off
2041 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2042 // Do not disturb on
2043 SETTINGS_CONDITION_DND = 381;
2044 // Hotspot on
2045 SETTINGS_CONDITION_HOTSPOT = 382;
2046 // Work profile off
2047 SETTINGS_CONDITION_WORK_MODE = 383;
2048
Jason Monk1b5d87b2016-03-30 16:03:15 -04002049 // ------- Begin N Settings suggestions -----
2050 // Since suggestions come from system apps, suggestions will
2051 // have generic constants and the package providing the suggestion
2052 // will be put in the package field. For suggestions in the Settings
2053 // package, the class name will be filled in instead (since settings
2054 // provides several suggetions).
2055
2056 // Settings shown/hidden on main settings dashboard.
2057 // These are actually visibility events, but visible/hidden doesn't
2058 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002059 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2060 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002061
2062 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002063 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002064
2065 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002066 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002067
Jason Monk397df682016-03-28 15:48:34 -04002068 // Settings > Apps > Gear > Special Access > Premium SMS access
2069 PREMIUM_SMS_ACCESS = 388;
2070
Jorim Jaggi29379ec2016-04-11 23:43:42 -07002071 // Logged when the user resizes the docked stack. Arguments:
2072 // 0: Split 50:50
2073 // 1: Docked smaller
2074 // 2: Docked larger
2075 ACTION_WINDOW_DOCK_RESIZE = 389;
2076
2077 // User exits split-screen by dragging the divider to the side of the screen. Arguments
2078 // 0: Docked gets maximized
2079 // 1: Fullscreen gets maximized
2080 ACTION_WINDOW_UNDOCK_MAX = 390;
2081
2082 // User tried to dock an unresizable app.
2083 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
2084
Julia Reynolds4d920ff2016-04-06 20:31:05 -04002085 // System UI Tuner > Other > Power notification controls
2086 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
2087
2088 // System UI Tuner > Other > Power notification controls > Toggle on/off
2089 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
2090
Chris Wren38f98812016-07-13 14:28:40 -04002091 // Action: user enable / disabled data saver using Settings
2092 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
2093 // VALUE: 1 for enabled, 0 for disabled
2094 // CATEGORY: SETTINGS
2095 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002096 ACTION_DATA_SAVER_MODE = 394;
2097
Chris Wren38f98812016-07-13 14:28:40 -04002098 // User whitelisted an app for Data Saver mode; action pass package name of app
2099 // Action: user enable / disabled data saver using Settings
2100 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
2101 // or
2102 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
2103 // VALUE: package name of APP
2104 // CATEGORY: SETTINGS
2105 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002106 ACTION_DATA_SAVER_WHITELIST = 395;
2107
Chris Wren38f98812016-07-13 14:28:40 -04002108 // User blacklisted an app for Data Saver mode; action pass package name of app
2109 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
2110 // VALUE: package name of APP
2111 // CATEGORY: SETTINGS
2112 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07002113 ACTION_DATA_SAVER_BLACKLIST = 396;
2114
Adrian Roosceeb04c2016-04-25 14:00:54 -07002115 // User opened a remote input view associated with a notification. Passes package name of app
2116 // that posted the notification. Note that this can also happen transiently during notification
2117 // reinflation.
2118 ACTION_REMOTE_INPUT_OPEN = 397;
2119
2120 // User attempt to send data through a remote input view associated with a notification.
2121 // Passes package name of app that posted the notification. May succeed or fail.
2122 ACTION_REMOTE_INPUT_SEND = 398;
2123
2124 // Failed attempt to send data through a remote input view associated with a
2125 // notification. Passes package name of app that posted the notification.
2126 ACTION_REMOTE_INPUT_FAIL = 399;
2127
2128 // User closed a remote input view associated with a notification. Passes package name of app
2129 // that posted the notification. Note that this can also happen transiently during notification
2130 // reinflation.
2131 ACTION_REMOTE_INPUT_CLOSE = 400;
2132
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002133 // OPEN: Settings > Accounts > Work profile settings
2134 // CATEGORY: SETTINGS
2135 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2136
Jason Monk25118d12016-05-10 13:25:50 -04002137 // Settings -> Dev options -> Convert to file encryption
2138 CONVERT_FBE = 402;
2139
2140 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2141 CONVERT_FBE_CONFIRM = 403;
2142
2143 // Settings -> Dev options -> Running services
2144 RUNNING_SERVICES = 404;
2145
Jason Monka1f697f2016-05-06 15:09:44 -04002146 // The dialog shown by 3P intent to change current webview implementation.
2147 WEBVIEW_IMPLEMENTATION = 405;
2148
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002149 // Settings launched from expanded quick settings.
2150 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2151
Chris Wren698b1702016-05-23 11:16:32 -04002152 // Notification expansion state toggled by the expand affordance.
2153 ACTION_NOTIFICATION_EXPANDER = 407;
2154
2155 // Notification group expansion state toggled by the expand affordance.
2156 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2157
Chris Wren7ee84182016-05-27 13:34:02 -04002158
Chris Wren6abeeb92016-05-26 14:44:38 -04002159 // Notification expansion state toggled by the expand gesture.
2160 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2161
2162 // Notification group expansion state toggled by the expand gesture.
2163 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2164
Bhavik Singh3451da42016-06-01 18:25:59 -07002165 // User performs gesture that activates the ambient display
2166 // 1: Gesture performed is Nudge
2167 // 2: Gesture performed is Pickup
2168 // 4: Gesture performed is Double Tap
2169 ACTION_AMBIENT_GESTURE = 411;
2170
Jason Monk9fa5f822016-05-11 10:26:31 -04002171 // ---- End N Constants, all N constants go above this line ----
2172
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002173 // ------- Begin N App Disambig Shade -----
2174 // Application disambig shade opened or closed with a featured app.
2175 // These are actually visibility events, but visible/hidden doesn't
2176 // take a package, so these are being logged as actions.
2177 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002178 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2179 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002180
2181 // Application disambig shade opened or closed without a featured app.
2182 // These are actually visibility events, but visible/hidden doesn't
2183 // take a package, so these are being logged as actions.
2184 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002185 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2186 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002187
2188 // User opens in an app by pressing “Always” in the application disambig shade.
2189 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002190 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002191
2192 // User opens in an app by pressing “Just Once” in the application disambig shade.
2193 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002194 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002195
2196 // User opens in an app by tapping on its name in the application disambig shade.
2197 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002198 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002199
Daniel Nishi010aa492016-05-11 09:42:24 -07002200 // OPEN: Settings > Internal storage > Storage manager
2201 // CATEGORY: SETTINGS
2202 STORAGE_MANAGER_SETTINGS = 458;
2203
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002204 // OPEN: Settings -> Gestures
2205 // CATEGORY: SETTINGS
2206 SETTINGS_GESTURES = 459;
2207
Daniel Nishi597e67f2016-05-18 13:56:13 -07002208 // ------ Begin Deletion Helper ------
2209 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2210 // SUBTYPE: false is off, true is on
2211 // CATEGORY: SETTINGS
2212 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002213
Daniel Nishi597e67f2016-05-18 13:56:13 -07002214 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2215 // SUBTYPE: false is off, true is on
2216 // CATEGORY: SETTINGS
2217 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2218
2219 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2220 // CATEGORY: SETTINGS
2221 // PACKAGE: Unchecked app
2222 ACTION_DELETION_SELECTION_APP_ON = 462;
2223
2224 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2225 // CATEGORY: SETTINGS
2226 // PACKAGE: Checked app
2227 ACTION_DELETION_SELECTION_APP_OFF = 463;
2228
2229 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2230 // SUBTYPE: false is expanded, true is collapsed
2231 // CATEGORY: SETTINGS
2232 ACTION_DELETION_APPS_COLLAPSED = 464;
2233
2234 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2235 // SUBTYPE: false is off, true is on
2236 // CATEGORY: SETTINGS
2237 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2238
2239 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2240 // SUBTYPE: false is expanded, true is collapsed
2241 // CATEGORY: SETTINGS
2242 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2243
2244 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2245 // CATEGORY: SETTINGS
2246 ACTION_DELETION_HELPER_CLEAR = 467;
2247
2248 // ACTION: Settings > Storage > Free Up Space > Cancel
2249 // CATEGORY: SETTINGS
2250 ACTION_DELETION_HELPER_CANCEL = 468;
2251
2252 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2253 // CATEGORY: SETTINGS
2254 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2255
2256 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2257 // CATEGORY: SETTINGS
2258 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2259
2260 // Deletion helper encountered an error during package deletion.
2261 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2262
2263 // Deletion helper encountered an error during downloads folder deletion.
2264 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2265
2266 // Deletion helper encountered an error during photo and video deletion.
2267 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2268
Fan Zhang5e956e82016-05-06 10:51:47 -07002269 // OPEN: Settings (root page if there are multiple tabs)
2270 // CATEGORY: SETTINGS
2271 DASHBOARD_CONTAINER = 474;
2272
2273 // OPEN: Settings -> SUPPORT TAB
2274 // CATEGORY: SETTINGS
2275 SUPPORT_FRAGMENT = 475;
2276
2277 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002278 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002279 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002280
2281 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002282 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002283 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2284
Fan Zhanga1985502016-06-16 16:48:38 -07002285 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002286 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002287 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2288
2289 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002290 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002291 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2292
2293 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002294 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002295 ACTION_SUPPORT_SIGN_IN = 480;
2296
2297 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002298 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002299 ACTION_SUPPORT_PHONE = 481;
2300
2301 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002302 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002303 ACTION_SUPPORT_CHAT = 482;
2304
2305 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002306 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002307 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2308
2309 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002310 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002311 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2312
Fan Zhang80807212016-06-30 12:26:55 -07002313 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002314 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002315 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2316
2317 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002318 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002319 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2320
2321 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002322 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002323 ACTION_SUPPORT_DIAL_TOLLED = 487;
2324
Justin Klaassen19494272016-07-18 21:38:24 -07002325 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002326 // CATEGORY: SETTINGS
2327 NIGHT_DISPLAY_SETTINGS = 488;
2328
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002329 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002330 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002331 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2332
Jason Monk484fd362016-07-13 15:24:32 -04002333 // Settings launched from collapsed quick settings.
2334 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2335
Justin Klaassen19494272016-07-18 21:38:24 -07002336 // OPEN: QS Night Light tile shown
2337 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002338 // SUBTYPE: 0 is off, 1 is on
2339 // CATEGORY: QUICK_SETTINGS
2340 QS_NIGHT_DISPLAY = 491;
2341
Justin Klaassen19494272016-07-18 21:38:24 -07002342 // Night Light on
2343 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2344
Doris Ling3c00afb2016-07-19 17:04:21 -07002345 // System navigation key up.
2346 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2347
2348 // System navigation key down.
2349 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2350
Doris Ling6dd3e462016-08-04 13:17:27 -07002351 // OPEN: Settings > Display -> Ambient Display
2352 // CATEGORY: SETTINGS
2353 ACTION_AMBIENT_DISPLAY = 495;
2354
Adrian Roos159ef7b2016-02-25 11:58:32 -08002355 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2356
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002357 // ACTION: The lockscreen gets shown because the SIM card was removed
2358 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2359 // CATEGORY: GLOBAL_SYSTEM_UI
2360 // OS: N-MR2
2361 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2362
2363 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2364
Clara Bayarric17a5982016-04-15 12:26:47 +01002365 // ------- Begin N Keyboard Shortcuts Helper -----
2366 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002367 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002368
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002369 // OPEN: Print Preview screen
2370 // Package: Package of app where print job is from
2371 PRINT_PREVIEW = 501;
2372
2373 // OPEN: User expands full print job options shade in print preview.
2374 PRINT_JOB_OPTIONS = 502;
2375
2376 // OPEN: “All Printers” screen for selecting printer
2377 // Subtype: # of printers listed
2378 PRINT_ALL_PRINTERS = 503;
2379
2380 // OPEN: “Add Printers” screen for adding printers
2381 // Subtype: # of enabled print service listed
2382 PRINT_ADD_PRINTERS = 504;
2383
2384 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2385 // Package: Package of print service.
2386 ACTION_PRINT = 505;
2387
2388 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2389 // Count all ACTION_PRINTER_SELECT_ALL actions.
2390 // Package: Package of print service tied to printer
2391 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2392
2393 // ACTION: User selects a printer from the “All printers” screen.
2394 // Package: Package of print service tied to printer
2395 ACTION_PRINTER_SELECT_ALL = 507;
2396
2397 // ACTION: User changes an option for the print job from print preview.
2398 // Subtype: 1: Copies
2399 // 2: Color mode
2400 // 3: Duplex mode
2401 // 4: Media (==Paper) size
2402 // 5: Orientation
2403 // 6: Page range
2404 // Package: Package of print service tied to printer
2405 ACTION_PRINT_JOB_OPTIONS = 508;
2406
2407 // ACTION: User searches for printer from All Printers
2408 ACTION_PRINTER_SEARCH = 509;
2409
2410 // ACTION: User selects “Add print service” button from All Printers
2411 ACTION_PRINT_SERVICE_ADD = 510;
2412
2413 // ACTION: User Enables/Disables Print Service via any means.
2414 // Subtype: 0: Enabled
2415 // 1: Disabled
2416 ACTION_PRINT_SERVICE_TOGGLE = 511;
2417
2418 // ACTION: User installs print recommended print service
2419 // Package: Package of print service
2420 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2421
Doris Ling88a6b162016-08-08 16:17:43 -07002422 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2423 // SUBTYPE: sub settings classname
2424 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2425
Fan Zhang92c60382016-08-08 14:03:53 -07002426 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2427 USER_DICTIONARY_SETTINGS = 514;
2428
2429 // OPEN: Settings > Date & time > Select time zone
2430 ZONE_PICKER = 515;
2431
2432 // OPEN: Settings > Security > Device administrators
2433 DEVICE_ADMIN_SETTINGS = 516;
2434
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002435 // ACTION: Managed provisioning was launched to set this package as DPC app.
2436 // PACKAGE: DPC's package name.
2437 PROVISIONING_DPC_PACKAGE_NAME = 517;
2438
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002439 // ACTION: Managed provisioning triggered DPC installation.
2440 // PACKAGE: Package name of package which installed DPC.
2441 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2442
2443 // ACTION: Logged when provisioning activity finishes.
2444 // TIME: Indicates time taken by provisioning activity to finish in MS.
2445 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2446
2447 // ACTION: Logged when preprovisioning activity finishes.
2448 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2449 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2450
2451 // ACTION: Logged when encrypt device activity finishes.
2452 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2453 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2454
2455 // ACTION: Logged when web activity finishes.
2456 // TIME: Indicates total time taken by web activity to finish in MS.
2457 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2458
2459 // ACTION: Logged when trampoline activity finishes.
2460 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2461 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2462
2463 // ACTION: Logged when encryption activity finishes.
2464 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2465 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2466
2467 // ACTION: Logged when finalization activity finishes.
2468 // TIME: Indicates time taken by finalization activity to finish in MS.
2469 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002470
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002471 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002472 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002473
Fan Zhang95094182016-08-24 18:14:16 -07002474 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002475 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002476
2477 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002478 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002479
2480 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002481 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002482
2483 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002484 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002485
2486 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002487 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002488
Fan Zhangc1352ae2016-09-16 12:46:11 -07002489 // OPEN: Settings > Security > Use one lock dialog
2490 DIALOG_UNIFICATION_CONFIRMATION = 532;
2491
2492 // OPEN: Settings > Security > User Credential
2493 DIALOG_USER_CREDENTIAL = 533;
2494
2495 // OPEN: Settings > Accounts > Remove account
2496 DIALOG_REMOVE_USER = 534;
2497
2498 // OPEN: Settings > Accounts > Confirm auto sync dialog
2499 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2500
2501 // OPEN: Settings > Apps > Dialog for running service details
2502 DIALOG_RUNNIGN_SERVICE = 536;
2503
2504 // OPEN: Settings > Dialog for hiding home settings
2505 DIALOG_NO_HOME = 537;
2506
2507 // OPEN: Settings > Bluetooth > Rename this device
2508 DIALOG_BLUETOOTH_RENAME = 538;
2509
2510 // OPEN: Settings > Bluetooth > Paired device profile
2511 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2512
2513 // OPEN: Settings > Battery optimization > details for app
2514 DIALOG_HIGH_POWER_DETAILS = 540;
2515
2516 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2517 DIALOG_KEYBOARD_LAYOUT = 541;
2518
2519 // OPEN: Settings > Wifi > WPS Setup dialog
2520 DIALOG_WPS_SETUP = 542;
2521
2522 // OPEN: Settings > WIFI Scan permission dialog
2523 DIALOG_WIFI_SCAN_MODE = 543;
2524
2525 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2526 DIALOG_WIFI_SKIP = 544;
2527
2528 // OPEN: Settings > Wireless > VPN > Config dialog
2529 DIALOG_LEGACY_VPN_CONFIG = 545;
2530
2531 // OPEN: Settings > Wireless > VPN > Config dialog for app
2532 DIALOG_VPN_APP_CONFIG = 546;
2533
2534 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2535 DIALOG_VPN_CANNOT_CONNECT = 547;
2536
2537 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2538 DIALOG_VPN_REPLACE_EXISTING = 548;
2539
2540 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2541 DIALOG_BILLING_CYCLE = 549;
2542
2543 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2544 DIALOG_BILLING_BYTE_LIMIT = 550;
2545
2546 // OPEN: Settings > Billing cycle > turn on data limit dialog
2547 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2548
2549 // OPEN: Settings > Service > Turn off notification access dialog
2550 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2551
2552 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2553 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2554
2555 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2556 DIALOG_ZEN_ACCESS_GRANT = 554;
2557
2558 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2559 DIALOG_ZEN_ACCESS_REVOKE = 555;
2560
2561 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2562 DIALOG_ZEN_TIMEPICKER = 556;
2563
2564 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2565 DIALOG_SERVICE_ACCESS_WARNING = 557;
2566
2567 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2568 DIALOG_APP_INFO_ACTION = 558;
2569
2570 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2571 DIALOG_VOLUME_FORGET = 559;
2572
2573 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2574 DIALOG_VOLUME_SLOW_WARNING = 560;
2575
2576 // OPEN: Settings > Storage > Dialog for initializing a volume
2577 DIALOG_VOLUME_INIT = 561;
2578
2579 // OPEN: Settings > Storage > Dialog for unmounting a volume
2580 DIALOG_VOLUME_UNMOUNT = 562;
2581
2582 // OPEN: Settings > Storage > Dialog for renaming a volume
2583 DIALOG_VOLUME_RENAME = 563;
2584
2585 // OPEN: Settings > Storage > Dialog for clear cache
2586 DIALOG_STORAGE_CLEAR_CACHE = 564;
2587
2588 // OPEN: Settings > Storage > Dialog for system info
2589 DIALOG_STORAGE_SYSTEM_INFO = 565;
2590
2591 // OPEN: Settings > Storage > Dialog for other info
2592 DIALOG_STORAGE_OTHER_INFO = 566;
2593
2594 // OPEN: Settings > Storage > Dialog for user info
2595 DIALOG_STORAGE_USER_INFO = 567;
2596
2597 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2598 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2599
2600 // OPEN: Settings > Add fingerprint > Error dialog
2601 DIALOG_FINGERPINT_ERROR = 569;
2602
2603 // OPEN: Settings > Fingerprint > Rename or delete dialog
2604 DIALOG_FINGERPINT_EDIT = 570;
2605
2606 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2607 DIALOG_FINGERPINT_DELETE_LAST = 571;
2608
2609 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2610 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2611
2612 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2613 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2614
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002615 // OPEN: Settings > Proxy Selector error dialog
2616 DIALOG_PROXY_SELECTOR_ERROR = 574;
2617
2618 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2619 DIALOG_WIFI_P2P_DISCONNECT = 575;
2620
2621 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2622 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2623
2624 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2625 DIALOG_WIFI_P2P_RENAME = 577;
2626
2627 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2628 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2629
2630 // OPEN: Settings > APN > Restore default dialog
2631 DIALOG_APN_RESTORE_DEFAULT = 579;
2632
2633 // OPEN: Settings > Dream > When to dream dialog
2634 DIALOG_DREAM_START_DELAY = 580;
2635
2636 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2637 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2638
2639 // OPEN: Settings > Tether > AP setting dialog
2640 DIALOG_AP_SETTINGS = 582;
2641
2642 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2643 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2644
2645 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2646 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2647
2648 // OPEN: Settings > Account > Remove account dialog
2649 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2650
2651 // OPEN: Settings > Account > Remove account failed dialog
2652 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2653
2654 // OPEN: Settings > Account > Cannot do onetime sync dialog
2655 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2656
2657 // OPEN: Settings > Display > Night light > Set start time dialog
2658 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2659
2660 // OPEN: Settings > Display > Night light > Set end time dialog
2661 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2662
2663 // OPEN: Settings > User > Edit info dialog
2664 DIALOG_USER_EDIT = 590;
2665
2666 // OPEN: Settings > User > Confirm remove dialog
2667 DIALOG_USER_REMOVE = 591;
2668
2669 // OPEN: Settings > User > Enable calling dialog
2670 DIALOG_USER_ENABLE_CALLING = 592;
2671
2672 // OPEN: Settings > User > Enable calling and sms dialog
2673 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2674
2675 // OPEN: Settings > User > Cannot manage device message dialog
2676 DIALOG_USER_CANNOT_MANAGE = 594;
2677
2678 // OPEN: Settings > User > Add user dialog
2679 DIALOG_USER_ADD = 595;
2680
2681 // OPEN: Settings > User > Setup user dialog
2682 DIALOG_USER_SETUP = 596;
2683
2684 // OPEN: Settings > User > Setup profile dialog
2685 DIALOG_USER_SETUP_PROFILE = 597;
2686
2687 // OPEN: Settings > User > Choose user type dialog
2688 DIALOG_USER_CHOOSE_TYPE = 598;
2689
2690 // OPEN: Settings > User > Need lockscreen dialog
2691 DIALOG_USER_NEED_LOCKSCREEN = 599;
2692
2693 // OPEN: Settings > User > Confirm exit guest mode dialog
2694 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2695
2696 // OPEN: Settings > User > Edit user profile dialog
2697 DIALOG_USER_EDIT_PROFILE = 601;
2698
2699 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2700 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2701
2702 // OPEN: Settings > Wifi > Edit AP dialog
2703 DIALOG_WIFI_AP_EDIT = 603;
2704
2705 // OPEN: Settings > Wifi > PBC Config dialog
2706 DIALOG_WIFI_PBC = 604;
2707
2708 // OPEN: Settings > Wifi > Display pin dialog
2709 DIALOG_WIFI_PIN = 605;
2710
2711 // OPEN: Settings > Wifi > Write config to NFC dialog
2712 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002713 // OPEN: Settings > Date > Date picker dialog
2714 DIALOG_DATE_PICKER = 607;
2715
2716 // OPEN: Settings > Date > Time picker dialog
2717 DIALOG_TIME_PICKER = 608;
2718
2719 // OPEN: Settings > Wireless > Manage wireless plan dialog
2720 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002721
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002722 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002723 PROVISIONING_NETWORK_TYPE = 610;
2724
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002725 // ACTION: Logs action which triggered provisioning.
2726 PROVISIONING_ACTION = 611;
2727
Mahaver Chopraab282072016-10-06 19:19:23 +01002728 // ACTION: Logs extra passed by the dpc while provisioning.
2729 PROVISIONING_EXTRA = 612;
2730
Salvador Martinez64867c12016-10-14 15:25:09 -07002731 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2732 BLUETOOTH_DIALOG_FRAGMENT = 613;
2733
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002734 // ACTION: Logs provisioning started by zero touch.
2735 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2736
2737 // ACTION: Logs provisioning started by NFC bump.
2738 PROVISIONING_ENTRY_POINT_NFC = 615;
2739
2740 // ACTION: Logs provisioning started using QR code.
2741 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2742
2743 // ACTION: Logs provisioning started using adb.
2744 PROVISIONING_ENTRY_POINT_ADB = 617;
2745
2746 // ACTION: Logs provisioning started by trusted source.
2747 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2748
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002749 // ACTION: Logged when copy account task finishes.
2750 // TIME: Indicates time taken by copy account task to finish in MS.
2751 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2752
2753 // ACTION: Logged when create profile task finishes.
2754 // TIME: Indicates time taken by create profile task to finish in MS.
2755 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2756
2757 // ACTION: Logged when start profile task finishes.
2758 // TIME: Indicates time taken by start profile task to finish in MS.
2759 PROVISIONING_START_PROFILE_TASK_MS = 621;
2760
2761 // ACTION: Logged when download package task finishes.
2762 // TIME: Indicates time taken by download package task to finish in MS.
2763 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2764
2765 // ACTION: Logged when install package task finishes.
2766 // TIME: Indicates time taken by install package task to finish in MS.
2767 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2768
2769 // ACTION: User cancelled provisioning.
2770 PROVISIONING_CANCELLED = 624;
2771
2772 // ACTION: Logged when provisioning throws an error.
2773 PROVISIONING_ERROR = 625;
2774
2775 // ACTION: Logs the status of copying user account during provisioning.
2776 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2777
2778 // ACTION: Logs the end to end time taken by all provisioning tasks.
2779 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2780
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002781 // OPEN: Settings > Privacy
2782 // CATEGORY: SETTINGS
2783 // OS: O
2784 ENTERPRISE_PRIVACY_SETTINGS = 628;
2785
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002786 // ACTION: Longpress on a TextView.
2787 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2788 // CATEGORY: TEXT_CONTROLS
2789 // OS: O
2790 TEXT_LONGPRESS = 629;
2791
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002792 // ACTION: An app requested an unknown permission
2793 // PACKAGE: The package name of the app requesting the permission
2794 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2795
2796 // ACTION: An app was granted an unknown permission
2797 // PACKAGE: The package name of the app that was granted the permission
2798 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2799
2800 // ACTION: An app requested an unknown permission and the request was denied
2801 // PACKAGE: The package name of the app requesting the permission
2802 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2803
2804 // ACTION: An unknown permission was revoked for an app
2805 // PACKAGE: The package name of the app the permission was revoked for
2806 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2807
2808 // ACTION: An app requested the permission READ_CALENDAR
2809 // PACKAGE: The package name of the app requesting the permission
2810 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2811
2812 // ACTION: An app was granted the permission READ_CALENDAR
2813 // PACKAGE: The package name of the app that was granted the permission
2814 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2815
2816 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2817 // PACKAGE: The package name of the app requesting the permission
2818 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2819
2820 // ACTION: The permission READ_CALENDAR was revoked for an app
2821 // PACKAGE: The package name of the app the permission was revoked for
2822 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2823
2824 // ACTION: An app requested the permission WRITE_CALENDAR
2825 // PACKAGE: The package name of the app requesting the permission
2826 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2827
2828 // ACTION: An app was granted the permission WRITE_CALENDAR
2829 // PACKAGE: The package name of the app that was granted the permission
2830 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2831
2832 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2833 // PACKAGE: The package name of the app requesting the permission
2834 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2835
2836 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2837 // PACKAGE: The package name of the app the permission was revoked for
2838 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2839
2840 // ACTION: An app requested the permission CAMERA
2841 // PACKAGE: The package name of the app requesting the permission
2842 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2843
2844 // ACTION: An app was granted the permission CAMERA
2845 // PACKAGE: The package name of the app that was granted the permission
2846 ACTION_PERMISSION_GRANT_CAMERA = 643;
2847
2848 // ACTION: An app requested the permission CAMERA and the request was denied
2849 // PACKAGE: The package name of the app requesting the permission
2850 ACTION_PERMISSION_DENIED_CAMERA = 644;
2851
2852 // ACTION: The permission CAMERA was revoked for an app
2853 // PACKAGE: The package name of the app the permission was revoked for
2854 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2855
2856 // ACTION: An app requested the permission READ_CONTACTS
2857 // PACKAGE: The package name of the app requesting the permission
2858 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2859
2860 // ACTION: An app was granted the permission READ_CONTACTS
2861 // PACKAGE: The package name of the app that was granted the permission
2862 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2863
2864 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2865 // PACKAGE: The package name of the app requesting the permission
2866 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2867
2868 // ACTION: The permission READ_CONTACTS was revoked for an app
2869 // PACKAGE: The package name of the app the permission was revoked for
2870 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2871
2872 // ACTION: An app requested the permission WRITE_CONTACTS
2873 // PACKAGE: The package name of the app requesting the permission
2874 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2875
2876 // ACTION: An app was granted the permission WRITE_CONTACTS
2877 // PACKAGE: The package name of the app that was granted the permission
2878 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2879
2880 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2881 // PACKAGE: The package name of the app requesting the permission
2882 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2883
2884 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2885 // PACKAGE: The package name of the app the permission was revoked for
2886 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2887
2888 // ACTION: An app requested the permission GET_ACCOUNTS
2889 // PACKAGE: The package name of the app requesting the permission
2890 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2891
2892 // ACTION: An app was granted the permission GET_ACCOUNTS
2893 // PACKAGE: The package name of the app that was granted the permission
2894 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2895
2896 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2897 // PACKAGE: The package name of the app requesting the permission
2898 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2899
2900 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2901 // PACKAGE: The package name of the app the permission was revoked for
2902 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2903
2904 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2905 // PACKAGE: The package name of the app requesting the permission
2906 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2907
2908 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2909 // PACKAGE: The package name of the app that was granted the permission
2910 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2911
2912 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2913 // PACKAGE: The package name of the app requesting the permission
2914 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2915
2916 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2917 // PACKAGE: The package name of the app the permission was revoked for
2918 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2919
2920 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2921 // PACKAGE: The package name of the app requesting the permission
2922 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2923
2924 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2925 // PACKAGE: The package name of the app that was granted the permission
2926 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2927
2928 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2929 // PACKAGE: The package name of the app requesting the permission
2930 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2931
2932 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2933 // PACKAGE: The package name of the app the permission was revoked for
2934 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2935
2936 // ACTION: An app requested the permission RECORD_AUDIO
2937 // PACKAGE: The package name of the app requesting the permission
2938 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2939
2940 // ACTION: An app was granted the permission RECORD_AUDIO
2941 // PACKAGE: The package name of the app that was granted the permission
2942 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2943
2944 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2945 // PACKAGE: The package name of the app requesting the permission
2946 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2947
2948 // ACTION: The permission RECORD_AUDIO was revoked for an app
2949 // PACKAGE: The package name of the app the permission was revoked for
2950 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2951
2952 // ACTION: An app requested the permission READ_PHONE_STATE
2953 // PACKAGE: The package name of the app requesting the permission
2954 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2955
2956 // ACTION: An app was granted the permission READ_PHONE_STATE
2957 // PACKAGE: The package name of the app that was granted the permission
2958 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2959
2960 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2961 // PACKAGE: The package name of the app requesting the permission
2962 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2963
2964 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2965 // PACKAGE: The package name of the app the permission was revoked for
2966 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2967
2968 // ACTION: An app requested the permission CALL_PHONE
2969 // PACKAGE: The package name of the app requesting the permission
2970 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2971
2972 // ACTION: An app was granted the permission CALL_PHONE
2973 // PACKAGE: The package name of the app that was granted the permission
2974 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2975
2976 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2977 // PACKAGE: The package name of the app requesting the permission
2978 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2979
2980 // ACTION: The permission CALL_PHONE was revoked for an app
2981 // PACKAGE: The package name of the app the permission was revoked for
2982 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2983
2984 // ACTION: An app requested the permission READ_CALL_LOG
2985 // PACKAGE: The package name of the app requesting the permission
2986 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2987
2988 // ACTION: An app was granted the permission READ_CALL_LOG
2989 // PACKAGE: The package name of the app that was granted the permission
2990 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2991
2992 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2993 // PACKAGE: The package name of the app requesting the permission
2994 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2995
2996 // ACTION: The permission READ_CALL_LOG was revoked for an app
2997 // PACKAGE: The package name of the app the permission was revoked for
2998 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2999
3000 // ACTION: An app requested the permission WRITE_CALL_LOG
3001 // PACKAGE: The package name of the app requesting the permission
3002 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
3003
3004 // ACTION: An app was granted the permission WRITE_CALL_LOG
3005 // PACKAGE: The package name of the app that was granted the permission
3006 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
3007
3008 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
3009 // PACKAGE: The package name of the app requesting the permission
3010 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
3011
3012 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
3013 // PACKAGE: The package name of the app the permission was revoked for
3014 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
3015
3016 // ACTION: An app requested the permission ADD_VOICEMAIL
3017 // PACKAGE: The package name of the app requesting the permission
3018 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
3019
3020 // ACTION: An app was granted the permission ADD_VOICEMAIL
3021 // PACKAGE: The package name of the app that was granted the permission
3022 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
3023
3024 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
3025 // PACKAGE: The package name of the app requesting the permission
3026 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
3027
3028 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
3029 // PACKAGE: The package name of the app the permission was revoked for
3030 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
3031
3032 // ACTION: An app requested the permission USE_SIP
3033 // PACKAGE: The package name of the app requesting the permission
3034 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
3035
3036 // ACTION: An app was granted the permission USE_SIP
3037 // PACKAGE: The package name of the app that was granted the permission
3038 ACTION_PERMISSION_GRANT_USE_SIP = 691;
3039
3040 // ACTION: An app requested the permission USE_SIP and the request was denied
3041 // PACKAGE: The package name of the app requesting the permission
3042 ACTION_PERMISSION_DENIED_USE_SIP = 692;
3043
3044 // ACTION: The permission USE_SIP was revoked for an app
3045 // PACKAGE: The package name of the app the permission was revoked for
3046 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
3047
3048 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
3049 // PACKAGE: The package name of the app requesting the permission
3050 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
3051
3052 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
3053 // PACKAGE: The package name of the app that was granted the permission
3054 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
3055
3056 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
3057 // PACKAGE: The package name of the app requesting the permission
3058 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
3059
3060 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
3061 // PACKAGE: The package name of the app the permission was revoked for
3062 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
3063
3064 // ACTION: An app requested the permission READ_CELL_BROADCASTS
3065 // PACKAGE: The package name of the app requesting the permission
3066 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
3067
3068 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
3069 // PACKAGE: The package name of the app that was granted the permission
3070 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
3071
3072 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
3073 // PACKAGE: The package name of the app requesting the permission
3074 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
3075
3076 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
3077 // PACKAGE: The package name of the app the permission was revoked for
3078 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
3079
3080 // ACTION: An app requested the permission BODY_SENSORS
3081 // PACKAGE: The package name of the app requesting the permission
3082 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
3083
3084 // ACTION: An app was granted the permission BODY_SENSORS
3085 // PACKAGE: The package name of the app that was granted the permission
3086 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
3087
3088 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
3089 // PACKAGE: The package name of the app requesting the permission
3090 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
3091
3092 // ACTION: The permission BODY_SENSORS was revoked for an app
3093 // PACKAGE: The package name of the app the permission was revoked for
3094 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
3095
3096 // ACTION: An app requested the permission SEND_SMS
3097 // PACKAGE: The package name of the app requesting the permission
3098 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
3099
3100 // ACTION: An app was granted the permission SEND_SMS
3101 // PACKAGE: The package name of the app that was granted the permission
3102 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
3103
3104 // ACTION: An app requested the permission SEND_SMS and the request was denied
3105 // PACKAGE: The package name of the app requesting the permission
3106 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
3107
3108 // ACTION: The permission SEND_SMS was revoked for an app
3109 // PACKAGE: The package name of the app the permission was revoked for
3110 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
3111
3112 // ACTION: An app requested the permission RECEIVE_SMS
3113 // PACKAGE: The package name of the app requesting the permission
3114 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
3115
3116 // ACTION: An app was granted the permission RECEIVE_SMS
3117 // PACKAGE: The package name of the app that was granted the permission
3118 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3119
3120 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3121 // PACKAGE: The package name of the app requesting the permission
3122 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3123
3124 // ACTION: The permission RECEIVE_SMS was revoked for an app
3125 // PACKAGE: The package name of the app the permission was revoked for
3126 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3127
3128 // ACTION: An app requested the permission READ_SMS
3129 // PACKAGE: The package name of the app requesting the permission
3130 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3131
3132 // ACTION: An app was granted the permission READ_SMS
3133 // PACKAGE: The package name of the app that was granted the permission
3134 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3135
3136 // ACTION: An app requested the permission READ_SMS and the request was denied
3137 // PACKAGE: The package name of the app requesting the permission
3138 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3139
3140 // ACTION: The permission READ_SMS was revoked for an app
3141 // PACKAGE: The package name of the app the permission was revoked for
3142 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3143
3144 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3145 // PACKAGE: The package name of the app requesting the permission
3146 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3147
3148 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3149 // PACKAGE: The package name of the app that was granted the permission
3150 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3151
3152 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3153 // PACKAGE: The package name of the app requesting the permission
3154 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3155
3156 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3157 // PACKAGE: The package name of the app the permission was revoked for
3158 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3159
3160 // ACTION: An app requested the permission RECEIVE_MMS
3161 // PACKAGE: The package name of the app requesting the permission
3162 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3163
3164 // ACTION: An app was granted the permission RECEIVE_MMS
3165 // PACKAGE: The package name of the app that was granted the permission
3166 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3167
3168 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3169 // PACKAGE: The package name of the app requesting the permission
3170 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3171
3172 // ACTION: The permission RECEIVE_MMS was revoked for an app
3173 // PACKAGE: The package name of the app the permission was revoked for
3174 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3175
3176 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3177 // PACKAGE: The package name of the app requesting the permission
3178 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3179
3180 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3181 // PACKAGE: The package name of the app that was granted the permission
3182 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3183
3184 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3185 // PACKAGE: The package name of the app requesting the permission
3186 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3187
3188 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3189 // PACKAGE: The package name of the app the permission was revoked for
3190 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3191
3192 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3193 // PACKAGE: The package name of the app requesting the permission
3194 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3195
3196 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3197 // PACKAGE: The package name of the app that was granted the permission
3198 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3199
3200 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3201 // PACKAGE: The package name of the app requesting the permission
3202 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3203
3204 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3205 // PACKAGE: The package name of the app the permission was revoked for
3206 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3207
Mahaverfa6566e2016-11-29 21:08:14 +00003208 // ACTION: Logged when a provisioning session has started
3209 PROVISIONING_SESSION_STARTED = 734;
3210
3211 // ACTION: Logged when a provisioning session has completed
3212 PROVISIONING_SESSION_COMPLETED = 735;
3213
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003214 // ACTION: An app requested the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003215 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003216 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBERS = 736;
Chad Brubaker811825a2016-12-06 12:31:15 -08003217
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003218 // ACTION: An app was granted the permission READ_PHONE_NUMBERS
Chad Brubaker811825a2016-12-06 12:31:15 -08003219 // PACKAGE: The package name of the app that was granted the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003220 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBERS = 737;
Chad Brubaker811825a2016-12-06 12:31:15 -08003221
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003222 // ACTION: An app requested the permission READ_PHONE_NUMBERS and the request was denied
Chad Brubaker811825a2016-12-06 12:31:15 -08003223 // PACKAGE: The package name of the app requesting the permission
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003224 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBERS = 738;
Chad Brubaker811825a2016-12-06 12:31:15 -08003225
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003226 // ACTION: The permission READ_PHONE_NUMBERS was revoked for an app
Chad Brubaker811825a2016-12-06 12:31:15 -08003227 // PACKAGE: The package name of the app the permission was revoked for
Chad Brubaker0c1651f2017-03-30 16:29:10 -07003228 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBERS = 739;
Chad Brubaker811825a2016-12-06 12:31:15 -08003229
Santos Cordon3107d292016-09-20 15:50:35 -07003230 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3231 // SUBTYPE: slider value
3232 // CATEGORY: QUICK_SETTINGS
3233 // OS: 6.0
3234 ACTION_BRIGHTNESS_FOR_VR = 498;
3235
Hugo Benichie1cbf152016-12-08 09:36:52 +09003236 // ACTION: A captive portal was detected during network validation
3237 // CATEGORY: NOTIFICATION
3238 // OS: N-MR2
3239 NOTIFICATION_NETWORK_SIGN_IN = 740;
3240
3241 // ACTION: An unvalidated network without Internet was selected by the user
3242 // CATEGORY: NOTIFICATION
3243 // OS: N-MR2
3244 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3245
3246 // ACTION: A validated network failed revalidation and lost Internet access
3247 // CATEGORY: NOTIFICATION
3248 // OS: N-MR2
3249 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3250
3251 // ACTION: The system default network switched to a different network
3252 // CATEGORY: NOTIFICATION
3253 // OS: N-MR2
3254 NOTIFICATION_NETWORK_SWITCH = 743;
3255
Fan Zhang074c4cb2016-12-21 12:10:33 -08003256 // OPEN: Settings > System
3257 SETTINGS_SYSTEM_CATEGORY = 744;
3258
3259 // OPEN: Settings > Storage
3260 SETTINGS_STORAGE_CATEGORY = 745;
3261
3262 // OPEN: Settings > Network & Internet
3263 SETTINGS_NETWORK_CATEGORY = 746;
3264
3265 // OPEN: Settings > Connected Device
3266 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3267
3268 // OPEN: Settings > App & Notification
3269 SETTINGS_APP_NOTIF_CATEGORY = 748;
3270
3271 // OPEN: Settings > System > Input & Gesture
3272 SETTINGS_INPUT_CATEGORY = 749;
3273
3274 // OPEN: Settings > System > Language & Region
3275 SETTINGS_LANGUAGE_CATEGORY = 750;
3276
3277 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3278 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3279
3280 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3281 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3282
3283 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3284 SETTINGS_GESTURE_PICKUP = 753;
3285
3286 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3287 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3288
3289 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3290 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3291
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003292 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3293 // CATEGORY: Settings
3294 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3295
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003296 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003297 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003298 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3299 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3300 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003301
Salvador Martinezc43ab062016-12-21 11:09:11 -08003302 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3303 // user accepted
3304 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054dc2016-12-13 14:38:01 -05003305
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003306 // Enclosing category for group of APP_TRANSITION_FOO events,
3307 // logged when we execute an app transition.
3308 APP_TRANSITION = 761;
3309
Fan Zhang945deea2017-01-11 16:37:49 -08003310 // ACTION: User leaves Settings search UI without entering any query.
3311 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3312
3313 // ACTION: Clicking on any search result in Settings.
3314 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003315
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003316 // ACTION: Allow Battery optimization for an app
3317 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3318
3319 // ACTION: Deny Battery optimization for an app
3320 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3321
3322 // ACTION: Enable Device Admin app
3323 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3324
3325 // ACTION: Disable Device Admin app
3326 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3327
3328 // ACTION: Allow "Do Not Disturb access" for an app
3329 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3330
3331 // ACTION: Deny "Do Not Disturb access" for an app
3332 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3333
3334 // ACTION: Allow "Draw over other apps" for an app
3335 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3336
Christine Franks47175c32017-03-14 10:21:25 -07003337 // ACTION: Deny "Display over other apps" for an app
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003338 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3339
3340 // ACTION: Allow "VR helper services" for an app
3341 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3342
3343 // ACTION: Deny "VR helper services" for an app
3344 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3345
3346 // ACTION: Allow "Modify system settings" for an app
3347 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3348
3349 // ACTION: Deny "Modify system settings" for an app
3350 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3351
3352 // ACTION: Allow "Notification access" for an app
3353 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3354
3355 // ACTION: Deny "Notification access" for an app
3356 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3357
3358 // ACTION: "Premium SMS access" for an app - "ask user" option
3359 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3360
3361 // ACTION: "Premium SMS access" for an app - "never allow" option
3362 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3363
3364 // ACTION: "Premium SMS access" for an app - "always allow" option
3365 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3366
3367 // ACTION: Allow "Unrestricted data access" for an app
3368 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3369
3370 // ACTION: Deny "Unrestricted data access" for an app
3371 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3372
3373 // ACTION: Allow "Usage access" for an app
3374 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3375
3376 // ACTION: Deny "Usage access" for an app
3377 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3378
Fan Zhangad5dacc2017-01-18 14:18:54 -08003379 // OPEN: Settings > Apps > Default Apps > Default browser
3380 DEFAULT_BROWSER_PICKER = 785;
3381
3382 // OPEN: Settings > Apps > Default Apps > Default emergency app
3383 DEFAULT_EMERGENCY_APP_PICKER = 786;
3384
3385 // OPEN: Settings > Apps > Default Apps > Default home
3386 DEFAULT_HOME_PICKER = 787;
3387
3388 // OPEN: Settings > Apps > Default Apps > Default phone
3389 DEFAULT_PHONE_PICKER = 788;
3390
3391 // OPEN: Settings > Apps > Default Apps > Default sms
3392 DEFAULT_SMS_PICKER = 789;
3393
3394 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3395 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3396
3397 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3398 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3399
Jason Long1b51da62017-01-24 11:35:31 -08003400 // OPEN: Settings > Apps > Default Apps > Default autofill app
3401 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003402
Chris Wren26ca65d2016-11-29 10:43:28 -05003403 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003404 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003405 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3406 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3407 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3408 NOTIFICATION_ID = 796;
3409 NOTIFICATION_TAG = 797;
3410 NOTIFICATION_SHADE_INDEX = 798;
3411 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003412
Anas Karbilaf7648f42016-12-11 00:55:02 +01003413 // OPEN: QS NFC tile shown
3414 // ACTION: QS NFC tile tapped
3415 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003416 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003417
Chris Wren26ca65d2016-11-29 10:43:28 -05003418 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003419 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003420 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3421 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3422 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3423 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3424 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3425 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3426
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003427 // ACTION: "Force stop" action on an app
3428 ACTION_APP_FORCE_STOP = 807;
3429
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003430 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3431 // CATEGORY: SETTINGS
3432 // OS: 8.0
3433 MANAGE_EXTERNAL_SOURCES = 808;
3434
Mahaver6cd47162017-01-23 09:59:33 +00003435 // ACTION: Logged when terms activity finishes.
3436 // TIME: Indicates time taken by terms activity to finish in MS.
3437 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3438
3439 // Indicates number of terms displayed on the terms screen.
3440 PROVISIONING_TERMS_COUNT = 810;
3441
3442 // Indicates number of terms read on the terms screen.
3443 PROVISIONING_TERMS_READ = 811;
3444
Winson Chung59fda9e2017-01-20 16:14:51 -08003445 // Logs that the user has edited the picture-in-picture settings.
3446 // CATEGORY: SETTINGS
3447 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3448
Winson Chungf4ac0632017-03-17 12:34:12 -07003449 // ACTION: Allow "Enable picture-in-picture" for an app
3450 APP_PICTURE_IN_PICTURE_ALLOW = 813;
Winson Chung59fda9e2017-01-20 16:14:51 -08003451
Winson Chungf4ac0632017-03-17 12:34:12 -07003452 // ACTION: Deny "Enable picture-in-picture" for an app
3453 APP_PICTURE_IN_PICTURE_DENY = 814;
Winson Chung59fda9e2017-01-20 16:14:51 -08003454
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003455 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3456 // CATEGORY: SETTINGS
3457 // OS: 8.0
3458 TTS_SLIDERS = 815;
3459
Jason Monk524fb402017-01-25 10:33:31 -05003460 // ACTION: Settings -> Display -> Theme
3461 ACTION_THEME = 816;
3462
chchaob8e253a2017-01-25 12:12:09 -08003463 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3464 // ACTION: Select to Speak configuration is chosen
3465 // SUBTYPE: 0 is off, 1 is on
3466 // CATEGORY: SETTINGS
3467 // OS: N
3468 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3469
Anton Philippov95a553e2017-01-27 00:08:24 +00003470 // OPEN: Settings > System > Backup
3471 // CATEGORY: SETTINGS
3472 // OS: O
3473 BACKUP_SETTINGS = 818;
3474
Winson Chung14fbe142016-12-19 16:18:24 -08003475 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003476 // VALUE: true if it was entered while hiding as a result of moving to
3477 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003478 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3479
3480 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3481 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3482 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3483
3484 // ACTION: The activity currently in picture-in-picture was minimized
3485 // VALUE: True if the PiP was minimized, false otherwise
3486 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3487
3488 // ACTION: Picture-in-picture was dismissed via the dismiss button
3489 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3490 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3491
3492 // ACTION: The visibility of the picture-in-picture meny
3493 // VALUE: Whether or not the menu is visible
3494 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3495
3496 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3497 // logged when the aspect ratio changes
3498 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3499
3500 // The current aspect ratio of the PiP, logged when it changes.
3501 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3502
Chris Wren27a52fa2017-02-01 14:21:43 -05003503 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3504 // CATEGORY: GLOBAL_SYSTEM_UI
3505 // OS: O
3506 FIELD_GESTURE_LENGTH = 826;
3507
3508 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3509 // CATEGORY: GLOBAL_SYSTEM_UI
3510 // OS: O
3511 FIELD_GESTURE_VELOCITY = 827;
3512
Christine Franks27fde392017-02-07 10:21:55 -08003513 // OPEN: Carrier demo mode password dialog
3514 CARRIER_DEMO_MODE_PASSWORD = 828;
3515
Fan Zhang70967f32017-02-13 16:02:24 -08003516 // ACTION: Create a Settings shortcut item.
3517 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3518
3519 // ACTION: A tile in Settings information architecture is clicked
3520 ACTION_SETTINGS_TILE_CLICK = 830;
3521
Julia Reynolds520df6e2017-02-13 09:05:10 -05003522 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3523 // updated
3524 // CATEGORY: NOTIFICATION
3525 // OS: O
3526 NOTIFICATION_SNOOZED = 831;
3527
3528 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3529 // OS: O
3530 NOTIFICATION_SNOOZED_CRITERIA = 832;
3531
Fan Zhang65899432017-02-14 13:36:53 -08003532 // FIELD - The context (source) from which an action is performed
Jason Monkf8c2f7b2017-09-06 09:22:29 -04003533 // For QS, this is a boolean of whether the panel is expanded
Fan Zhang65899432017-02-14 13:36:53 -08003534 FIELD_CONTEXT = 833;
3535
Fan Zhangd95dcb42017-02-14 13:48:09 -08003536 // ACTION: Settings advanced button is expanded
3537 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3538
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003539 // ACTION: Logs the number of times the saved network evaluator was used to
3540 // recommend a wifi network
3541 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3542
3543 // ACTION: Logs the number of times the recommended network evaluator was
3544 // used to recommend a wifi network
3545 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3546
3547 // ACTION: Logs the number of times a recommended network was resulted in a
3548 // successful connection
3549 // VALUE: true if the connection was successful, false if the connection failed
3550 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3551
Daniel Nishic581bfc2017-02-08 10:18:19 -08003552 // OPEN: Settings > Storage > Games
3553 // CATEGORY: SETTINGS
3554 // OS: O
3555 APPLICATIONS_STORAGE_GAMES = 838;
3556
3557 // OPEN: Settings > Storage > Audio and Music
3558 // CATEGORY: SETTINGS
3559 // OS: O
3560 APPLICATIONS_STORAGE_MUSIC = 839;
3561
3562 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3563 // CATEGORY: SETTINGS
3564 // OS: O
3565 STORAGE_FREE_UP_SPACE_NOW = 840;
3566
3567 // ACTION: Settings > Storage > Files to open the File Manager
3568 // CATEGORY: SETTINGS
3569 // OS: O
3570 STORAGE_FILES = 841;
3571
Fan Zhangb1d49222017-02-15 17:12:58 -08003572 // FIELD - Rank of the clicked Settings search result
Fan Zhang449502e2017-06-26 12:07:59 -07003573 FIELD_SETTINGS_SEARCH_RESULT_RANK = 842;
Fan Zhangb1d49222017-02-15 17:12:58 -08003574
Fan Zhang7f2cace2017-02-17 12:05:48 -08003575 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3576 DEFAULT_ASSIST_PICKER = 843;
3577
3578 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3579 DEFAULT_VOICE_INPUT_PICKER = 844;
3580
Daniel Nishi4058a842017-02-21 17:11:35 -08003581 // OPEN: Settings > Storage > [Profile]
3582 SETTINGS_STORAGE_PROFILE = 845;
3583
Doris Lingedb84c32017-02-23 10:56:01 -08003584 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3585 // CATEGORY: SETTINGS
3586 // OS: O
3587 ENCRYPTION_AND_CREDENTIAL = 846;
3588
Fan Zhangb66e5422017-02-24 14:37:45 -08003589 // ACTION: Settings > About device > Build number
3590 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3591
3592 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3593 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3594
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003595 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3596 // CATEGORY: SETTINGS
3597 // OS: O
3598 WIFI_NETWORK_DETAILS = 849;
3599
jackqdyuleia2a14342017-02-28 16:20:48 -08003600 // ACTION: Settings > Battery > Menu > Usage Alerts
3601 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3602
3603 // ACTION: Settings > Battery > Menu > Optimization
3604 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3605
3606 // ACTION: Settings > Battery > Menu > Apps Toggle
3607 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3608
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003609 // ACTION: Settings > Any preference is changed
3610 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3611
3612 // FIELD: The name of preference when it is changed in Settings
3613 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3614
3615 // FIELD: The new value of preference when it is changed in Settings
3616 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3617
Julia Reynoldsd373d782017-03-03 13:32:57 -05003618 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3619 // channel updated
3620 // PACKAGE: the package the channel belongs too
3621 // CATEGORY: NOTIFICATION
3622 // OS: O
3623 ACTION_NOTIFICATION_CHANNEL = 856;
3624
3625 // Tagged data for notification channel. String.
3626 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3627
3628 // Tagged data for notification channel. int.
3629 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3630
3631 // OPEN: Notification channel group created.
3632 // PACKAGE: the package the group belongs to
3633 // CATEGORY: NOTIFICATION
3634 // OS: O
3635 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3636
3637 // Tagged data for notification channel group. String.
3638 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3639
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003640 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3641 // CATEGORY: SETTINGS
3642 // OS: O
3643 SETTINGS_NETWORK_SCORER = 861;
3644
Fan Zhang99861312017-03-07 14:32:38 -08003645 // OPEN: Settings > About device > Model > Hardware info dialog
3646 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3647
mariagpuyol0f5512e2017-03-01 12:09:56 -08003648 // ACTION: Checks whether a contact's phone still exists
3649 // Value 0: It doesn't exist anymore
3650 // Value 1: It still exists
3651 // Value 2: A SecurityException was thrown
3652 // CATEGORY: SETTINGS
3653 // OS: N
3654 ACTION_PHONE_EXISTS = 863;
3655
3656 // ACTION: Retrieves a contact from CP2
3657 // Value 0: Contact retrieved without issues
3658 // Value 1: An IllegalArgumentException was thrown
3659 // CATEGORY: SETTINGS
3660 // OS: N
3661 ACTION_GET_CONTACT = 864;
3662
Chris Wren4d6b54d2017-04-27 16:56:54 -04003663 // This value should never appear in log outputs - it is reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003664 // internal platform metrics use.
3665 RESERVED_FOR_LOGBUILDER_PID = 865;
3666
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003667 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3668 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3669
3670 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3671 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3672
3673 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3674 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3675
3676 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3677 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3678
3679 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3680 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3681
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003682 // The name of the activity being launched in an app transition event.
Jason Monk8c09ac72017-03-16 11:53:40 -04003683 FIELD_CLASS_NAME = 871;
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003684
Fan Zhang082d21c2017-03-13 15:25:54 -07003685 // ACTION: Settings > App detail > Uninstall
3686 ACTION_SETTINGS_UNINSTALL_APP = 872;
3687
3688 // ACTION: Settings > App detail > Uninstall Device admin app
3689 ACTION_SETTINGS_UNINSTALL_DEVICE_ADMIN = 873;
3690
3691 // ACTION: Settings > App detail > Disable app
3692 ACTION_SETTINGS_DISABLE_APP = 874;
3693
3694 // ACTION: Settings > App detail > Enable app
3695 ACTION_SETTINGS_ENABLE_APP = 875;
3696
3697 // ACTION: Settings > App detail > Clear data
3698 ACTION_SETTINGS_CLEAR_APP_DATA = 876;
3699
3700 // ACTION: Settings > App detail > Clear cache
3701 ACTION_SETTINGS_CLEAR_APP_CACHE = 877;
3702
3703 // ACTION: Clicking on any search result in Settings.
3704 ACTION_CLICK_SETTINGS_SEARCH_INLINE_RESULT = 878;
3705
3706 // FIELD: Settings inline search result name
3707 FIELD_SETTINGS_SEARCH_INLINE_RESULT_NAME = 879;
3708
3709 // FIELD: Settings inline search result value
3710 FIELD_SETTINGS_SEARCH_INLINE_RESULT_VALUE = 880;
3711
Fan Zhang53797932017-03-13 17:46:24 -07003712 // ACTION: Settings > Search > Click saved queries
3713 ACTION_CLICK_SETTINGS_SEARCH_SAVED_QUERY = 881;
3714
Doris Lingbf8d9de2017-03-15 11:52:50 -07003715 // OPEN: Settings > Security & screen lock -> Lock screen preferences
3716 // CATEGORY: SETTINGS
3717 SETTINGS_LOCK_SCREEN_PREFERENCES = 882;
3718
Philip P. Moltmanne56c08e2017-03-15 12:46:04 -07003719 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS
3720 // PACKAGE: The package name of the app requesting the permission
3721 ACTION_APPOP_REQUEST_ACCESS_NOTIFICATIONS = 883;
3722
3723 // ACTION: An app was granted the app-op permission ACCESS_NOTIFICATIONS
3724 // PACKAGE: The package name of the app that was granted the permission
3725 ACTION_APPOP_GRANT_ACCESS_NOTIFICATIONS = 884;
3726
3727 // ACTION: An app requested the app-op permission ACCESS_NOTIFICATIONS and the request was denied
3728 // PACKAGE: The package name of the app requesting the permission
3729 ACTION_APPOP_DENIED_ACCESS_NOTIFICATIONS = 885;
3730
3731 // ACTION: The app-op permission ACCESS_NOTIFICATIONS was revoked for an app
3732 // PACKAGE: The package name of the app the permission was revoked for
3733 ACTION_APPOP_REVOKE_ACCESS_NOTIFICATIONS = 886;
3734
3735 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW
3736 // PACKAGE: The package name of the app requesting the permission
3737 ACTION_APPOP_REQUEST_SYSTEM_ALERT_WINDOW = 887;
3738
3739 // ACTION: An app was granted the app-op permission SYSTEM_ALERT_WINDOW
3740 // PACKAGE: The package name of the app that was granted the permission
3741 ACTION_APPOP_GRANT_SYSTEM_ALERT_WINDOW = 888;
3742
3743 // ACTION: An app requested the app-op permission SYSTEM_ALERT_WINDOW and the request was denied
3744 // PACKAGE: The package name of the app requesting the permission
3745 ACTION_APPOP_DENIED_SYSTEM_ALERT_WINDOW = 889;
3746
3747 // ACTION: The app-op permission SYSTEM_ALERT_WINDOW was revoked for an app
3748 // PACKAGE: The package name of the app the permission was revoked for
3749 ACTION_APPOP_REVOKE_SYSTEM_ALERT_WINDOW = 890;
3750
3751 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS
3752 // PACKAGE: The package name of the app requesting the permission
3753 ACTION_APPOP_REQUEST_WRITE_SETTINGS = 891;
3754
3755 // ACTION: An app was granted the app-op permission REQUEST_WRITE_SETTINGS
3756 // PACKAGE: The package name of the app that was granted the permission
3757 ACTION_APPOP_GRANT_WRITE_SETTINGS = 892;
3758
3759 // ACTION: An app requested the app-op permission REQUEST_WRITE_SETTINGS and the request was denied
3760 // PACKAGE: The package name of the app requesting the permission
3761 ACTION_APPOP_DENIED_WRITE_SETTINGS = 893;
3762
3763 // ACTION: The app-op permission REQUEST_WRITE_SETTINGS was revoked for an app
3764 // PACKAGE: The package name of the app the permission was revoked for
3765 ACTION_APPOP_REVOKE_WRITE_SETTINGS = 894;
3766
3767 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES
3768 // PACKAGE: The package name of the app requesting the permission
3769 ACTION_APPOP_REQUEST_REQUEST_INSTALL_PACKAGES = 895;
3770
3771 // ACTION: An app was granted the app-op permission REQUEST_INSTALL_PACKAGES
3772 // PACKAGE: The package name of the app that was granted the permission
3773 ACTION_APPOP_GRANT_REQUEST_INSTALL_PACKAGES = 896;
3774
3775 // ACTION: An app requested the app-op permission REQUEST_INSTALL_PACKAGES and the request was denied
3776 // PACKAGE: The package name of the app requesting the permission
3777 ACTION_APPOP_DENIED_REQUEST_INSTALL_PACKAGES = 897;
3778
3779 // ACTION: The app-op permission REQUEST_INSTALL_PACKAGES was revoked for an app
3780 // PACKAGE: The package name of the app the permission was revoked for
3781 ACTION_APPOP_REVOKE_REQUEST_INSTALL_PACKAGES = 898;
3782
Todd Kennedy7e5407e2017-03-16 09:51:11 -07003783 // ACTION: Phase 1 of instant application resolution occurred
3784 // OS: O
3785 ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE = 899;
3786
3787 // ACTION: Phase 2 of instant application resolution occurred
3788 // OS: O
3789 ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO = 900;
3790
3791 // FIELD: The amount of time for an ephemeral resolution phase; in milliseconds
3792 // OS: O
3793 FIELD_INSTANT_APP_RESOLUTION_DELAY_MS = 901;
3794
3795 // FIELD: The status of an ephemeral resolution phase
3796 // Value 0: success
3797 // Value 1: no full hash match
3798 // OS: O
3799 FIELD_INSTANT_APP_RESOLUTION_STATUS = 902;
3800
3801 // FIELD - A token to identify all events that are part of the same instant application launch
3802 // OS: O
3803 FIELD_INSTANT_APP_LAUNCH_TOKEN = 903;
3804
3805 // FIELD - The name of the package responsible for launching the activity
3806 // OS: O
3807 APP_TRANSITION_CALLING_PACKAGE_NAME = 904;
3808
3809 // FIELD - Whether or not the launched activity is part of an instant application
3810 // OS: O
3811 APP_TRANSITION_IS_EPHEMERAL = 905;
3812
Philip P. Moltmann7b771162017-03-03 17:22:57 -08003813 // An autofill session was started
3814 // Package: Package of app that is autofilled
3815 AUTOFILL_SESSION_STARTED = 906;
3816
3817 // An autofill request was processed by a service
3818 // Type TYPE_SUCCESS: The request succeeded
3819 // Type TYPE_FAILURE: The request failed
3820 // Package: Package of app that is autofilled
3821 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3822 // Tag FIELD_AUTOFILL_NUM_DATASET: The number of datasets returned (only in success case)
3823 AUTOFILL_REQUEST = 907;
3824
3825 // Tag of a field for a package of an autofill service
3826 FIELD_AUTOFILL_SERVICE = 908;
3827
3828 // Tag of a field for the number of datasets
3829 FIELD_AUTOFILL_NUM_DATASETS = 909;
3830
3831 // An autofill dataset selection UI was shown
3832 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3833 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3834 // Type TYPE_ACTION: dataset was selected
3835 // Type TYPE_DETAIL: authentication was selected
3836 // Package: Package of app that was autofilled
3837 // Tag FIELD_AUTOFILL_FILTERTEXT_LEN: The length of the filter text
3838 // Tag FIELD_AUTOFILL_NUM_DATASETS: The number of datasets shown
3839 AUTOFILL_FILL_UI = 910;
3840
3841 // Tag of a field for the length of the filter text
3842 FIELD_AUTOFILL_FILTERTEXT_LEN = 911;
3843
3844 // An autofill authentification succeeded
3845 // Package: Package of app that was autofilled
3846 AUTOFILL_AUTHENTICATED = 912;
3847
3848 // An activity was autofilled and all values could be applied
3849 // Package: Package of app that is autofilled
3850 // Tag FIELD_AUTOFILL_NUM_VALUES: Number of values that were suggested to be autofilled
3851 // Tag FIELD_AUTOFILL_NUM_VIEWS_FILLED: Number of views that could be filled
3852 AUTOFILL_DATASET_APPLIED = 913;
3853
3854 // Tag of a field for the number values to be filled in
3855 FIELD_AUTOFILL_NUM_VALUES = 914;
3856
3857 // Tag of a field for the number of views that were filled
3858 FIELD_AUTOFILL_NUM_VIEWS_FILLED = 915;
3859
3860 // An autofill save UI was shown
3861 // Type TYPE_DISMISS: UI was explicityly canceled by the user
3862 // Type TYPE_CLOSE: UI was destroyed without influence of the user
3863 // Type TYPE_ACTION: data was saved
3864 // Package: Package of app that was autofilled
3865 // Tag FIELD_AUTOFILL_NUM_ID: The number of ids that are saved
3866 AUTOFILL_SAVE_UI = 916;
3867
3868 // Tag of a field for the number of saveable ids
3869 FIELD_AUTOFILL_NUM_IDS = 917;
3870
3871 // ACTION: An autofill service was reqiested to save data
3872 // Type TYPE_SUCCESS: The request succeeded
3873 // Type TYPE_FAILURE: The request failed
3874 // Package: Package of app that was autofilled
3875 // Tag FIELD_AUTOFILL_SERVICE: Package of service that processed the request
3876 AUTOFILL_DATA_SAVE_REQUEST = 918;
3877
3878 // An auto-fill session was finished
3879 // Package: Package of app that was autofilled
3880 AUTOFILL_SESSION_FINISHED = 919;
3881
Chris Wren148805582017-03-17 17:18:11 -04003882 // meta-event: a reader has checkpointed the log here.
3883 METRICS_CHECKPOINT = 920;
3884
Fan Zhanged1845f2017-03-23 14:46:59 -07003885 // OPEN: Settings -> Display -> When in VR Mode
3886 VR_DISPLAY_PREFERENCE = 921;
3887
Casey Burkhardtf4e98032017-03-22 22:52:24 -07003888 // OPEN: Settings > Accessibility > Magnification
3889 // CATEGORY: SETTINGS
3890 // OS: O
3891 ACCESSIBILITY_SCREEN_MAGNIFICATION_SETTINGS = 922;
Antony Sargentb062e902017-03-23 16:32:04 -07003892
3893 // ACTION: Logs pressing the "Clear app" button in the app info settings page for an instant
3894 // app.
3895 // VALUE: The package name of the app
3896 ACTION_SETTINGS_CLEAR_INSTANT_APP = 923;
3897
Fan Zhang1a34e752017-03-24 13:44:51 -07003898 // OPEN: Settings -> System -> Reset options
3899 RESET_DASHBOARD = 924;
3900
Jason Monk8c09ac72017-03-16 11:53:40 -04003901 // ACTION: QS -> Tile clicked
3902 ACTION_QS_CLICK = 925;
3903
3904 // ACTION: QS -> Secondary click
3905 ACTION_QS_SECONDARY_CLICK = 926;
3906
3907 // FIELD: Position info in QS clicks
3908 FIELD_QS_POSITION = 927;
3909
3910 // FIELD: The value of a QS tile when clicked (if applicable)
3911 FIELD_QS_VALUE = 928;
3912
3913 // ACTION: QS -> Detail panel -> more settings
3914 ACTION_QS_MORE_SETTINGS = 929;
3915
3916 // ACTION: QS -> Click date
3917 ACTION_QS_DATE = 930;
3918
Jason Monk1b775652017-03-31 15:42:27 -04003919 // ACTION: Event on nav button
3920 ACTION_NAV_BUTTON_EVENT = 931;
3921
3922 // FIELD: Flags for a nav button event
3923 FIELD_FLAGS = 932;
3924
3925 // FIELD: Action for a nav button event
3926 FIELD_NAV_ACTION = 933;
3927
Kevin Chyn8d1a5282017-04-06 12:11:04 -07003928 // OPEN: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
3929 // CATEGORY: SETTINGS
3930 // OS: O
3931 FINGERPRINT_REMOVE_SIDECAR = 934;
3932
Daniel Nishi45c23fa2017-03-27 13:19:02 -07003933 // OPEN: Settings > Storage > Movies & TV
3934 // CATEGORY: SETTINGS
3935 // OS: O
3936 APPLICATIONS_STORAGE_MOVIES = 935;
3937
Abodunrinwa Toki54486c12017-04-19 21:02:36 +01003938 // OPEN: Text selection "assist" menu item shown.
3939 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3940 // CATEGORY: TEXT_CONTROLS
3941 // OS: O
3942 TEXT_SELECTION_MENU_ITEM_ASSIST = 936;
3943
3944 // ACTION: Text selection "assist" menu item clicked.
3945 // SUBTYPE: 1 is for EMAIL, 2 is for PHONE, 3 is for ADDRESS, 4 is for URL, 0 is for OTHER.
3946 // CATEGORY: TEXT_CONTROLS
3947 // OS: O
3948 ACTION_TEXT_SELECTION_MENU_ITEM_ASSIST = 937;
3949
Denis Kuznetsov7152a412017-04-13 11:41:33 +02003950 // OPEN: Settings > Security > Managed Device Info > Apps installed
3951 // CATEGORY: SETTINGS
3952 // OS: O
3953 ENTERPRISE_PRIVACY_INSTALLED_APPS = 938;
3954
3955 // OPEN: Settings > Security > Managed Device Info > nnn permissions
3956 // CATEGORY: SETTINGS
3957 // OS: O
3958 ENTERPRISE_PRIVACY_PERMISSIONS = 939;
3959
3960 // OPEN: Settings > Security > Managed Device Info > Default apps
3961 // CATEGORY: SETTINGS
3962 // OS: O
3963 ENTERPRISE_PRIVACY_DEFAULT_APPS = 940;
3964
Julia Reynolds80b18072017-04-23 12:27:07 -04003965 // OPEN: Settings > Notifications > An app > A channel > Importance
3966 // CATEGORY: SETTINGS
3967 // OS: O
3968 NOTIFICATION_CHANNEL_IMPORTANCE = 941;
3969
3970 // OPEN: Settings > Notifications > An app > A channel > On the lock screen
3971 // CATEGORY: SETTINGS
3972 // OS: O
3973 NOTIFICATION_CHANNEL_LOCK_SCREEN_VIS = 942;
3974
Chris Wren4d6b54d2017-04-27 16:56:54 -04003975 // This value should never appear in log outputs - it is reserved for
3976 // internal platform metrics use.
3977 RESERVED_FOR_LOGBUILDER_UID = 943;
3978
Dianne Hackborn83b40f62017-04-26 13:59:47 -07003979 // OPEN: Running background apps notification > List of background apps
3980 // CATEGORY: GLOBAL_SYSTEM_UI
3981 // OS: O
3982 RUNNING_BACKGROUND_APPS_DIALOG = 944;
3983
Jorim Jaggi515dd682017-05-05 15:05:07 +02003984 // FIELD - The delay from the start of the transition until we just call bindApplication on the
3985 // client.
3986 // OS: O
3987 APP_TRANSITION_BIND_APPLICATION_DELAY_MS = 945;
3988
Chris Wrenb3921792017-06-01 13:34:46 -04003989 // FIELD - The group ID of a notification.
3990 // Type: string
3991 // OS: O
3992 FIELD_NOTIFICATION_GROUP_ID = 946;
3993
3994 // FIELD - If the notification is a group summary: 1.
3995 // Type: int encoded boolean
3996 // OS: O
3997 FIELD_NOTIFICATION_GROUP_SUMMARY = 947;
3998
Chris Wren26ca65d2016-11-29 10:43:28 -05003999 // ---- End O Constants, all O constants go above this line ----
4000
Daniel Sheng2c4bc642017-04-18 14:17:16 -07004001 // OPEN: Settings > System > Languages & input > Advanced > Lift to open camera
4002 SETTINGS_GESTURE_CAMERA_LIFT_TRIGGER = 986;
4003
jackqdyulei92e492e2017-04-28 13:04:42 -07004004 // OPEN: Settings > Battery > High Usage > Abnormal app page
4005 // CATEGORY: SETTINGS
4006 FUELGAUGE_ANOMALY_DETAIL = 987;
4007
4008 // OPEN: Settings > Battery > High Usage
4009 DIALOG_HANDLE_ANOMALY = 988;
4010
Jonathan Solnita4138162017-05-10 21:06:04 -07004011 // ACTION: Camera lift gesture
4012 // CATEGORY: GLOBAL_SYSTEM_UI
4013 // OS: O
4014 ACTION_CAMERA_LIFT_TRIGGER = 989;
4015
Maurice Lam76ae09c2017-05-05 12:03:49 -07004016 // OPEN: Choose screen lock dialog in Settings
4017 // CATEGORY: SETTINGS
4018 // OS: O DR
4019 SETTINGS_CHOOSE_LOCK_DIALOG = 990;
4020
Maurice Lam05b2b8b2017-05-15 15:59:59 -07004021 // OPEN: Assist Gesture training intro in Settings
4022 // CATEGORY: SETTINGS
4023 // OS: O DR
4024 SETTINGS_ASSIST_GESTURE_TRAINING_INTRO = 991;
4025
4026 // OPEN: Assist Gesture training enrolling in Settings
4027 // CATEGORY: SETTINGS
4028 // OS: O DR
4029 SETTINGS_ASSIST_GESTURE_TRAINING_ENROLLING = 992;
4030
4031 // OPEN: Assist Gesture training finished in Settings
4032 // CATEGORY: SETTINGS
4033 // OS: O DR
4034 SETTINGS_ASSIST_GESTURE_TRAINING_FINISHED = 993;
4035
Fan Zhangc666a202017-05-18 17:50:20 -07004036 // FIELD: The numeric preference value (of type long) when it is changed in Settings
4037 FIELD_SETTINGS_PREFERENCE_CHANGE_LONG_VALUE = 994;
4038
4039 // FIELD: The numeric preference value (of type float) when it is changed in Settings
4040 FIELD_SETTINGS_PREFERENCE_CHANGE_FLOAT_VALUE = 995;
4041
Philip Quinn0f9566d2017-05-23 10:32:08 -07004042 // OPEN: Settings > System > Languages & input > Assist gesture
4043 // CATEGORY: SETTINGS
4044 // OS: O DR
4045 SETTINGS_ASSIST_GESTURE = 996;
4046
4047 // ACTION: Assist gesture released without triggering
4048 // CATEGORY: GLOBAL_SYSTEM_UI
4049 // OS: O DR
4050 ASSIST_GESTURE_RELEASED = 997;
4051
4052 // ACTION: Assist gesture primed
4053 // CATEGORY: GLOBAL_SYSTEM_UI
4054 // OS: O DR
4055 ASSIST_GESTURE_PRIMED = 998;
4056
4057 // ACTION: Assist gesture triggered
Kevin Chynaa8a5112017-08-16 11:43:41 -07004058 // SUBTYPE: 1 is for SCREEN_ON, 2 is for SCREEN_OFF
Philip Quinn0f9566d2017-05-23 10:32:08 -07004059 // CATEGORY: GLOBAL_SYSTEM_UI
4060 // OS: O DR
4061 ASSIST_GESTURE_TRIGGERED = 999;
4062
Fan Zhang238162b2017-05-25 14:01:41 -07004063 // ACTION: Update default app from Settings
4064 ACTION_SETTINGS_UPDATE_DEFAULT_APP = 1000;
4065
4066 // FIELD - Query length when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004067 FIELD_SETTINGS_SEARCH_QUERY_LENGTH = 1001;
Fan Zhang238162b2017-05-25 14:01:41 -07004068
4069 // FIELD - Number of results when Settings search result is clicked
Fan Zhang449502e2017-06-26 12:07:59 -07004070 FIELD_SETTINGS_SEARCH_RESULT_COUNT = 1002;
Fan Zhang238162b2017-05-25 14:01:41 -07004071
Adrian Roos1c81d772017-05-25 18:00:21 -07004072 // OPEN: Settings > Display > Ambient Display
4073 // CATEGORY: SETTINGS
4074 // OS: O DR
4075 AMBIENT_DISPLAY_SETTINGS = 1003;
4076
Hugo Benichi11da42b2017-05-31 11:11:37 +09004077 // ACTION: CaptivePortalLoginActivity starts
4078 // CATEGORY: GLOBAL_SYSTEM_UI
4079 // OS: O DR
4080 ACTION_CAPTIVE_PORTAL_LOGIN_ACTIVITY = 1004;
4081
4082 // ACTION: CaptivePortalLoginActivity auto-closes
4083 // CATEGORY: GLOBAL_SYSTEM_UI
4084 // OS: O DR
4085 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_DISMISSED = 1005;
4086
4087 // ACTION: CaptivePortalLoginActivity > Menu > Do not use this network
4088 // CATEGORY: GLOBAL_SYSTEM_UI
4089 // OS: O DR
4090 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_UNWANTED = 1006;
4091
4092 // ACTION: CaptivePortalLoginActivity > Menu > Use this network
4093 // CATEGORY: GLOBAL_SYSTEM_UI
4094 // OS: O DR
4095 ACTION_CAPTIVE_PORTAL_LOGIN_RESULT_WANTED_AS_IS = 1007;
4096
4097 // ACTION: Settings > Wi-Fi > [Long press network] > Sign in to network
4098 // CATEGORY: SETTINGS
4099 // OS: O DR
4100 ACTION_WIFI_SIGNIN = 1008;
4101
Antony Sargentf3cc3172017-05-04 14:58:06 -07004102 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4103 // CATEGORY: SETTINGS
4104 // OS: O DR
4105 BLUETOOTH_DEVICE_DETAILS = 1009;
4106
fanzhang172255759d2017-06-05 21:43:47 -07004107 // OPEN: Settings > credential pages - prompt for key guard configuration confirmation
4108 CONFIGURE_KEYGUARD_DIALOG = 1010;
4109
Fan Zhange33c70d2017-06-06 12:37:13 -07004110 // Open: Settings > Search > No Result View
4111 SETTINGS_SEARCH_NO_RESULT = 1011;
4112
Kevin Chyn4fddc9f2017-06-05 11:28:09 -07004113 // OPEN: Assist Gesture before training
4114 // CATEGORY: SETTINGS
4115 // OS: O DR
4116 SETTINGS_ASSIST_GESTURE_FIRST_TIME = 1012;
4117
Hugo Benichi9e8ab432017-06-05 14:52:24 +09004118 // CaptivePortalLoginActivity displays SSL error page
4119 // CATEGORY: GLOBAL_SYSTEM_UI
4120 // OS: O DR
4121 CAPTIVE_PORTAL_LOGIN_ACTIVITY_SSL_ERROR = 1013;
4122
Fan Zhang1a0fc992017-06-13 13:45:21 -07004123 // OPEN: Settings > Network > Tether > Wi-Fi hotspot
4124 WIFI_TETHER_SETTINGS = 1014;
4125
Antony Sargentc3b5da62017-06-16 11:50:13 -07004126 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4127 // -> Edit name button.
4128 // CATEGORY: SETTINGS
4129 // OS: O DR
4130 DIALOG_BLUETOOTH_PAIRED_DEVICE_RENAME = 1015;
4131
Fan Zhang543587d2017-06-19 12:32:14 -07004132 // ACTION: Settings > Notification Settings > Open application notification
4133 // CATEGORY: SETTINGS
4134 // OS: O DR
4135 ACTION_OPEN_APP_NOTIFICATION_SETTING = 1016;
4136
4137 // ACTION: Settings > App Info > Open app settings
4138 // CATEGORY: SETTINGS
4139 // OS: O DR
4140 ACTION_OPEN_APP_SETTING = 1017;
4141
jackqdyulei2f1a3592017-06-19 13:11:05 -07004142 // OPEN: Settings > Connected devices > Bluetooth > Pair new device
4143 // CATEGORY: SETTINGS
4144 // OS: O DR
4145 BLUETOOTH_PAIRING = 1018;
4146
Matthew Fritzead8e6e82017-06-12 14:23:59 -07004147 // ACTION: Collect PSD Signals
4148 // CATEGORY: SETTINGS
4149 // OS: O DR
4150 ACTION_PSD_LOADER = 1019;
4151
jackqdyulei602bcc92017-06-21 15:17:53 -07004152 // ACTION: Background check action on an app
4153 // CATEGORY: SETTINGS
4154 // OS: O DR
4155 ACTION_APP_BACKGROUND_CHECK = 1020;
4156
4157 // ACTION: Location check action on an app
4158 // CATEGORY: SETTINGS
4159 // OS: O DR
4160 ACTION_APP_LOCATION_CHECK = 1021;
4161
Charlie Wang15a36ed2017-06-14 14:46:39 -07004162 // Device headset status
4163 // CATEGORY: OTHER
4164 // SUBTYPE: 1 is DON, 2 is DOFF
4165 // OS: O DR
4166 ACTION_HEADSET_STATUS = 1022;
4167
4168 // Device Headset Plug status
4169 // CATEGORY: OTHER
4170 // SUBTYPE: 1 is AC power, 2 is USB power, 3 is Unplug
4171 // OS: O DR
4172 ACTION_HEADSET_PLUG = 1023;
4173
4174 // Device Headset battery level on Plug
4175 // CATEGORY: OTHER
4176 // FIELD - The battery percentage when the user decided to plug in
4177 // Type: integer
4178 // OS: O DR
4179 FIELD_PLUG_BATTERY_PERCENTAGE = 1024;
4180
Charlie Wang566ec702017-06-26 15:30:03 -07004181 // Device Headset battery level on Plug
4182 // CATEGORY: OTHER
4183 // FIELD - The battery percentage when the user decided to plug in
4184 // Type: integer
4185 // OS: O DR
4186 FIELD_UNPLUG_BATTERY_PERCENTAGE = 1025;
4187
Charlie Wang15a36ed2017-06-14 14:46:39 -07004188 // Device Headset Pose status
4189 // CATEGORY: OTHER
4190 // SUBTYPE: 1 is 6DOF, 2 is 3DOF
4191 // OS: O DR
Charlie Wang566ec702017-06-26 15:30:03 -07004192 ACTION_HEADSET_POSE_STATUS = 1026;
4193
4194 // Device Headset Usage session time
4195 // CATEGORY: OTHER
4196 // FIELD - The time the headset was used in a session
4197 // OS: O DR
4198 FIELD_SESSION_TIME_MS = 1027;
4199
4200 // Device Headset Idle time
4201 // CATEGORY: OTHER
4202 // FIELD - The time in between each session
4203 // OS: O DR
4204 FIELD_TIME_ELAPSED_BETWEEN_SESSION_MS = 1028;
4205
4206 // Device Headset charge session time
4207 // CATEGORY: OTHER
4208 // FIELD - The time taken for each charge
4209 // OS: O DR
4210 FIELD_TIME_OF_CHARGE_MS = 1029;
4211
4212 // Device Headset time between charge
4213 // CATEGORY: OTHER
4214 // FIELD - The time in between each charge
4215 // OS: O DR
4216 FIELD_TIME_ELAPSED_BETWEEN_CHARGE_MS = 1030;
Charlie Wang15a36ed2017-06-14 14:46:39 -07004217
Antony Sargentca701a22017-07-05 17:02:00 -07004218 // OPEN: Settings->Connected Devices->Bluetooth->(click on details link for a paired device)
4219 // -> Forget button.
4220 // CATEGORY: SETTINGS
4221 // OS: O DR
4222 DIALOG_BLUETOOTH_PAIRED_DEVICE_FORGET = 1031;
4223
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -07004224 // An event from the camera service
4225 // CATEGORY: OTHER
4226 // SUBTYPE: CameraEvent
4227 // OS: O DR
4228 ACTION_CAMERA_EVENT = 1032;
4229
Matthew Fritzedc2ad282017-07-25 13:13:21 -07004230 // OPEN: Settings > Trampoline Intent > Settings page
4231 // CATEGORY: SETTINGS
4232 // OS: O DR
4233 TRAMPOLINE_SETTINGS_EVENT = 1033;
4234
Chris Wren9a4f2662017-06-29 10:10:02 -04004235 // ---- End O-DR1 Constants, all O-DR1 constants go above this line ----
4236
Malcolm Chen21062542017-06-20 11:36:01 -07004237 // ACTION: Settings > Network & Internet > Mobile network > Mobile data
4238 // CATEGORY: SETTINGS
4239 // OS: O MR
4240 ACTION_MOBILE_NETWORK_MOBILE_DATA_TOGGLE = 1081;
4241
4242 // ACTION: Settings > Network & Internet > Mobile network > Data usage
4243 // CATEGORY: SETTINGS
4244 // OS: O MR
4245 ACTION_MOBILE_NETWORK_DATA_USAGE = 1082;
4246
Soroosh Mariooryad83310bc2017-06-30 11:42:14 -07004247 // FIELD - State of asynchronous ranking when Settings search result is clicked
4248 // CATEGORY: SETTINGS
4249 // OS: O MR
4250 FIELD_SETTINGS_SEARCH_RESULT_ASYNC_RANKING_STATE = 1083;
4251
Oren Blasberg68e8e8a2017-07-07 13:36:28 -07004252 // ACTION: Settings > Connected devices > SMS Mirroring
4253 // CATEGORY: SETTINGS
4254 // OS: O MR
4255 ACTION_SETTINGS_SMS_MIRRORING = 1084;
4256
Kang Li2c571892017-07-05 14:47:32 -07004257 // ACTION: Chooser picked a ranked target.
4258 // CATEGORY: GLOBAL_SYSTEM_UI
4259 // OS: O MR
4260 ACTION_TARGET_SELECTED = 1085;
4261
4262 // FIELD - is category used in Chooser: 1.
4263 // Type: int encoded boolean
4264 // CATEGORY: GLOBAL_SYSTEM_UI
4265 // OS: O MR
4266 FIELD_IS_CATEGORY_USED = 1086;
4267
4268 // FIELD - ranked position of selected target for Chooser.
4269 // CATEGORY: GLOBAL_SYSTEM_UI
4270 // OS: O MR
4271 FIELD_RANKED_POSITION = 1087;
4272
Rajeev Kumara8ba66e2017-07-19 16:51:55 -07004273 // OPEN: Settings > Data plan usage
4274 // CATEGORY: SETTINGS
4275 // OS: O MR
4276 DATA_PLAN_USAGE_SUMMARY = 1088;
4277
Doris Ling2b5f30c2017-08-08 13:03:41 -07004278 // FIELD: The numeric preference value (of type int) when it is changed in Settings
4279 FIELD_SETTINGS_PREFERENCE_CHANGE_INT_VALUE = 1089;
4280
Jorim Jaggi4d27b842017-08-17 17:22:26 +02004281 // ACTION: Logged when the app has notified that it has fully drawn. See
4282 // Activity.reportFullyDrawn().
4283 APP_TRANSITION_REPORTED_DRAWN = 1090;
4284
4285 // FIELD: The delay of the activity reporting to be fully drawn measured from the beginning of
4286 // the app transition.
4287 APP_TRANSITION_REPORTED_DRAWN_MS = 1091;
4288
Daniel Nishi4325c182017-08-23 10:27:08 -07004289 // OPEN: Settings > Storage > Photos & Videos
4290 // CATEGORY: SETTINGS
4291 // OS: O MR
4292 APPLICATIONS_STORAGE_PHOTOS = 1092;
4293
Jason Monkf8c2f7b2017-09-06 09:22:29 -04004294 // ACTION: Logged when the status bar icons change.
4295 // OS: O MR
4296 STATUS_BAR_ICONS_CHANGED = 1093;
4297
4298 // FIELD: Bitfield indicating which icons are shown.
4299 // OS: O MR
4300 FIELD_STATUS_ICONS = 1094;
4301
4302 // FIELD: Number of status icons currently shown.
4303 // OS: O MR
4304 FIELD_NUM_STATUS_ICONS = 1095;
4305
Jack He47d881a2017-08-30 19:24:37 -07004306 // ACTION: Logged when user tries to pair a Bluetooth device without name from Settings app
4307 // CATEGORY: SETTINGS
4308 // OS: O MR
4309 ACTION_SETTINGS_BLUETOOTH_PAIR_DEVICES_WITHOUT_NAMES = 1096;
4310
Soroosh Mariooryad652c4322017-09-07 08:45:18 -07004311 // FIELD - Whether smart suggestion ranking was enabled or not
4312 // Type: int encoded boolean
4313 // CATEGORY: SETTINGS
4314 // OS: O MR
4315 FIELD_SETTINGS_SMART_SUGGESTIONS_ENABLED = 1097;
4316
James Hawkins45248762017-09-12 13:16:03 -07004317 // ACTION: The device boots
4318 ACTION_BOOT = 1098;
4319
4320 // FIELD: A string value representing some state of the platform, e.g., boot reason
4321 FIELD_PLATFORM_REASON = 1099;
4322
4323 // ---- End O-MR1 Constants, all O-MR1 constants go above this line ----
4324
Adrian Roos159ef7b2016-02-25 11:58:32 -08004325 // Add new aosp constants above this line.
4326 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05004327 }
4328}