blob: 072d3dc4daf03036615902282dc27ffb288a4d46 [file] [log] [blame]
Chris Wren77781d32016-01-11 14:49:26 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto2";
16
17option java_package = "com.android.internal.logging";
18option java_outer_classname = "MetricsProto";
19
20package com_android_internal_logging;
21
22// Wrapper for System UI log events
23message MetricsEvent {
24
Chris Wren5e334f62016-11-14 10:16:21 -050025 // Types of events
26 enum Type {
27 // Unknown
28 TYPE_UNKNOWN = 0;
29
30 // The view became visible to the user.
31 TYPE_OPEN = 1;
32
33 // The view became hidden.
34 TYPE_CLOSE = 2;
35
36 // The view switched to detail mode (most relevant for quick settings tiles)
37 TYPE_DETAIL = 3;
38
39 // The view or control was activated.
40 TYPE_ACTION = 4;
41
42 // The view or control was dismissed.
43 TYPE_DISMISS = 5;
Julia Reynolds520df6e2017-02-13 09:05:10 -050044
45 // The view or control was updated.
46 TYPE_UPDATE = 6;
Chris Wren5e334f62016-11-14 10:16:21 -050047 }
48
Chris Wren77781d32016-01-11 14:49:26 -050049 // Known visual elements: views or controls.
50 enum View {
Chris Wren7c516842016-03-01 16:44:32 -050051 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -050052 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -050053
54 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050055 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -050056
57 // OPEN: Settings > Accessibility
58 // CATEGORY: SETTINGS
59 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050060 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -050061
62 // OPEN: Settings > Accessibility > Captions
63 // CATEGORY: SETTINGS
64 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050065 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -050066
67 // OPEN: Settings > Accessibility > [Service]
68 // CATEGORY: SETTINGS
69 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050070 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -050071
72 // OPEN: Settings > Accessibility > Color correction
73 // CATEGORY: SETTINGS
74 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050075 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -050076
77 // OPEN: Settings > Accessibility > Accessibility shortcut
78 // CATEGORY: SETTINGS
79 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050080 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -050081
82 // OPEN: Settings > Accessibility > Magnification gestures
83 // CATEGORY: SETTINGS
84 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050085 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -050086
87 // OPEN: Settings > Accounts
88 // CATEGORY: SETTINGS
89 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050090 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -050091
92 // OPEN: Settings > Accounts > [Single Account Sync Settings]
93 // CATEGORY: SETTINGS
94 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050095 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -050096
97 // OPEN: Settings > Accounts > Add an account
98 // CATEGORY: SETTINGS
99 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500100 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -0500101
102 // OPEN: Settings > Accounts > [List of accounts when more than one]
103 // CATEGORY: SETTINGS
104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500105 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -0500106
107 // OPEN: Settings > Cellular network settings > APNs
108 // CATEGORY: SETTINGS
109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500110 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -0500111
112 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
113 // CATEGORY: SETTINGS
114 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500115 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500116
117 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500118 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500119
120 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500121 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500122
123 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500124 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500125
126 // OPEN: Settings > Apps > Configure apps > App links > [App]
127 // CATEGORY: SETTINGS
128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500129 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500130
131 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500132 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500133
134 // OPEN: Settings > Internal storage > Apps storage > [App]
135 // CATEGORY: SETTINGS
136 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500137 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500138
139 // OPEN: Settings > Apps > [App info]
140 // CATEGORY: SETTINGS
141 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500142 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500143
144 // OPEN: Settings > Memory > App usage > [App Memory usage]
145 // CATEGORY: SETTINGS
146 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500147 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500148
149 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500150 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500151
152 // OPEN: Settings > Memory > App usage
153 // CATEGORY: SETTINGS
154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500155 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500156
157 // OPEN: Settings > Bluetooth
158 // CATEGORY: SETTINGS
159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500160 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500161
162 // OPEN: Choose Bluetooth device (ex: when sharing)
163 // CATEGORY: SETTINGS
164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500165 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500166
167 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500168 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500169
170 // OPEN: Settings > Security > Choose screen lock
171 // CATEGORY: SETTINGS
172 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500173 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500174
175 // OPEN: Settings > Security > Choose screen lock > Choose your password
176 // CATEGORY: SETTINGS
177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500178 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500179
180 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
181 // CATEGORY: SETTINGS
182 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500183 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500184
185 // OPEN: Settings > Security > Choose screen lock > Confirm your password
186 // CATEGORY: SETTINGS
187 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500188 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500189
190 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
191 // CATEGORY: SETTINGS
192 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500193 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500194
195 // OPEN: Settings > Security > Encrypt phone
196 // CATEGORY: SETTINGS
197 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500198 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500199
200 // OPEN: Settings > Security > Encrypt phone > Confirm
201 // CATEGORY: SETTINGS
202 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500203 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500204
205 // OPEN: Settings > Search results
206 // CATEGORY: SETTINGS
207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500208 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500209
210 // OPEN: Settings (Root page)
211 // CATEGORY: SETTINGS
212 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500213 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500214
215 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500216 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500217
218 // OPEN: Settings > Data usage
219 // CATEGORY: SETTINGS
220 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500221 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500222
223 // OPEN: Settings > Date & time
224 // CATEGORY: SETTINGS
225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500226 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500227
228 // OPEN: Settings > Developer options
229 // CATEGORY: SETTINGS
230 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500231 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500232
233 // OPEN: Settings > About phone
234 // CATEGORY: SETTINGS
235 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500236 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500237
238 // OPEN: Settings > About phone > Status > IMEI information
239 // CATEGORY: SETTINGS
240 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500241 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500242
243 // OPEN: Settings > Internal storage
244 // CATEGORY: SETTINGS
245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500246 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500247
248 // OPEN: Settings > About phone > Status > SIM status
249 // CATEGORY: SETTINGS
250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500251 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500252
253 // OPEN: Settings > About phone > Status
254 // CATEGORY: SETTINGS
255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500256 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500259 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500260
261 // OPEN: Settings > Display
262 // CATEGORY: SETTINGS
263 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500264 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500265
266 // OPEN: Settings > Display > Daydream
267 // CATEGORY: SETTINGS
268 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500269 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500270
271 // OPEN: Settings > Security > Screen lock > Secure start-up
272 // CATEGORY: SETTINGS
273 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500274 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500275
276 // OPEN: Settings > Security > Nexus Imprint
277 // CATEGORY: SETTINGS
278 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500279 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500280
281 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500282 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500283
284 // OPEN: Settings > Battery > History details
285 // CATEGORY: SETTINGS
286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500287 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500288
289 // OPEN: Settings > Battery > Battery saver
290 // CATEGORY: SETTINGS
291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500292 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500293
294 // OPEN: Settings > Battery > [App Use details]
295 // CATEGORY: SETTINGS
296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500297 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500298
299 // OPEN: Settings > Battery
300 // CATEGORY: SETTINGS
301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500302 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500303
304 // OPEN: Settings > Home
305 // CATEGORY: SETTINGS
306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500307 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500308
309 // OPEN: Settings > Security > SIM card lock settings
310 // CATEGORY: SETTINGS
311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500312 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500313
314 // OPEN: Settings > Language & input
315 // CATEGORY: SETTINGS
316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500317 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500318
319 // OPEN: Settings > Language & input > Physical keyboard
320 // CATEGORY: SETTINGS
321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500322 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Language & input > Spell checker
325 // CATEGORY: SETTINGS
326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500327 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500328
329 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500330 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500331
332 // OPEN: Settings > Language & input > Personal dictionary
333 // CATEGORY: SETTINGS
334 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500335 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500336
337 // OPEN: Settings > Language & input > Add word
338 // CATEGORY: SETTINGS
339 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500340 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Location
343 // CATEGORY: SETTINGS
344 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500345 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500346
347 // OPEN: Settings > Location > Location mode
348 // CATEGORY: SETTINGS
349 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500350 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500351
352 // OPEN: Settings > Apps
353 // CATEGORY: SETTINGS
354 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500355 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > Backup & reset > Factory data reset
358 // CATEGORY: SETTINGS
359 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500360 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500361
362 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
363 // CATEGORY: SETTINGS
364 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500365 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500366
367 // OPEN: Settings > Data usage > Network restrictions
368 // CATEGORY: SETTINGS
369 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500370 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500371
372 // OPEN: Settings > More > Android Beam
373 // CATEGORY: SETTINGS
374 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500375 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500376
377 // OPEN: Settings > Tap & pay
378 // CATEGORY: SETTINGS
379 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500380 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500381
382 // OPEN: Settings > Sound & notification
383 // CATEGORY: SETTINGS
384 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500385 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Sound & notification > App notifications > [App]
388 // CATEGORY: SETTINGS
389 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500390 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500391
392 // OPEN: Settings > Sound & notification > Other sounds
393 // CATEGORY: SETTINGS
394 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500395 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500396
397 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500398 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500399
400 // OPEN: Settings Widget > Notification log
401 // CATEGORY: SETTINGS
402 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500403 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > Sound & notification > Do not disturb
406 // CATEGORY: SETTINGS
407 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500408 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500409
410 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500411 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500412
413 // OPEN: Print job notification > Print job settings
414 // CATEGORY: SETTINGS
415 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500416 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500417
418 // OPEN: Settings > Printing > [Print Service]
419 // CATEGORY: SETTINGS
420 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500421 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Printing
424 // CATEGORY: SETTINGS
425 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500426 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500427
428 // OPEN: Settings > Backup & reset
429 // CATEGORY: SETTINGS
430 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500431 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500432
433 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500434 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500435
436 // OPEN: Settings > Backup & reset > Network settings reset
437 // CATEGORY: SETTINGS
438 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500439 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500440
441 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
442 // CATEGORY: SETTINGS
443 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500444 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500445
446 // OPEN: Settings > Developer Options > Running Services
447 // CATEGORY: SETTINGS
448 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500449 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500450
451 // OPEN: Settings > Security > Screen pinning
452 // CATEGORY: SETTINGS
453 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500454 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500455
456 // OPEN: Settings > Security
457 // CATEGORY: SETTINGS
458 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500459 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500460
461 // OPEN: Settings > SIM cards
462 // CATEGORY: SETTINGS
463 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500464 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500465
466 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500467 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500468
469 // OPEN: Settings > More > Tethering & portable hotspot
470 // CATEGORY: SETTINGS
471 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500472 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500473
474 // OPEN: Settings > Security > Trust agents
475 // CATEGORY: SETTINGS
476 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500477 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500478
479 // OPEN: Settings > Security > Trusted credentials
480 // CATEGORY: SETTINGS
481 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500482 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500483
484 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
485 // CATEGORY: SETTINGS
486 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500487 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500488
489 // OPEN: Settings > Language & input > Text-to-speech output
490 // CATEGORY: SETTINGS
491 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500492 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500493
494 // OPEN: Settings > Security > Apps with usage access
495 // CATEGORY: SETTINGS
496 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500497 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500498
499 // OPEN: Settings > Users
500 // CATEGORY: SETTINGS
501 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500502 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: Settings > Users > [Restricted profile app & content access]
505 // CATEGORY: SETTINGS
506 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500507 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500508
509 // OPEN: Settings > Users > [User settings]
510 // CATEGORY: SETTINGS
511 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500512 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500513
514 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500515 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500516
517 // OPEN: Settings > More > VPN
518 // CATEGORY: SETTINGS
519 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500520 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500521
522 // OPEN: Settings > Display > Choose wallpaper from
523 // CATEGORY: SETTINGS
524 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500525 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500526
527 // OPEN: Settings > Display > Cast
528 // CATEGORY: SETTINGS
529 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500530 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500531
532 // OPEN: Settings > Wi-Fi
533 // CATEGORY: SETTINGS
534 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500535 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
538 // CATEGORY: SETTINGS
539 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500540 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500541
542 // OPEN: Settings > More > Wi-Fi Calling
543 // CATEGORY: SETTINGS
544 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500545 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500546
547 // OPEN: Settings > Wi-Fi > Saved networks
548 // CATEGORY: SETTINGS
549 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500550 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500551
552 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500553 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500556 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500557
558 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
559 // CATEGORY: SETTINGS
560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500561 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: Settings > More
564 // CATEGORY: SETTINGS
565 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500566 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500567
568 // OPEN: Quick Settings Panel
569 // CATEGORY: QUICK_SETTINGS
570 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500571 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OPEN: QS Airplane mode tile shown
574 // ACTION: QS Airplane mode tile tapped
575 // SUBTYPE: 0 is off, 1 is on
576 // CATEGORY: QUICK_SETTINGS
577 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500578 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500579
580 // OPEN: QS Bluetooth tile shown
581 // ACTION: QS Bluetooth tile tapped
582 // SUBTYPE: 0 is off, 1 is on
583 // CATEGORY: QUICK_SETTINGS
584 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500585 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500586
587 // OPEN: QS Cast tile shown
588 // ACTION: QS Cast tile tapped
589 // CATEGORY: QUICK_SETTINGS
590 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500591 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500592
593 // OPEN: QS Cellular tile shown
594 // ACTION: QS Cellular tile tapped
595 // CATEGORY: QUICK_SETTINGS
596 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500597 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500598
599 // OPEN: QS Color inversion tile shown
600 // ACTION: QS Color inversion tile tapped
601 // SUBTYPE: 0 is off, 1 is on
602 // CATEGORY: QUICK_SETTINGS
603 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500604 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OPEN: QS Cellular tile > Cellular detail panel
607 // CATEGORY: QUICK_SETTINGS
608 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500609 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500610
611 // OPEN: QS Do not disturb tile shown
612 // ACTION: QS Do not disturb tile tapped
613 // SUBTYPE: 0 is off, 1 is on
614 // CATEGORY: QUICK_SETTINGS
615 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500616 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OPEN: QS Flashlight tile shown
619 // ACTION: QS Flashlight tile tapped
620 // SUBTYPE: 0 is off, 1 is on
621 // CATEGORY: QUICK_SETTINGS
622 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500623 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500624
625 // OPEN: QS Hotspot tile shown
626 // ACTION: QS Hotspot tile tapped
627 // SUBTYPE: 0 is off, 1 is on
628 // CATEGORY: QUICK_SETTINGS
629 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500630 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500631
632 // OPEN: QS 3P tile shown
633 // ACTION: QS 3P tile tapped
634 // CATEGORY: QUICK_SETTINGS
635 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500636 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500637
638 // OPEN: QS Location tile shown
639 // ACTION: QS Location tile tapped
640 // SUBTYPE: 0 is off, 1 is on
641 // CATEGORY: QUICK_SETTINGS
642 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500643 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500644
645 // OPEN: QS Rotation tile shown
646 // ACTION: QS Rotation tile tapped
647 // SUBTYPE: 0 is off, 1 is on
648 // CATEGORY: QUICK_SETTINGS
649 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500650 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500651
652 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500653 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500654
655 // OPEN: QS User list panel
656 // CATEGORY: QUICK_SETTINGS
657 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500658 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500659
660 // OPEN: QS WiFi tile shown
661 // ACTION: QS WiFi tile tapped
662 // SUBTYPE: 0 is off, 1 is on
663 // CATEGORY: QUICK_SETTINGS
664 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500665 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500666
667 // OPEN: Notification Panel (including lockscreen)
668 // CATEGORY: NOTIFICATION
669 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500670 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: Notification in panel became visible.
673 // PACKAGE: App that posted the notification.
674 // ACTION: Notification is tapped.
675 // PACKAGE: App that posted the notification
676 // DETAIL: Notification is expanded by user.
677 // PACKAGE: App that posted the notification
678 // DISMISS: Notification is dismissed.
679 // PACKAGE: App that posted the notification
680 // SUBTYPE: Dismiss reason from NotificationManagerService.java
681 // CATEGORY: NOTIFICATION
682 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500683 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500684
685 // ACTION: User tapped notification action
686 // PACKAGE: App that posted the notification
687 // SUBTYPE: Index of action on notification
688 // CATEGORY: NOTIFICATION
689 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500690 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500691
692 // OPEN: Settings > Apps > Configure apps > App permissions
693 // CATEGORY: SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // OPEN: Settings > Location > Scanning
698 // CATEGORY: SETTINGS
699 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500700 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500703 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500704
705 // OPEN: Settings > Sound & notification > App notifications
706 // CATEGORY: SETTINGS
707 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500708 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500709
710 // ACTION: Settings > Wi-Fi > Overflow > Add Network
711 // CATEGORY: SETTINGS
712 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500713 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500714
715 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
Stephen Chen0d14da32016-11-03 10:44:32 -0700716 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500717 // CATEGORY: SETTINGS
718 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500719 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // ACTION: Settings > Wi-Fi > Overflow > Refresh
722 // CATEGORY: SETTINGS
723 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500724 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500725
726 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
727 // CATEGORY: SETTINGS
728 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500729 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500730
731 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700732 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500733 // CATEGORY: SETTINGS
734 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500735 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500736
737 // ACTION: Settings > Wi-Fi > Toggle on
738 // CATEGORY: SETTINGS
739 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500740 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500743 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500744
745 // OPEN: Settings > Sound & notification > DND > Priority only allows
746 // CATEGORY: SETTINGS
747 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500748 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500749
750 // OPEN: Settings > Sound & notification > DND > Automatic rules
751 // CATEGORY: SETTINGS
752 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500753 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500754
755 // OPEN: Settings > Apps > Configure apps > App links
756 // CATEGORY: SETTINGS
757 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500758 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500759
760 // OPEN: Settings > Sound & notification > DND > [Time based rule]
761 // CATEGORY: SETTINGS
762 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500763 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500764
765 // OPEN: Settings > Sound & notification > DND > [External rule]
766 // CATEGORY: SETTINGS
767 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500768 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500769
770 // OPEN: Settings > Sound & notification > DND > [Event rule]
771 // CATEGORY: SETTINGS
772 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500773 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500774
775 // ACTION: App notification settings > Block Notifications
776 // CATEGORY: SETTINGS
777 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500778 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500779
780 // ACTION: Notification shade > Dismiss all button
781 // CATEGORY: NOTIFICATION
782 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500783 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500784
785 // OPEN: QS Do Not Disturb detail panel
786 // CATEGORY: QUICK_SETTINGS
787 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500788 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500789
790 // OPEN: QS Bluetooth detail panel
791 // CATEGORY: QUICK_SETTINGS
792 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500793 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500794
795 // OPEN: QS Cast detail panel
796 // CATEGORY: QUICK_SETTINGS
797 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500798 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500799
800 // OPEN: QS Wi-Fi detail panel
801 // CATEGORY: QUICK_SETTINGS
802 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500803 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500804
805 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
806 // SUBTYPE: 0 is off, 1 is on
807 // CATEGORY: QUICK_SETTINGS
808 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500809 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500810
811 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
812 // SUBTYPE: 0 is off, 1 is on
813 // CATEGORY: QUICK_SETTINGS
814 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500815 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500816
817 // ACTION: QS Cellular detail panel > Cellular toggle
818 // SUBTYPE: 0 is off, 1 is on
819 // CATEGORY: QUICK_SETTINGS
820 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500821 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500822
823 // ACTION: QS User list panel > Select different user
824 // CATEGORY: QUICK_SETTINGS
825 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500826 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500827
828 // ACTION: QS Cast detail panel > Select cast device
829 // CATEGORY: QUICK_SETTINGS
830 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500831 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500832
833 // ACTION: QS Cast detail panel > Disconnect cast device
834 // CATEGORY: QUICK_SETTINGS
835 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500836 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500837
838 // ACTION: Settings > Bluetooth > Toggle
839 // SUBTYPE: 0 is off, 1 is on
840 // CATEGORY: SETTINGS
841 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500842 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500843
844 // ACTION: Settings > Bluetooth > Overflow > Refresh
845 // CATEGORY: SETTINGS
846 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500847 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500848
849 // ACTION: Settings > Bluetooth > Overflow > Rename this device
850 // CATEGORY: SETTINGS
851 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500852 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500853
854 // ACTION: Settings > Bluetooth > Overflow > Show received files
855 // CATEGORY: SETTINGS
856 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500857 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500858
859 // ACTION: QS DND details panel > Increase / Decrease exit time
860 // SUBTYPE: true is increase, false is decrease
861 // CATEGORY: QUICK_SETTINGS
862 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500863 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500864
865 // ACTION: QS DND details panel > [Exit condition]
866 // CATEGORY: QUICK_SETTINGS
867 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500868 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500869
870 // ACTION: QS DND details panel > [DND mode]
871 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
872 // CATEGORY: QUICK_SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // ACTION: QS DND detail panel > DND toggle
877 // SUBTYPE: 0 is off, 1 is on
878 // CATEGORY: QUICK_SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // ACTION: DND Settings > Priority only allows > Reminder toggle
883 // SUBTYPE: 0 is off, 1 is on
884 // CATEGORY: SETTINGS
885 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500886 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500887
888 // ACTION: DND Settings > Priority only allows > Event toggle
889 // SUBTYPE: 0 is off, 1 is on
890 // CATEGORY: SETTINGS
891 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500892 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500893
894 // ACTION: DND Settings > Priority only allows > Messages
895 // SUBTYPE: 0 is off, 1 is on
896 // CATEGORY: SETTINGS
897 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500898 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500899
900 // ACTION: DND Settings > Priority only allows > Calls
901 // SUBTYPE: 0 is off, 1 is on
902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
907 // SUBTYPE: 0 is off, 1 is on
908 // CATEGORY: SETTINGS
909 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500910 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // ACTION: DND Settings > Automatic rules > Add rule
913 // CATEGORY: SETTINGS
914 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500915 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // ACTION: DND Settings > Automatic rules > Add rule > OK
918 // CATEGORY: SETTINGS
919 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500920 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500921
922 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
923 // CATEGORY: SETTINGS
924 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500925 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500926
927 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
928 // CATEGORY: SETTINGS
929 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500930 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500931
932 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
933 // SUBTYPE: 0 is off, 1 is on
934 // CATEGORY: SETTINGS
935 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500936 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500937
938 // ACTION: Settings > More > Airplane mode toggle
939 // SUBTYPE: 0 is off, 1 is on
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // ACTION: Settings > Data usage > Cellular data toggle
945 // SUBTYPE: 0 is off, 1 is on
946 // CATEGORY: SETTINGS
947 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500948 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500949
950 // OPEN: Settings > Sound & notification > Notification access
951 // CATEGORY: SETTINGS
952 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500953 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500954
955 // OPEN: Settings > Sound & notification > Do Not Disturb access
956 // CATEGORY: SETTINGS
957 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500958 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500959
960 // OPEN: Settings > Apps > Configure apps > Default Apps
961 // CATEGORY: SETTINGS
962 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500963 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500964
965 // OPEN: Settings > Internal storage > Apps storage
966 // CATEGORY: SETTINGS
967 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500968 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500969
970 // OPEN: Settings > Security > Usage access
971 // CATEGORY: SETTINGS
972 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500973 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500974
975 // OPEN: Settings > Battery > Battery optimization
976 // CATEGORY: SETTINGS
977 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500978 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500979
980 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500981 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -0500982
983 // ACTION: Lockscreen > Unlock gesture
984 // CATEGORY: GLOBAL_SYSTEM_UI
985 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500986 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -0500987
988 // ACTION: Lockscreen > Pull shade open
989 // CATEGORY: GLOBAL_SYSTEM_UI
990 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500991 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -0500992
993 // ACTION: Lockscreen > Tap on lock, shows hint
994 // CATEGORY: GLOBAL_SYSTEM_UI
995 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500996 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -0500997
998 // ACTION: Lockscreen > Camera
999 // CATEGORY: GLOBAL_SYSTEM_UI
1000 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001001 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001002
1003 // ACTION: Lockscreen > Dialer
1004 // CATEGORY: GLOBAL_SYSTEM_UI
1005 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001006 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: Lockscreen > Tap on lock, locks phone
1009 // CATEGORY: GLOBAL_SYSTEM_UI
1010 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001011 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001012
1013 // ACTION: Lockscreen > Tap on notification, false touch rejection
1014 // CATEGORY: GLOBAL_SYSTEM_UI
1015 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001016 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // ACTION: Lockscreen > Swipe down to open quick settings
1019 // CATEGORY: GLOBAL_SYSTEM_UI
1020 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001021 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001022
1023 // ACTION: Swipe down to open quick settings when unlocked
1024 // CATEGORY: GLOBAL_SYSTEM_UI
1025 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001026 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001027
1028 // ACTION: Notification shade > Tap to open quick settings
1029 // CATEGORY: GLOBAL_SYSTEM_UI
1030 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001031 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001032
1033 // OPEN: Lockscreen
1034 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1035 // CATEGORY: GLOBAL_SYSTEM_UI
1036 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001037 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001038
1039 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1040 // CATEGORY: GLOBAL_SYSTEM_UI
1041 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001042 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001043
1044 // OPEN: Screen turned on
1045 // SUBTYPE: 2 is user action
1046 // CATEGORY: GLOBAL_SYSTEM_UI
1047 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001048 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // OPEN: Notification caused sound, vibration, and/or LED blink
1051 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1052 // CATEGORY: NOTIFICATION
1053 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001054 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001055
1056 // ACTION: Lockscreen > Emergency Call button
1057 // CATEGORY: GLOBAL_SYSTEM_UI
1058 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001059 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001060
1061 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001064 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001065
1066 // OPEN: Settings > Memory
1067 // CATEGORY: SETTINGS
1068 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001069 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001070
1071 // ACTION: Settings > Display > When device is rotated
1072 // CATEGORY: SETTINGS
1073 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001074 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001075
1076 // ACTION: Long press on notification to view controls
1077 // CATEGORY: NOTIFICATION
1078 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // ACTION: Notificatoin controls > Info button
1082 // CATEGORY: NOTIFICATION
1083 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001084 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001085
1086 // ACTION: Notification controls > Settings button
1087 // CATEGORY: NOTIFICATION
1088 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001089 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001090
1091 // OPEN: Volume Dialog (with hardware buttons)
1092 // CATEGORY: GLOBAL_SYSTEM_UI
1093 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001094 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001095
1096 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1097 // CATEGORY: GLOBAL_SYSTEM_UI
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: Volume dialog > Adjust volume slider
1102 // SUBTYPE: volume level (0-7)
1103 // CATEGORY: GLOBAL_SYSTEM_UI
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Volume dialog > Select non-active stream
1108 // SUBTYPE: stream (defined in AudioSystem.java)
1109 // CATEGORY: GLOBAL_SYSTEM_UI
1110 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001111 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001112
1113 // ACTION: Adjust volume with hardware key
1114 // SUBTYPE: volume level (0-7)
1115 // CATEGORY: GLOBAL_SYSTEM_UI
1116 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001117 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001118
1119 // ACTION: Volume dialog > Mute a stream by tapping icon
1120 // SUBTYPE: mute is 1, audible is 2
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001123 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001124
1125 // ACTION: Volume dialog > Change ringer mode by tapping icon
1126 // SUBTYPE: 2 is audible, 3 is vibrate
1127 // CATEGORY: GLOBAL_SYSTEM_UI
1128 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001129 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001130
1131 // ACTION: Chooser shown (share target, file open, etc.)
1132 // CATEGORY: GLOBAL_SYSTEM_UI
1133 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001134 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001135
1136 // ACTION: Chooser > User taps an app target
1137 // SUBTYPE: Index of target
1138 // CATEGORY: GLOBAL_SYSTEM_UI
1139 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // ACTION: Chooser > User taps a service target
1143 // SUBTYPE: Index of target
1144 // CATEGORY: GLOBAL_SYSTEM_UI
1145 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001146 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001147
1148 // ACTION: Chooser > User taps a standard target
1149 // SUBTYPE: Index of target
1150 // CATEGORY: GLOBAL_SYSTEM_UI
1151 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001152 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001153
1154 // ACTION: QS Brightness Slider (with auto brightness disabled)
1155 // SUBTYPE: slider value
1156 // CATEGORY: QUICK_SETTINGS
1157 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001158 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // ACTION: QS Brightness Slider (with auto brightness enabled)
1161 // SUBTYPE: slider value
1162 // CATEGORY: QUICK_SETTINGS
1163 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001164 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001165
1166 // OPEN: Settings > Display > Brightness Slider
1167 // CATEGORY: SETTINGS
1168 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001169 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001170
1171 // OPEN: Settings > Apps > Configure Apps > Draw over other apps
1172 // CATEGORY: SETTINGS
1173 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001174 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001175
1176 // OPEN: Display has entered dream mode
1177 // CATEGORY: GLOBAL_SYSTEM_UI
1178 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001179 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001180
1181 // OPEN: Display has entered ambient notification mode
1182 // CATEGORY: GLOBAL_SYSTEM_UI
1183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001184 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001185
1186 // OPEN: Overview
1187 // CATEGORY: GLOBAL_SYSTEM_UI
1188 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001189 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001190
1191 // OPEN: Settings > About phone > Legal information
1192 // CATEGORY: SETTINGS
1193 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001194 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001195
1196 // OPEN: Settings > Search > Perform search
1197 // CATEGORY: SETTINGS
1198 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001199 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001200
1201 // OPEN: Settings > System UI Tuner
1202 // CATEGORY: SETTINGS
1203 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001204 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001205
1206 // OPEN: Settings > System UI Tuner > Quick Settings
1207 // CATEGORY: SETTINGS
1208 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001209 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001210
1211 // OPEN: Settings > System UI Tuner > Demo mode
1212 // CATEGORY: SETTINGS
1213 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001214 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001215
1216 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1217 // PACKAGE: Tile
1218 // CATEGORY: SETTINGS
1219 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001220 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001221
1222 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1223 // PACKAGE: Tile
1224 // CATEGORY: SETTINGS
1225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001226 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001227
1228 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1229 // PACKAGE: Tile
1230 // CATEGORY: SETTINGS
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1235 // PACKAGE: Icon
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1241 // PACKAGE: Icon
1242 // CATEGORY: SETTINGS
1243 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001244 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001245
1246 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1247 // SUBTYPE: false is disabled, true is enabled
1248 // CATEGORY: SETTINGS
1249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001250 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001251
1252 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1253 // SUBTYPE: false is disabled, true is enabled
1254 // CATEGORY: SETTINGS
1255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001256 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1259 // SUBTYPE: 0 is disabled, 1 is enabled
1260 // CATEGORY: SETTINGS
1261 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001262 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001263
1264 // OPEN: Settings > Developer options > Inactive apps
1265 // CATEGORY: SETTINGS
1266 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001267 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001268
1269 // ACTION: Long press home to bring up assistant
1270 // CATEGORY: GLOBAL_SYSTEM_UI
1271 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001272 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001273
1274 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1275 // CATEGORY: SETTINGS
1276 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001277 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001278
1279 // OPEN: Fingerprint Enroll > Find Sensor
1280 // CATEGORY: SETTINGS
1281 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001282 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001283
1284 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1285 // CATEGORY: SETTINGS
1286 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001287 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001288
1289 // OPEN: Fingerprint Enroll introduction
1290 // CATEGORY: SETTINGS
1291 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001292 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001293
1294 // OPEN: Fingerprint Enroll onboarding
1295 // CATEGORY: SETTINGS
1296 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001297 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001298
1299 // OPEN: Fingerprint Enroll > Let's Start!
1300 // CATEGORY: SETTINGS
1301 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001302 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001303
1304 // OPEN: Fingerprint Enroll SUW > Let's Start!
1305 // CATEGORY: SETTINGS
1306 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001307 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001308
1309 // OPEN: Fingerprint Enroll SUW > Find Sensor
1310 // CATEGORY: SETTINGS
1311 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001312 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001313
1314 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1315 // CATEGORY: SETTINGS
1316 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001317 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001318
1319 // OPEN: Fingerprint Enroll SUW introduction
1320 // CATEGORY: SETTINGS
1321 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001322 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001323
1324 // OPEN: Fingerprint Enroll SUW onboarding
1325 // CATEGORY: SETTINGS
1326 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001327 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001328
1329 // ACTION: Add fingerprint > Enroll fingerprint
1330 // CATEGORY: SETTINGS
1331 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001332 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001333
1334 // ACTION: Authenticate using fingerprint
1335 // CATEGORY: SETTINGS
1336 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001337 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001338
1339 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1340 // CATEGORY: SETTINGS
1341 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001342 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001343
1344 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1345 // CATEGORY: SETTINGS
1346 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001347 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001348
1349 // ACTION: Double tap camera shortcut
1350 // CATEGORY: GLOBAL_SYSTEM_UI
1351 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001352 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // ACTION: Double twist camera shortcut
1355 // CATEGORY: GLOBAL_SYSTEM_UI
1356 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001357 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001358
1359 // OPEN: QS Work Mode tile shown
1360 // ACTION: QS Work Mode tile tapped
1361 // SUBTYPE: 0 is off, 1 is on
1362 // CATEGORY: QUICK_SETTINGS
1363 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001364 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001365
1366 // OPEN: Settings > Developer Options > Background Check
1367 // CATEGORY: SETTINGS
1368 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001369 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001370
1371 // OPEN: QS Lock tile shown
1372 // ACTION: QS Lock tile tapped
1373 // SUBTYPE: 0 is off, 1 is on
1374 // CATEGORY: QUICK_SETTINGS
1375 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001376 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001377
1378 // OPEN: QS User Tile shown
1379 // CATEGORY: QUICK_SETTINGS
1380 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001381 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001382
1383 // OPEN: QS Battery tile shown
1384 // CATEGORY: QUICK_SETTINGS
1385 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001386 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001387
1388 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1389 // CATEGORY: SETTINGS
1390 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001391 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001392
1393 // ACTION: Visual interruptions > No screen interuptions toggle
1394 // SUBTYPE: 0 is off, 1 is on
1395 // CATEGORY: SETTINGS
1396 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001397 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001398
1399 // ACTION: Visual interruptions > No notification light toggle
1400 // SUBTYPE: 0 is off, 1 is on
1401 // CATEGORY: SETTINGS
1402 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001403 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001404
1405 // OPEN: Settings > Notifications > [App] > Topic Notifications
1406 // CATEGORY: SETTINGS
1407 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001408 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001409
1410 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1411 // PACKAGE: Selected SMS app
1412 // CATEGORY: SETTINGS
1413 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001414 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001415
1416 // OPEN: QS Color modification tile shown
1417 // ACTION: QS Color modification tile tapped
1418 // SUBTYPE: 0 is off, 1 is on
1419 // CATEGORY: QUICK_SETTINGS
1420 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001421 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001422
1423 // OPEN: QS Custom tile shown
1424 // ACTION: QS Work Mode tile tapped
1425 // CATEGORY: QUICK_SETTINGS
1426 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001427 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001428
1429 // ACTION: Visual interruptions > Never turn off the screen toggle
1430 // SUBTYPE: 0 is off, 1 is on
1431 // CATEGORY: SETTINGS
1432 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001433 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001434
Chris Wren7c516842016-03-01 16:44:32 -05001435 // ACTION: Overview > Long-press task, drag to enter split-screen
1436 // CATEGORY: GLOBAL_SYSTEM_UI
1437 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001438 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1439
Chris Wren7c516842016-03-01 16:44:32 -05001440 // ACTION: In App > Long-press Overview button to enter split-screen
1441 // CATEGORY: GLOBAL_SYSTEM_UI
1442 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001443 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1444
Chris Wren7c516842016-03-01 16:44:32 -05001445 // ACTION: In App > Swipe Overview button to enter split-screen
1446 // CATEGORY: GLOBAL_SYSTEM_UI
1447 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001448 ACTION_WINDOW_DOCK_SWIPE = 272;
1449
Chris Wren7c516842016-03-01 16:44:32 -05001450 // ACTION: Launch profile-specific app > Confirm credentials
1451 // CATEGORY: GLOBAL_SYSTEM_UI
1452 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001453 PROFILE_CHALLENGE = 273;
1454
Chris Wren7c516842016-03-01 16:44:32 -05001455 // OPEN: QS Battery detail panel
1456 // CATEGORY: GLOBAL_SYSTEM_UI
1457 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001458 QS_BATTERY_DETAIL = 274;
1459
Chris Wren7c516842016-03-01 16:44:32 -05001460 // OPEN: Overview > History
1461 // CATEGORY: GLOBAL_SYSTEM_UI
1462 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001463 OVERVIEW_HISTORY = 275;
1464
Chris Wren7c516842016-03-01 16:44:32 -05001465 // ACTION: Overview > Page by tapping Overview button
1466 // CATEGORY: GLOBAL_SYSTEM_UI
1467 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001468 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001469
Chris Wren7c516842016-03-01 16:44:32 -05001470 // ACTION: Overview > Select app
1471 // CATEGORY: GLOBAL_SYSTEM_UI
1472 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001473 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001474
Chris Wren7c516842016-03-01 16:44:32 -05001475 // ACTION: View emergency info
1476 // CATEGORY: GLOBAL_SYSTEM_UI
1477 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001478 ACTION_VIEW_EMERGENCY_INFO = 278;
1479
Chris Wren7c516842016-03-01 16:44:32 -05001480 // ACTION: Edit emergency info activity
1481 // CATEGORY: SETTINGS
1482 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001483 ACTION_EDIT_EMERGENCY_INFO = 279;
1484
Chris Wren7c516842016-03-01 16:44:32 -05001485 // ACTION: Edit emergency info field
1486 // CATEGORY: SETTINGS
1487 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001488 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1489
Chris Wren7c516842016-03-01 16:44:32 -05001490 // ACTION: Add emergency contact
1491 // CATEGORY: SETTINGS
1492 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001493 ACTION_ADD_EMERGENCY_CONTACT = 281;
1494
Chris Wren7c516842016-03-01 16:44:32 -05001495 // ACTION: Delete emergency contact
1496 // CATEGORY: SETTINGS
1497 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001498 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1499
Chris Wren7c516842016-03-01 16:44:32 -05001500 // ACTION: Call emergency contact
1501 // CATEGORY: SETTINGS
1502 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001503 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001504
Chris Wren7c516842016-03-01 16:44:32 -05001505 // OPEN: QS Data Saver tile shown
1506 // ACTION: QS Data Saver tile tapped
1507 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001508 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001509
Robin Lee8c1306e2016-02-01 11:37:02 +00001510 // OPEN: Settings > Security > User credentials
1511 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001512 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001513 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001514
Chris Wren7c516842016-03-01 16:44:32 -05001515 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1516 // CATEGORY: GLOBAL_SYSTEM_UI
1517 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001518 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001519
1520 // Logged when the user scrolls through overview manually
1521 OVERVIEW_SCROLL = 287;
1522
1523 // Logged when the overview times out automatically selecting an app
1524 OVERVIEW_SELECT_TIMEOUT = 288;
1525
1526 // Logged when a user dismisses a task in overview
1527 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001528
1529 // Logged when the user modifying the notification importance slider.
1530 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1531
1532 // Logged when the user saves a modification to notification importance. Negative numbers
1533 // indicate the user lowered the importance; positive means they increased it.
1534 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001535
Chris Wren7c516842016-03-01 16:44:32 -05001536 // ACTION: Long-press power button, then tap "Take bug report" option.
1537 // CATEGORY: GLOBAL_SYSTEM_UI
1538 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001539 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1540
Chris Wren7c516842016-03-01 16:44:32 -05001541 // ACTION: Long-press power button, then long-press "Take bug report" option.
1542 // CATEGORY: GLOBAL_SYSTEM_UI
1543 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001544 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1545
Chris Wren7c516842016-03-01 16:44:32 -05001546 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1547 // CATEGORY: SETTINGS
1548 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001549 // Interactive bug report initiated from Settings.
1550 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1551
Chris Wren7c516842016-03-01 16:44:32 -05001552 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1553 // CATEGORY: SETTINGS
1554 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001555 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001556 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1557
Chris Wren7c516842016-03-01 16:44:32 -05001558 // ACTION: User tapped notification action to cancel a bug report
1559 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001560 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001561 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1562
Chris Wren7c516842016-03-01 16:44:32 -05001563 // ACTION: User tapped notification action to launch bug report details screen
1564 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001565 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001566 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1567
Chris Wren7c516842016-03-01 16:44:32 -05001568 // ACTION: User tapped notification action to take adition screenshot on bug report
1569 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001570 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001571 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1572
Chris Wren7c516842016-03-01 16:44:32 -05001573 // ACTION: User tapped notification to share bug report
1574 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001575 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001576 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1577
Chris Wren7c516842016-03-01 16:44:32 -05001578 // ACTION: User changed bug report name using the details screen
1579 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001580 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001581 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1582
Chris Wren7c516842016-03-01 16:44:32 -05001583 // ACTION: User changed bug report title using the details screen
1584 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001585 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001586 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1587
Chris Wren7c516842016-03-01 16:44:32 -05001588 // ACTION: User changed bug report description using the details screen
1589 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001590 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001591 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1592
Chris Wren7c516842016-03-01 16:44:32 -05001593 // ACTION: User tapped Save in the bug report details screen.
1594 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001595 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001596 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1597
Chris Wren7c516842016-03-01 16:44:32 -05001598 // ACTION: User tapped Cancel in the bug report details screen.
1599 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001600 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001601 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001602
1603 // Tuner: Open/close calibrate dialog.
1604 TUNER_CALIBRATE_DISPLAY = 305;
1605
1606 // Tuner: Open/close color and appearance.
1607 TUNER_COLOR_AND_APPEARANCE = 306;
1608
1609 // Tuner: Apply calibrate dialog.
1610 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1611
1612 // Tuner: Open/close night mode.
1613 TUNER_NIGHT_MODE = 308;
1614
1615 // Tuner: Change night mode.
1616 ACTION_TUNER_NIGHT_MODE = 309;
1617
1618 // Tuner: Change night mode auto.
1619 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1620
1621 // Tuner: Change night mode adjust dark theme.
1622 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1623
1624 // Tuner: Change night mode adjust tint.
1625 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1626
1627 // Tuner: Change night mode adjust brightness.
1628 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1629
1630 // Tuner: Change do not disturb in volume panel.
1631 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1632
1633 // Tuner: Change do not disturb volume buttons shortcut.
1634 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001635
1636 // Logs the action the user takes when an app crashed.
1637 ACTION_APP_CRASH = 316;
1638
1639 // Logs the action the user takes when an app ANR'd.
1640 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001641
1642 // Logged when a user double taps the overview button to launch the previous task
1643 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001644
1645 // Logged when we execute an app transition. This indicates the total delay from startActivity
1646 // until the app transition is starting to animate, in milliseconds.
1647 APP_TRANSITION_DELAY_MS = 319;
1648
1649 // Logged when we execute an app transition. This indicates the reason why the transition
1650 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1651 APP_TRANSITION_REASON = 320;
1652
1653 // Logged when we execute an app transition and we drew a starting window. This indicates the
1654 // delay from startActivity until the starting window was drawn.
1655 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1656
1657 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1658 // the delay from startActivity until all windows have been drawn.
1659 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1660
1661 // Logged when we execute an app transition. This indicates the component name of the current
1662 // transition.
1663 APP_TRANSITION_COMPONENT_NAME = 323;
1664
1665 // Logged when we execute an app transition. This indicates whether the process was already
1666 // running.
1667 APP_TRANSITION_PROCESS_RUNNING = 324;
1668
1669 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1670 // the transition was executed.
1671 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001672
Chris Wren38f98812016-07-13 14:28:40 -04001673 // ACTION: app requested access to a scoped directory, user granted it.
1674 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1675 // CATEGORY: GLOBAL_SYSTEM_UI
1676 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001677 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1678
Chris Wren38f98812016-07-13 14:28:40 -04001679 // ACTION: app requested access to a scoped directory, user denied it.
1680 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1681 // CATEGORY: GLOBAL_SYSTEM_UI
1682 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001683 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1684
Chris Wren38f98812016-07-13 14:28:40 -04001685 // ACTION: app requested access to a scoped directory, user granted it.
1686 // PACKAGE: app that requested access
1687 // CATEGORY: GLOBAL_SYSTEM_UI
1688 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001689 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1690
Chris Wren38f98812016-07-13 14:28:40 -04001691 // ACTION: app requested access to a scoped directory, user denied it.
1692 // PACKAGE: app that requested access.
1693 // CATEGORY: GLOBAL_SYSTEM_UI
1694 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001695 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1696
Chris Wren38f98812016-07-13 14:28:40 -04001697 // ACTION: app requested access to a directory user has already been granted
1698 // access before.
1699 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1700 // CATEGORY: GLOBAL_SYSTEM_UI
1701 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001702 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1703
Chris Wren38f98812016-07-13 14:28:40 -04001704 // ACTION: app requested access to a directory user has already been granted
1705 // access before.
1706 // PACKAGE: app that requested access.
1707 // CATEGORY: GLOBAL_SYSTEM_UI
1708 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001709 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001710
Chris Wren38f98812016-07-13 14:28:40 -04001711 // ACTION: Logged when the user slides a notification and reveals the gear
1712 // beneath it.
1713 // CATEGORY: NOTIFICATION
1714 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001715 ACTION_REVEAL_GEAR = 332;
1716
Chris Wren38f98812016-07-13 14:28:40 -04001717 // ACTION: Logged when the user taps on the gear beneath a notification.
1718 // CATEGORY: NOTIFICATION
1719 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001720 ACTION_TOUCH_GEAR = 333;
1721
Ruben Brunke24b9a62016-02-16 21:38:24 -08001722 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001723 // CATEGORY: SETTINGS
1724 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001725 VR_MANAGE_LISTENERS = 334;
1726
Jason Monk6f5354d2016-03-08 14:18:08 -05001727 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001728 // CATEGORY: SETTINGS
1729 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001730 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001731
Jason Monk6f5354d2016-03-08 14:18:08 -05001732 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001733 // CATEGORY: SETTINGS
1734 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001735 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001736
Jason Monk6f5354d2016-03-08 14:18:08 -05001737 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001738 // CATEGORY: SETTINGS
1739 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001740 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001741
Jason Monk6f5354d2016-03-08 14:18:08 -05001742 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001743 // CATEGORY: SETTINGS
1744 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001745 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001746
Jason Monk6f5354d2016-03-08 14:18:08 -05001747 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001748 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001749 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001750
Jason Monk6f5354d2016-03-08 14:18:08 -05001751 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001752 // CATEGORY: SETTINGS
1753 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001754 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001755
Jason Monk6f5354d2016-03-08 14:18:08 -05001756 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001757 // CATEGORY: SETTINGS
1758 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001759 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001760
Jason Monk6f5354d2016-03-08 14:18:08 -05001761 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001762 // CATEGORY: SETTINGS
1763 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001764 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001765
Jason Monk6f5354d2016-03-08 14:18:08 -05001766 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001767 // CATEGORY: SETTINGS
1768 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001769 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001770
Jason Monk6f5354d2016-03-08 14:18:08 -05001771 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001772 // CATEGORY: SETTINGS
1773 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001774 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001775
Jason Monk6f5354d2016-03-08 14:18:08 -05001776 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001777 // CATEGORY: SETTINGS
1778 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001779 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001780
Jason Monk6f5354d2016-03-08 14:18:08 -05001781 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001782 // CATEGORY: SETTINGS
1783 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001784 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001785
Jason Monk6f5354d2016-03-08 14:18:08 -05001786 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001787 // CATEGORY: SETTINGS
1788 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001789 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001790
Jason Monk6f5354d2016-03-08 14:18:08 -05001791 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001792 // CATEGORY: SETTINGS
1793 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001794 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001795
Jason Monk6f5354d2016-03-08 14:18:08 -05001796 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001797 // CATEGORY: SETTINGS
1798 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001799 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1800
1801 // Used for generic logging of Settings Preference Persistence, should not be used
1802 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001803 // CATEGORY: SETTINGS
1804 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001805 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001806
Jason Monk6f5354d2016-03-08 14:18:08 -05001807 // Settings -> Apps -> Gear -> Special access
1808 SPECIAL_ACCESS = 351;
1809
Muyuan Lia2129992016-03-03 18:30:39 -08001810 // Logs that the user docks window via shortcut key.
1811 WINDOW_DOCK_SHORTCUTS = 352;
1812
Felipe Lemeadccb992016-03-09 17:40:49 -08001813 // User already denied access to the request folder; action takes an integer
1814 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001815 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001816 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1817
1818 // User already denied access to the request folder; action pass package name
1819 // of calling package.
1820 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1821
1822 // User denied access to the request folder and checked 'Do not ask again';
1823 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001824 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001825 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1826
1827 // User denied access to the request folder and checked 'Do not ask again';
1828 // action pass package name of calling package.
1829 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1830
Winson3b6ba1a2016-03-22 15:37:54 -07001831 // Logged when a user dismisses all task in overview
1832 OVERVIEW_DISMISS_ALL = 357;
1833
Jason Monk96defbe2016-03-29 16:51:03 -04001834 // Quick Settings -> Edit
1835 QS_EDIT = 358;
1836
1837 // Quick Settings -> Edit -> Overflow -> Reset
1838 ACTION_QS_EDIT_RESET = 359;
1839
1840 // QS -> Edit - Drag a tile out of the active tiles.
1841 // The _SPEC contains either the spec of the tile or
1842 // the package of the 3rd party app in the PKG field.
1843 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1844 ACTION_QS_EDIT_REMOVE = 361;
1845
1846 // QS -> Edit - Drag a tile into the active tiles.
1847 // The _SPEC contains either the spec of the tile or
1848 // the package of the 3rd party app in the PKG field.
1849 ACTION_QS_EDIT_ADD_SPEC = 362;
1850 ACTION_QS_EDIT_ADD = 363;
1851
1852 // QS -> Edit - Drag a tile within the active tiles.
1853 // The _SPEC contains either the spec of the tile or
1854 // the package of the 3rd party app in the PKG field.
1855 ACTION_QS_EDIT_MOVE_SPEC = 364;
1856 ACTION_QS_EDIT_MOVE = 365;
1857
1858 // Long-press on a QS tile. Tile spec in package field.
1859 ACTION_QS_LONG_PRESS = 366;
1860
Anna Galuszadad131f2016-03-22 13:49:02 -07001861 // OPEN: SUW Welcome Screen -> Vision Settings
1862 // CATEGORY: SETTINGS
1863 // OS: N
1864 SUW_ACCESSIBILITY = 367;
1865
1866 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
1867 // ACTION: New magnification gesture configuration is chosen
1868 // SUBTYPE: 0 is off, 1 is on
1869 // CATEGORY: SETTINGS
1870 // OS: N
1871 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1872
1873 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1874 // ACTION: New font size is chosen
1875 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1876 // CATEGORY: SETTINGS
1877 // OS: N
1878 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1879
1880 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1881 // ACTION: New display size is chosen
1882 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1883 // CATEGORY: SETTINGS
1884 // OS: N
1885 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1886
1887 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1888 // ACTION: New screen reader configuration is chosen
1889 // SUBTYPE: 0 is off, 1 is on
1890 // CATEGORY: SETTINGS
1891 // OS: N
1892 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1893
Jason Monkc3620392016-03-30 15:46:03 -04001894 // ------- Begin N Settings conditionals -----
1895 // Conditionals are the green bars at the top of the settings dashboard
1896 // All conditionals will have visible/hide events onResume/onPause
1897 // but they will also be used as extra ints in the
1898 // dismiss/expand/collapse/click/button events
1899
1900 // swipe away conditional
1901 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1902
1903 // click on collapsed conditional or clicks expand button
1904 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1905
1906 // click collapse button on expanded conditional
1907 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1908
1909 // click main area of expanded conditional
1910 ACTION_SETTINGS_CONDITION_CLICK = 375;
1911
1912 // click a direct button on expanded conditional
1913 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1914
1915 // Airplane mode on
1916 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1917 // AKA Data saver on
1918 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1919 // Battery saver on
1920 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1921 // Cellular data off
1922 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1923 // Do not disturb on
1924 SETTINGS_CONDITION_DND = 381;
1925 // Hotspot on
1926 SETTINGS_CONDITION_HOTSPOT = 382;
1927 // Work profile off
1928 SETTINGS_CONDITION_WORK_MODE = 383;
1929
Jason Monk1b5d87b2016-03-30 16:03:15 -04001930 // ------- Begin N Settings suggestions -----
1931 // Since suggestions come from system apps, suggestions will
1932 // have generic constants and the package providing the suggestion
1933 // will be put in the package field. For suggestions in the Settings
1934 // package, the class name will be filled in instead (since settings
1935 // provides several suggetions).
1936
1937 // Settings shown/hidden on main settings dashboard.
1938 // These are actually visibility events, but visible/hidden doesn't
1939 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001940 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1941 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001942
1943 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001944 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001945
1946 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001947 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001948
Jason Monk397df682016-03-28 15:48:34 -04001949 // Settings > Apps > Gear > Special Access > Premium SMS access
1950 PREMIUM_SMS_ACCESS = 388;
1951
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001952 // Logged when the user resizes the docked stack. Arguments:
1953 // 0: Split 50:50
1954 // 1: Docked smaller
1955 // 2: Docked larger
1956 ACTION_WINDOW_DOCK_RESIZE = 389;
1957
1958 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1959 // 0: Docked gets maximized
1960 // 1: Fullscreen gets maximized
1961 ACTION_WINDOW_UNDOCK_MAX = 390;
1962
1963 // User tried to dock an unresizable app.
1964 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1965
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001966 // System UI Tuner > Other > Power notification controls
1967 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1968
1969 // System UI Tuner > Other > Power notification controls > Toggle on/off
1970 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1971
Chris Wren38f98812016-07-13 14:28:40 -04001972 // Action: user enable / disabled data saver using Settings
1973 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1974 // VALUE: 1 for enabled, 0 for disabled
1975 // CATEGORY: SETTINGS
1976 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001977 ACTION_DATA_SAVER_MODE = 394;
1978
Chris Wren38f98812016-07-13 14:28:40 -04001979 // User whitelisted an app for Data Saver mode; action pass package name of app
1980 // Action: user enable / disabled data saver using Settings
1981 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
1982 // or
1983 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
1984 // VALUE: package name of APP
1985 // CATEGORY: SETTINGS
1986 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001987 ACTION_DATA_SAVER_WHITELIST = 395;
1988
Chris Wren38f98812016-07-13 14:28:40 -04001989 // User blacklisted an app for Data Saver mode; action pass package name of app
1990 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
1991 // VALUE: package name of APP
1992 // CATEGORY: SETTINGS
1993 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001994 ACTION_DATA_SAVER_BLACKLIST = 396;
1995
Adrian Roosceeb04c2016-04-25 14:00:54 -07001996 // User opened a remote input view associated with a notification. Passes package name of app
1997 // that posted the notification. Note that this can also happen transiently during notification
1998 // reinflation.
1999 ACTION_REMOTE_INPUT_OPEN = 397;
2000
2001 // User attempt to send data through a remote input view associated with a notification.
2002 // Passes package name of app that posted the notification. May succeed or fail.
2003 ACTION_REMOTE_INPUT_SEND = 398;
2004
2005 // Failed attempt to send data through a remote input view associated with a
2006 // notification. Passes package name of app that posted the notification.
2007 ACTION_REMOTE_INPUT_FAIL = 399;
2008
2009 // User closed a remote input view associated with a notification. Passes package name of app
2010 // that posted the notification. Note that this can also happen transiently during notification
2011 // reinflation.
2012 ACTION_REMOTE_INPUT_CLOSE = 400;
2013
Tony Mak7a5b17bb2016-04-29 10:27:48 +01002014 // OPEN: Settings > Accounts > Work profile settings
2015 // CATEGORY: SETTINGS
2016 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
2017
Jason Monk25118d12016-05-10 13:25:50 -04002018 // Settings -> Dev options -> Convert to file encryption
2019 CONVERT_FBE = 402;
2020
2021 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
2022 CONVERT_FBE_CONFIRM = 403;
2023
2024 // Settings -> Dev options -> Running services
2025 RUNNING_SERVICES = 404;
2026
Jason Monka1f697f2016-05-06 15:09:44 -04002027 // The dialog shown by 3P intent to change current webview implementation.
2028 WEBVIEW_IMPLEMENTATION = 405;
2029
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002030 // Settings launched from expanded quick settings.
2031 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2032
Chris Wren698b1702016-05-23 11:16:32 -04002033 // Notification expansion state toggled by the expand affordance.
2034 ACTION_NOTIFICATION_EXPANDER = 407;
2035
2036 // Notification group expansion state toggled by the expand affordance.
2037 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2038
Chris Wren7ee84182016-05-27 13:34:02 -04002039
Chris Wren6abeeb92016-05-26 14:44:38 -04002040 // Notification expansion state toggled by the expand gesture.
2041 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2042
2043 // Notification group expansion state toggled by the expand gesture.
2044 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2045
Bhavik Singh3451da42016-06-01 18:25:59 -07002046 // User performs gesture that activates the ambient display
2047 // 1: Gesture performed is Nudge
2048 // 2: Gesture performed is Pickup
2049 // 4: Gesture performed is Double Tap
2050 ACTION_AMBIENT_GESTURE = 411;
2051
Jason Monk9fa5f822016-05-11 10:26:31 -04002052 // ---- End N Constants, all N constants go above this line ----
2053
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002054 // ------- Begin N App Disambig Shade -----
2055 // Application disambig shade opened or closed with a featured app.
2056 // These are actually visibility events, but visible/hidden doesn't
2057 // take a package, so these are being logged as actions.
2058 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002059 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2060 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002061
2062 // Application disambig shade opened or closed without a featured app.
2063 // These are actually visibility events, but visible/hidden doesn't
2064 // take a package, so these are being logged as actions.
2065 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002066 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2067 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002068
2069 // User opens in an app by pressing “Always” in the application disambig shade.
2070 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002071 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002072
2073 // User opens in an app by pressing “Just Once” in the application disambig shade.
2074 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002075 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002076
2077 // User opens in an app by tapping on its name in the application disambig shade.
2078 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002079 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002080
Daniel Nishi010aa492016-05-11 09:42:24 -07002081 // OPEN: Settings > Internal storage > Storage manager
2082 // CATEGORY: SETTINGS
2083 STORAGE_MANAGER_SETTINGS = 458;
2084
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002085 // OPEN: Settings -> Gestures
2086 // CATEGORY: SETTINGS
2087 SETTINGS_GESTURES = 459;
2088
Daniel Nishi597e67f2016-05-18 13:56:13 -07002089 // ------ Begin Deletion Helper ------
2090 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2091 // SUBTYPE: false is off, true is on
2092 // CATEGORY: SETTINGS
2093 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002094
Daniel Nishi597e67f2016-05-18 13:56:13 -07002095 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2096 // SUBTYPE: false is off, true is on
2097 // CATEGORY: SETTINGS
2098 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2099
2100 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2101 // CATEGORY: SETTINGS
2102 // PACKAGE: Unchecked app
2103 ACTION_DELETION_SELECTION_APP_ON = 462;
2104
2105 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2106 // CATEGORY: SETTINGS
2107 // PACKAGE: Checked app
2108 ACTION_DELETION_SELECTION_APP_OFF = 463;
2109
2110 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2111 // SUBTYPE: false is expanded, true is collapsed
2112 // CATEGORY: SETTINGS
2113 ACTION_DELETION_APPS_COLLAPSED = 464;
2114
2115 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2116 // SUBTYPE: false is off, true is on
2117 // CATEGORY: SETTINGS
2118 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2119
2120 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2121 // SUBTYPE: false is expanded, true is collapsed
2122 // CATEGORY: SETTINGS
2123 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2124
2125 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2126 // CATEGORY: SETTINGS
2127 ACTION_DELETION_HELPER_CLEAR = 467;
2128
2129 // ACTION: Settings > Storage > Free Up Space > Cancel
2130 // CATEGORY: SETTINGS
2131 ACTION_DELETION_HELPER_CANCEL = 468;
2132
2133 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2134 // CATEGORY: SETTINGS
2135 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2136
2137 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2138 // CATEGORY: SETTINGS
2139 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2140
2141 // Deletion helper encountered an error during package deletion.
2142 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2143
2144 // Deletion helper encountered an error during downloads folder deletion.
2145 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2146
2147 // Deletion helper encountered an error during photo and video deletion.
2148 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2149
Fan Zhang5e956e82016-05-06 10:51:47 -07002150 // OPEN: Settings (root page if there are multiple tabs)
2151 // CATEGORY: SETTINGS
2152 DASHBOARD_CONTAINER = 474;
2153
2154 // OPEN: Settings -> SUPPORT TAB
2155 // CATEGORY: SETTINGS
2156 SUPPORT_FRAGMENT = 475;
2157
2158 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002159 // CATEGORY: SETTINGS
jackqdyuleia2a14342017-02-28 16:20:48 -08002160 ACTION_SELECT_SUMMARY = 476;
Fan Zhang5e956e82016-05-06 10:51:47 -07002161
2162 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002163 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002164 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2165
Fan Zhanga1985502016-06-16 16:48:38 -07002166 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002167 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002168 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2169
2170 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002171 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002172 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2173
2174 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002175 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002176 ACTION_SUPPORT_SIGN_IN = 480;
2177
2178 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002179 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002180 ACTION_SUPPORT_PHONE = 481;
2181
2182 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002183 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002184 ACTION_SUPPORT_CHAT = 482;
2185
2186 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002187 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002188 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2189
2190 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002191 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002192 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2193
Fan Zhang80807212016-06-30 12:26:55 -07002194 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002195 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002196 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2197
2198 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002199 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002200 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2201
2202 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002203 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002204 ACTION_SUPPORT_DIAL_TOLLED = 487;
2205
Justin Klaassen19494272016-07-18 21:38:24 -07002206 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002207 // CATEGORY: SETTINGS
2208 NIGHT_DISPLAY_SETTINGS = 488;
2209
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002210 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
jackqdyuleia2a14342017-02-28 16:20:48 -08002211 // SUBTYPE: false is off, true is on
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002212 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2213
Jason Monk484fd362016-07-13 15:24:32 -04002214 // Settings launched from collapsed quick settings.
2215 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2216
Justin Klaassen19494272016-07-18 21:38:24 -07002217 // OPEN: QS Night Light tile shown
2218 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002219 // SUBTYPE: 0 is off, 1 is on
2220 // CATEGORY: QUICK_SETTINGS
2221 QS_NIGHT_DISPLAY = 491;
2222
Justin Klaassen19494272016-07-18 21:38:24 -07002223 // Night Light on
2224 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2225
Doris Ling3c00afb2016-07-19 17:04:21 -07002226 // System navigation key up.
2227 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2228
2229 // System navigation key down.
2230 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2231
Doris Ling6dd3e462016-08-04 13:17:27 -07002232 // OPEN: Settings > Display -> Ambient Display
2233 // CATEGORY: SETTINGS
2234 ACTION_AMBIENT_DISPLAY = 495;
2235
Adrian Roos159ef7b2016-02-25 11:58:32 -08002236 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2237
Adrian Roos1cffe3c2016-11-28 15:46:06 -08002238 // ACTION: The lockscreen gets shown because the SIM card was removed
2239 // SUBTYPE: false: device was previously unlocked, true: device was previously locked
2240 // CATEGORY: GLOBAL_SYSTEM_UI
2241 // OS: N-MR2
2242 ACTION_LOCK_BECAUSE_SIM_REMOVED = 496;
2243
2244 // ---- End N-MR2 Constants, all N-MR2 constants go above this line ----
2245
Clara Bayarric17a5982016-04-15 12:26:47 +01002246 // ------- Begin N Keyboard Shortcuts Helper -----
2247 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002248 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002249
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002250 // OPEN: Print Preview screen
2251 // Package: Package of app where print job is from
2252 PRINT_PREVIEW = 501;
2253
2254 // OPEN: User expands full print job options shade in print preview.
2255 PRINT_JOB_OPTIONS = 502;
2256
2257 // OPEN: “All Printers” screen for selecting printer
2258 // Subtype: # of printers listed
2259 PRINT_ALL_PRINTERS = 503;
2260
2261 // OPEN: “Add Printers” screen for adding printers
2262 // Subtype: # of enabled print service listed
2263 PRINT_ADD_PRINTERS = 504;
2264
2265 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2266 // Package: Package of print service.
2267 ACTION_PRINT = 505;
2268
2269 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2270 // Count all ACTION_PRINTER_SELECT_ALL actions.
2271 // Package: Package of print service tied to printer
2272 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2273
2274 // ACTION: User selects a printer from the “All printers” screen.
2275 // Package: Package of print service tied to printer
2276 ACTION_PRINTER_SELECT_ALL = 507;
2277
2278 // ACTION: User changes an option for the print job from print preview.
2279 // Subtype: 1: Copies
2280 // 2: Color mode
2281 // 3: Duplex mode
2282 // 4: Media (==Paper) size
2283 // 5: Orientation
2284 // 6: Page range
2285 // Package: Package of print service tied to printer
2286 ACTION_PRINT_JOB_OPTIONS = 508;
2287
2288 // ACTION: User searches for printer from All Printers
2289 ACTION_PRINTER_SEARCH = 509;
2290
2291 // ACTION: User selects “Add print service” button from All Printers
2292 ACTION_PRINT_SERVICE_ADD = 510;
2293
2294 // ACTION: User Enables/Disables Print Service via any means.
2295 // Subtype: 0: Enabled
2296 // 1: Disabled
2297 ACTION_PRINT_SERVICE_TOGGLE = 511;
2298
2299 // ACTION: User installs print recommended print service
2300 // Package: Package of print service
2301 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2302
Doris Ling88a6b162016-08-08 16:17:43 -07002303 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2304 // SUBTYPE: sub settings classname
2305 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2306
Fan Zhang92c60382016-08-08 14:03:53 -07002307 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2308 USER_DICTIONARY_SETTINGS = 514;
2309
2310 // OPEN: Settings > Date & time > Select time zone
2311 ZONE_PICKER = 515;
2312
2313 // OPEN: Settings > Security > Device administrators
2314 DEVICE_ADMIN_SETTINGS = 516;
2315
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002316 // ACTION: Managed provisioning was launched to set this package as DPC app.
2317 // PACKAGE: DPC's package name.
2318 PROVISIONING_DPC_PACKAGE_NAME = 517;
2319
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002320 // ACTION: Managed provisioning triggered DPC installation.
2321 // PACKAGE: Package name of package which installed DPC.
2322 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2323
2324 // ACTION: Logged when provisioning activity finishes.
2325 // TIME: Indicates time taken by provisioning activity to finish in MS.
2326 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2327
2328 // ACTION: Logged when preprovisioning activity finishes.
2329 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2330 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2331
2332 // ACTION: Logged when encrypt device activity finishes.
2333 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2334 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2335
2336 // ACTION: Logged when web activity finishes.
2337 // TIME: Indicates total time taken by web activity to finish in MS.
2338 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2339
2340 // ACTION: Logged when trampoline activity finishes.
2341 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2342 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2343
2344 // ACTION: Logged when encryption activity finishes.
2345 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2346 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2347
2348 // ACTION: Logged when finalization activity finishes.
2349 // TIME: Indicates time taken by finalization activity to finish in MS.
2350 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002351
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002352 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002353 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002354
Fan Zhang95094182016-08-24 18:14:16 -07002355 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002356 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002357
2358 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002359 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002360
2361 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002362 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002363
2364 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002365 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002366
2367 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002368 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002369
Fan Zhangc1352ae2016-09-16 12:46:11 -07002370 // OPEN: Settings > Security > Use one lock dialog
2371 DIALOG_UNIFICATION_CONFIRMATION = 532;
2372
2373 // OPEN: Settings > Security > User Credential
2374 DIALOG_USER_CREDENTIAL = 533;
2375
2376 // OPEN: Settings > Accounts > Remove account
2377 DIALOG_REMOVE_USER = 534;
2378
2379 // OPEN: Settings > Accounts > Confirm auto sync dialog
2380 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2381
2382 // OPEN: Settings > Apps > Dialog for running service details
2383 DIALOG_RUNNIGN_SERVICE = 536;
2384
2385 // OPEN: Settings > Dialog for hiding home settings
2386 DIALOG_NO_HOME = 537;
2387
2388 // OPEN: Settings > Bluetooth > Rename this device
2389 DIALOG_BLUETOOTH_RENAME = 538;
2390
2391 // OPEN: Settings > Bluetooth > Paired device profile
2392 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2393
2394 // OPEN: Settings > Battery optimization > details for app
2395 DIALOG_HIGH_POWER_DETAILS = 540;
2396
2397 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2398 DIALOG_KEYBOARD_LAYOUT = 541;
2399
2400 // OPEN: Settings > Wifi > WPS Setup dialog
2401 DIALOG_WPS_SETUP = 542;
2402
2403 // OPEN: Settings > WIFI Scan permission dialog
2404 DIALOG_WIFI_SCAN_MODE = 543;
2405
2406 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2407 DIALOG_WIFI_SKIP = 544;
2408
2409 // OPEN: Settings > Wireless > VPN > Config dialog
2410 DIALOG_LEGACY_VPN_CONFIG = 545;
2411
2412 // OPEN: Settings > Wireless > VPN > Config dialog for app
2413 DIALOG_VPN_APP_CONFIG = 546;
2414
2415 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2416 DIALOG_VPN_CANNOT_CONNECT = 547;
2417
2418 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2419 DIALOG_VPN_REPLACE_EXISTING = 548;
2420
2421 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2422 DIALOG_BILLING_CYCLE = 549;
2423
2424 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2425 DIALOG_BILLING_BYTE_LIMIT = 550;
2426
2427 // OPEN: Settings > Billing cycle > turn on data limit dialog
2428 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2429
2430 // OPEN: Settings > Service > Turn off notification access dialog
2431 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2432
2433 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2434 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2435
2436 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2437 DIALOG_ZEN_ACCESS_GRANT = 554;
2438
2439 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2440 DIALOG_ZEN_ACCESS_REVOKE = 555;
2441
2442 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2443 DIALOG_ZEN_TIMEPICKER = 556;
2444
2445 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2446 DIALOG_SERVICE_ACCESS_WARNING = 557;
2447
2448 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2449 DIALOG_APP_INFO_ACTION = 558;
2450
2451 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2452 DIALOG_VOLUME_FORGET = 559;
2453
2454 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2455 DIALOG_VOLUME_SLOW_WARNING = 560;
2456
2457 // OPEN: Settings > Storage > Dialog for initializing a volume
2458 DIALOG_VOLUME_INIT = 561;
2459
2460 // OPEN: Settings > Storage > Dialog for unmounting a volume
2461 DIALOG_VOLUME_UNMOUNT = 562;
2462
2463 // OPEN: Settings > Storage > Dialog for renaming a volume
2464 DIALOG_VOLUME_RENAME = 563;
2465
2466 // OPEN: Settings > Storage > Dialog for clear cache
2467 DIALOG_STORAGE_CLEAR_CACHE = 564;
2468
2469 // OPEN: Settings > Storage > Dialog for system info
2470 DIALOG_STORAGE_SYSTEM_INFO = 565;
2471
2472 // OPEN: Settings > Storage > Dialog for other info
2473 DIALOG_STORAGE_OTHER_INFO = 566;
2474
2475 // OPEN: Settings > Storage > Dialog for user info
2476 DIALOG_STORAGE_USER_INFO = 567;
2477
2478 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2479 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2480
2481 // OPEN: Settings > Add fingerprint > Error dialog
2482 DIALOG_FINGERPINT_ERROR = 569;
2483
2484 // OPEN: Settings > Fingerprint > Rename or delete dialog
2485 DIALOG_FINGERPINT_EDIT = 570;
2486
2487 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2488 DIALOG_FINGERPINT_DELETE_LAST = 571;
2489
2490 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2491 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2492
2493 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2494 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2495
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002496 // OPEN: Settings > Proxy Selector error dialog
2497 DIALOG_PROXY_SELECTOR_ERROR = 574;
2498
2499 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2500 DIALOG_WIFI_P2P_DISCONNECT = 575;
2501
2502 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2503 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2504
2505 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2506 DIALOG_WIFI_P2P_RENAME = 577;
2507
2508 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2509 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2510
2511 // OPEN: Settings > APN > Restore default dialog
2512 DIALOG_APN_RESTORE_DEFAULT = 579;
2513
2514 // OPEN: Settings > Dream > When to dream dialog
2515 DIALOG_DREAM_START_DELAY = 580;
2516
2517 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2518 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2519
2520 // OPEN: Settings > Tether > AP setting dialog
2521 DIALOG_AP_SETTINGS = 582;
2522
2523 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2524 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2525
2526 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2527 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2528
2529 // OPEN: Settings > Account > Remove account dialog
2530 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2531
2532 // OPEN: Settings > Account > Remove account failed dialog
2533 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2534
2535 // OPEN: Settings > Account > Cannot do onetime sync dialog
2536 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2537
2538 // OPEN: Settings > Display > Night light > Set start time dialog
2539 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2540
2541 // OPEN: Settings > Display > Night light > Set end time dialog
2542 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2543
2544 // OPEN: Settings > User > Edit info dialog
2545 DIALOG_USER_EDIT = 590;
2546
2547 // OPEN: Settings > User > Confirm remove dialog
2548 DIALOG_USER_REMOVE = 591;
2549
2550 // OPEN: Settings > User > Enable calling dialog
2551 DIALOG_USER_ENABLE_CALLING = 592;
2552
2553 // OPEN: Settings > User > Enable calling and sms dialog
2554 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2555
2556 // OPEN: Settings > User > Cannot manage device message dialog
2557 DIALOG_USER_CANNOT_MANAGE = 594;
2558
2559 // OPEN: Settings > User > Add user dialog
2560 DIALOG_USER_ADD = 595;
2561
2562 // OPEN: Settings > User > Setup user dialog
2563 DIALOG_USER_SETUP = 596;
2564
2565 // OPEN: Settings > User > Setup profile dialog
2566 DIALOG_USER_SETUP_PROFILE = 597;
2567
2568 // OPEN: Settings > User > Choose user type dialog
2569 DIALOG_USER_CHOOSE_TYPE = 598;
2570
2571 // OPEN: Settings > User > Need lockscreen dialog
2572 DIALOG_USER_NEED_LOCKSCREEN = 599;
2573
2574 // OPEN: Settings > User > Confirm exit guest mode dialog
2575 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2576
2577 // OPEN: Settings > User > Edit user profile dialog
2578 DIALOG_USER_EDIT_PROFILE = 601;
2579
2580 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2581 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2582
2583 // OPEN: Settings > Wifi > Edit AP dialog
2584 DIALOG_WIFI_AP_EDIT = 603;
2585
2586 // OPEN: Settings > Wifi > PBC Config dialog
2587 DIALOG_WIFI_PBC = 604;
2588
2589 // OPEN: Settings > Wifi > Display pin dialog
2590 DIALOG_WIFI_PIN = 605;
2591
2592 // OPEN: Settings > Wifi > Write config to NFC dialog
2593 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002594 // OPEN: Settings > Date > Date picker dialog
2595 DIALOG_DATE_PICKER = 607;
2596
2597 // OPEN: Settings > Date > Time picker dialog
2598 DIALOG_TIME_PICKER = 608;
2599
2600 // OPEN: Settings > Wireless > Manage wireless plan dialog
2601 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002602
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002603 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002604 PROVISIONING_NETWORK_TYPE = 610;
2605
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002606 // ACTION: Logs action which triggered provisioning.
2607 PROVISIONING_ACTION = 611;
2608
Mahaver Chopraab282072016-10-06 19:19:23 +01002609 // ACTION: Logs extra passed by the dpc while provisioning.
2610 PROVISIONING_EXTRA = 612;
2611
Salvador Martinez64867c12016-10-14 15:25:09 -07002612 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2613 BLUETOOTH_DIALOG_FRAGMENT = 613;
2614
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002615 // ACTION: Logs provisioning started by zero touch.
2616 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2617
2618 // ACTION: Logs provisioning started by NFC bump.
2619 PROVISIONING_ENTRY_POINT_NFC = 615;
2620
2621 // ACTION: Logs provisioning started using QR code.
2622 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2623
2624 // ACTION: Logs provisioning started using adb.
2625 PROVISIONING_ENTRY_POINT_ADB = 617;
2626
2627 // ACTION: Logs provisioning started by trusted source.
2628 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2629
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002630 // ACTION: Logged when copy account task finishes.
2631 // TIME: Indicates time taken by copy account task to finish in MS.
2632 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2633
2634 // ACTION: Logged when create profile task finishes.
2635 // TIME: Indicates time taken by create profile task to finish in MS.
2636 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2637
2638 // ACTION: Logged when start profile task finishes.
2639 // TIME: Indicates time taken by start profile task to finish in MS.
2640 PROVISIONING_START_PROFILE_TASK_MS = 621;
2641
2642 // ACTION: Logged when download package task finishes.
2643 // TIME: Indicates time taken by download package task to finish in MS.
2644 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2645
2646 // ACTION: Logged when install package task finishes.
2647 // TIME: Indicates time taken by install package task to finish in MS.
2648 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2649
2650 // ACTION: User cancelled provisioning.
2651 PROVISIONING_CANCELLED = 624;
2652
2653 // ACTION: Logged when provisioning throws an error.
2654 PROVISIONING_ERROR = 625;
2655
2656 // ACTION: Logs the status of copying user account during provisioning.
2657 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2658
2659 // ACTION: Logs the end to end time taken by all provisioning tasks.
2660 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2661
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002662 // OPEN: Settings > Privacy
2663 // CATEGORY: SETTINGS
2664 // OS: O
2665 ENTERPRISE_PRIVACY_SETTINGS = 628;
2666
Abodunrinwa Toki1b304e42016-11-03 23:27:58 +00002667 // ACTION: Longpress on a TextView.
2668 // SUBTYPE: 1 is for START_SELECTION, 2 is for START_DRAG_AND_DROP, 0 is for OTHER.
2669 // CATEGORY: TEXT_CONTROLS
2670 // OS: O
2671 TEXT_LONGPRESS = 629;
2672
Philip P. Moltmann0d8f4b72016-11-09 11:28:05 -08002673 // ACTION: An app requested an unknown permission
2674 // PACKAGE: The package name of the app requesting the permission
2675 ACTION_PERMISSION_REQUEST_UNKNOWN = 630;
2676
2677 // ACTION: An app was granted an unknown permission
2678 // PACKAGE: The package name of the app that was granted the permission
2679 ACTION_PERMISSION_GRANT_UNKNOWN = 631;
2680
2681 // ACTION: An app requested an unknown permission and the request was denied
2682 // PACKAGE: The package name of the app requesting the permission
2683 ACTION_PERMISSION_DENIED_UNKNOWN = 632;
2684
2685 // ACTION: An unknown permission was revoked for an app
2686 // PACKAGE: The package name of the app the permission was revoked for
2687 ACTION_PERMISSION_REVOKE_UNKNOWN = 633;
2688
2689 // ACTION: An app requested the permission READ_CALENDAR
2690 // PACKAGE: The package name of the app requesting the permission
2691 ACTION_PERMISSION_REQUEST_READ_CALENDAR = 634;
2692
2693 // ACTION: An app was granted the permission READ_CALENDAR
2694 // PACKAGE: The package name of the app that was granted the permission
2695 ACTION_PERMISSION_GRANT_READ_CALENDAR = 635;
2696
2697 // ACTION: An app requested the permission READ_CALENDAR and the request was denied
2698 // PACKAGE: The package name of the app requesting the permission
2699 ACTION_PERMISSION_DENIED_READ_CALENDAR = 636;
2700
2701 // ACTION: The permission READ_CALENDAR was revoked for an app
2702 // PACKAGE: The package name of the app the permission was revoked for
2703 ACTION_PERMISSION_REVOKE_READ_CALENDAR = 637;
2704
2705 // ACTION: An app requested the permission WRITE_CALENDAR
2706 // PACKAGE: The package name of the app requesting the permission
2707 ACTION_PERMISSION_REQUEST_WRITE_CALENDAR = 638;
2708
2709 // ACTION: An app was granted the permission WRITE_CALENDAR
2710 // PACKAGE: The package name of the app that was granted the permission
2711 ACTION_PERMISSION_GRANT_WRITE_CALENDAR = 639;
2712
2713 // ACTION: An app requested the permission WRITE_CALENDAR and the request was denied
2714 // PACKAGE: The package name of the app requesting the permission
2715 ACTION_PERMISSION_DENIED_WRITE_CALENDAR = 640;
2716
2717 // ACTION: The permission WRITE_CALENDAR was revoked for an app
2718 // PACKAGE: The package name of the app the permission was revoked for
2719 ACTION_PERMISSION_REVOKE_WRITE_CALENDAR = 641;
2720
2721 // ACTION: An app requested the permission CAMERA
2722 // PACKAGE: The package name of the app requesting the permission
2723 ACTION_PERMISSION_REQUEST_CAMERA = 642;
2724
2725 // ACTION: An app was granted the permission CAMERA
2726 // PACKAGE: The package name of the app that was granted the permission
2727 ACTION_PERMISSION_GRANT_CAMERA = 643;
2728
2729 // ACTION: An app requested the permission CAMERA and the request was denied
2730 // PACKAGE: The package name of the app requesting the permission
2731 ACTION_PERMISSION_DENIED_CAMERA = 644;
2732
2733 // ACTION: The permission CAMERA was revoked for an app
2734 // PACKAGE: The package name of the app the permission was revoked for
2735 ACTION_PERMISSION_REVOKE_CAMERA = 645;
2736
2737 // ACTION: An app requested the permission READ_CONTACTS
2738 // PACKAGE: The package name of the app requesting the permission
2739 ACTION_PERMISSION_REQUEST_READ_CONTACTS = 646;
2740
2741 // ACTION: An app was granted the permission READ_CONTACTS
2742 // PACKAGE: The package name of the app that was granted the permission
2743 ACTION_PERMISSION_GRANT_READ_CONTACTS = 647;
2744
2745 // ACTION: An app requested the permission READ_CONTACTS and the request was denied
2746 // PACKAGE: The package name of the app requesting the permission
2747 ACTION_PERMISSION_DENIED_READ_CONTACTS = 648;
2748
2749 // ACTION: The permission READ_CONTACTS was revoked for an app
2750 // PACKAGE: The package name of the app the permission was revoked for
2751 ACTION_PERMISSION_REVOKE_READ_CONTACTS = 649;
2752
2753 // ACTION: An app requested the permission WRITE_CONTACTS
2754 // PACKAGE: The package name of the app requesting the permission
2755 ACTION_PERMISSION_REQUEST_WRITE_CONTACTS = 650;
2756
2757 // ACTION: An app was granted the permission WRITE_CONTACTS
2758 // PACKAGE: The package name of the app that was granted the permission
2759 ACTION_PERMISSION_GRANT_WRITE_CONTACTS = 651;
2760
2761 // ACTION: An app requested the permission WRITE_CONTACTS and the request was denied
2762 // PACKAGE: The package name of the app requesting the permission
2763 ACTION_PERMISSION_DENIED_WRITE_CONTACTS = 652;
2764
2765 // ACTION: The permission WRITE_CONTACTS was revoked for an app
2766 // PACKAGE: The package name of the app the permission was revoked for
2767 ACTION_PERMISSION_REVOKE_WRITE_CONTACTS = 653;
2768
2769 // ACTION: An app requested the permission GET_ACCOUNTS
2770 // PACKAGE: The package name of the app requesting the permission
2771 ACTION_PERMISSION_REQUEST_GET_ACCOUNTS = 654;
2772
2773 // ACTION: An app was granted the permission GET_ACCOUNTS
2774 // PACKAGE: The package name of the app that was granted the permission
2775 ACTION_PERMISSION_GRANT_GET_ACCOUNTS = 655;
2776
2777 // ACTION: An app requested the permission GET_ACCOUNTS and the request was denied
2778 // PACKAGE: The package name of the app requesting the permission
2779 ACTION_PERMISSION_DENIED_GET_ACCOUNTS = 656;
2780
2781 // ACTION: The permission GET_ACCOUNTS was revoked for an app
2782 // PACKAGE: The package name of the app the permission was revoked for
2783 ACTION_PERMISSION_REVOKE_GET_ACCOUNTS = 657;
2784
2785 // ACTION: An app requested the permission ACCESS_FINE_LOCATION
2786 // PACKAGE: The package name of the app requesting the permission
2787 ACTION_PERMISSION_REQUEST_ACCESS_FINE_LOCATION = 658;
2788
2789 // ACTION: An app was granted the permission ACCESS_FINE_LOCATION
2790 // PACKAGE: The package name of the app that was granted the permission
2791 ACTION_PERMISSION_GRANT_ACCESS_FINE_LOCATION = 659;
2792
2793 // ACTION: An app requested the permission ACCESS_FINE_LOCATION and the request was denied
2794 // PACKAGE: The package name of the app requesting the permission
2795 ACTION_PERMISSION_DENIED_ACCESS_FINE_LOCATION = 660;
2796
2797 // ACTION: The permission ACCESS_FINE_LOCATION was revoked for an app
2798 // PACKAGE: The package name of the app the permission was revoked for
2799 ACTION_PERMISSION_REVOKE_ACCESS_FINE_LOCATION = 661;
2800
2801 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION
2802 // PACKAGE: The package name of the app requesting the permission
2803 ACTION_PERMISSION_REQUEST_ACCESS_COARSE_LOCATION = 662;
2804
2805 // ACTION: An app was granted the permission ACCESS_COARSE_LOCATION
2806 // PACKAGE: The package name of the app that was granted the permission
2807 ACTION_PERMISSION_GRANT_ACCESS_COARSE_LOCATION = 663;
2808
2809 // ACTION: An app requested the permission ACCESS_COARSE_LOCATION and the request was denied
2810 // PACKAGE: The package name of the app requesting the permission
2811 ACTION_PERMISSION_DENIED_ACCESS_COARSE_LOCATION = 664;
2812
2813 // ACTION: The permission ACCESS_COARSE_LOCATION was revoked for an app
2814 // PACKAGE: The package name of the app the permission was revoked for
2815 ACTION_PERMISSION_REVOKE_ACCESS_COARSE_LOCATION = 665;
2816
2817 // ACTION: An app requested the permission RECORD_AUDIO
2818 // PACKAGE: The package name of the app requesting the permission
2819 ACTION_PERMISSION_REQUEST_RECORD_AUDIO = 666;
2820
2821 // ACTION: An app was granted the permission RECORD_AUDIO
2822 // PACKAGE: The package name of the app that was granted the permission
2823 ACTION_PERMISSION_GRANT_RECORD_AUDIO = 667;
2824
2825 // ACTION: An app requested the permission RECORD_AUDIO and the request was denied
2826 // PACKAGE: The package name of the app requesting the permission
2827 ACTION_PERMISSION_DENIED_RECORD_AUDIO = 668;
2828
2829 // ACTION: The permission RECORD_AUDIO was revoked for an app
2830 // PACKAGE: The package name of the app the permission was revoked for
2831 ACTION_PERMISSION_REVOKE_RECORD_AUDIO = 669;
2832
2833 // ACTION: An app requested the permission READ_PHONE_STATE
2834 // PACKAGE: The package name of the app requesting the permission
2835 ACTION_PERMISSION_REQUEST_READ_PHONE_STATE = 670;
2836
2837 // ACTION: An app was granted the permission READ_PHONE_STATE
2838 // PACKAGE: The package name of the app that was granted the permission
2839 ACTION_PERMISSION_GRANT_READ_PHONE_STATE = 671;
2840
2841 // ACTION: An app requested the permission READ_PHONE_STATE and the request was denied
2842 // PACKAGE: The package name of the app requesting the permission
2843 ACTION_PERMISSION_DENIED_READ_PHONE_STATE = 672;
2844
2845 // ACTION: The permission READ_PHONE_STATE was revoked for an app
2846 // PACKAGE: The package name of the app the permission was revoked for
2847 ACTION_PERMISSION_REVOKE_READ_PHONE_STATE = 673;
2848
2849 // ACTION: An app requested the permission CALL_PHONE
2850 // PACKAGE: The package name of the app requesting the permission
2851 ACTION_PERMISSION_REQUEST_CALL_PHONE = 674;
2852
2853 // ACTION: An app was granted the permission CALL_PHONE
2854 // PACKAGE: The package name of the app that was granted the permission
2855 ACTION_PERMISSION_GRANT_CALL_PHONE = 675;
2856
2857 // ACTION: An app requested the permission CALL_PHONE and the request was denied
2858 // PACKAGE: The package name of the app requesting the permission
2859 ACTION_PERMISSION_DENIED_CALL_PHONE = 676;
2860
2861 // ACTION: The permission CALL_PHONE was revoked for an app
2862 // PACKAGE: The package name of the app the permission was revoked for
2863 ACTION_PERMISSION_REVOKE_CALL_PHONE = 677;
2864
2865 // ACTION: An app requested the permission READ_CALL_LOG
2866 // PACKAGE: The package name of the app requesting the permission
2867 ACTION_PERMISSION_REQUEST_READ_CALL_LOG = 678;
2868
2869 // ACTION: An app was granted the permission READ_CALL_LOG
2870 // PACKAGE: The package name of the app that was granted the permission
2871 ACTION_PERMISSION_GRANT_READ_CALL_LOG = 679;
2872
2873 // ACTION: An app requested the permission READ_CALL_LOG and the request was denied
2874 // PACKAGE: The package name of the app requesting the permission
2875 ACTION_PERMISSION_DENIED_READ_CALL_LOG = 680;
2876
2877 // ACTION: The permission READ_CALL_LOG was revoked for an app
2878 // PACKAGE: The package name of the app the permission was revoked for
2879 ACTION_PERMISSION_REVOKE_READ_CALL_LOG = 681;
2880
2881 // ACTION: An app requested the permission WRITE_CALL_LOG
2882 // PACKAGE: The package name of the app requesting the permission
2883 ACTION_PERMISSION_REQUEST_WRITE_CALL_LOG = 682;
2884
2885 // ACTION: An app was granted the permission WRITE_CALL_LOG
2886 // PACKAGE: The package name of the app that was granted the permission
2887 ACTION_PERMISSION_GRANT_WRITE_CALL_LOG = 683;
2888
2889 // ACTION: An app requested the permission WRITE_CALL_LOG and the request was denied
2890 // PACKAGE: The package name of the app requesting the permission
2891 ACTION_PERMISSION_DENIED_WRITE_CALL_LOG = 684;
2892
2893 // ACTION: The permission WRITE_CALL_LOG was revoked for an app
2894 // PACKAGE: The package name of the app the permission was revoked for
2895 ACTION_PERMISSION_REVOKE_WRITE_CALL_LOG = 685;
2896
2897 // ACTION: An app requested the permission ADD_VOICEMAIL
2898 // PACKAGE: The package name of the app requesting the permission
2899 ACTION_PERMISSION_REQUEST_ADD_VOICEMAIL = 686;
2900
2901 // ACTION: An app was granted the permission ADD_VOICEMAIL
2902 // PACKAGE: The package name of the app that was granted the permission
2903 ACTION_PERMISSION_GRANT_ADD_VOICEMAIL = 687;
2904
2905 // ACTION: An app requested the permission ADD_VOICEMAIL and the request was denied
2906 // PACKAGE: The package name of the app requesting the permission
2907 ACTION_PERMISSION_DENIED_ADD_VOICEMAIL = 688;
2908
2909 // ACTION: The permission ADD_VOICEMAIL was revoked for an app
2910 // PACKAGE: The package name of the app the permission was revoked for
2911 ACTION_PERMISSION_REVOKE_ADD_VOICEMAIL = 689;
2912
2913 // ACTION: An app requested the permission USE_SIP
2914 // PACKAGE: The package name of the app requesting the permission
2915 ACTION_PERMISSION_REQUEST_USE_SIP = 690;
2916
2917 // ACTION: An app was granted the permission USE_SIP
2918 // PACKAGE: The package name of the app that was granted the permission
2919 ACTION_PERMISSION_GRANT_USE_SIP = 691;
2920
2921 // ACTION: An app requested the permission USE_SIP and the request was denied
2922 // PACKAGE: The package name of the app requesting the permission
2923 ACTION_PERMISSION_DENIED_USE_SIP = 692;
2924
2925 // ACTION: The permission USE_SIP was revoked for an app
2926 // PACKAGE: The package name of the app the permission was revoked for
2927 ACTION_PERMISSION_REVOKE_USE_SIP = 693;
2928
2929 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS
2930 // PACKAGE: The package name of the app requesting the permission
2931 ACTION_PERMISSION_REQUEST_PROCESS_OUTGOING_CALLS = 694;
2932
2933 // ACTION: An app was granted the permission PROCESS_OUTGOING_CALLS
2934 // PACKAGE: The package name of the app that was granted the permission
2935 ACTION_PERMISSION_GRANT_PROCESS_OUTGOING_CALLS = 695;
2936
2937 // ACTION: An app requested the permission PROCESS_OUTGOING_CALLS and the request was denied
2938 // PACKAGE: The package name of the app requesting the permission
2939 ACTION_PERMISSION_DENIED_PROCESS_OUTGOING_CALLS = 696;
2940
2941 // ACTION: The permission PROCESS_OUTGOING_CALLS was revoked for an app
2942 // PACKAGE: The package name of the app the permission was revoked for
2943 ACTION_PERMISSION_REVOKE_PROCESS_OUTGOING_CALLS = 697;
2944
2945 // ACTION: An app requested the permission READ_CELL_BROADCASTS
2946 // PACKAGE: The package name of the app requesting the permission
2947 ACTION_PERMISSION_REQUEST_READ_CELL_BROADCASTS = 698;
2948
2949 // ACTION: An app was granted the permission READ_CELL_BROADCASTS
2950 // PACKAGE: The package name of the app that was granted the permission
2951 ACTION_PERMISSION_GRANT_READ_CELL_BROADCASTS = 699;
2952
2953 // ACTION: An app requested the permission READ_CELL_BROADCASTS and the request was denied
2954 // PACKAGE: The package name of the app requesting the permission
2955 ACTION_PERMISSION_DENIED_READ_CELL_BROADCASTS = 700;
2956
2957 // ACTION: The permission READ_CELL_BROADCASTS was revoked for an app
2958 // PACKAGE: The package name of the app the permission was revoked for
2959 ACTION_PERMISSION_REVOKE_READ_CELL_BROADCASTS = 701;
2960
2961 // ACTION: An app requested the permission BODY_SENSORS
2962 // PACKAGE: The package name of the app requesting the permission
2963 ACTION_PERMISSION_REQUEST_BODY_SENSORS = 702;
2964
2965 // ACTION: An app was granted the permission BODY_SENSORS
2966 // PACKAGE: The package name of the app that was granted the permission
2967 ACTION_PERMISSION_GRANT_BODY_SENSORS = 703;
2968
2969 // ACTION: An app requested the permission BODY_SENSORS and the request was denied
2970 // PACKAGE: The package name of the app requesting the permission
2971 ACTION_PERMISSION_DENIED_BODY_SENSORS = 704;
2972
2973 // ACTION: The permission BODY_SENSORS was revoked for an app
2974 // PACKAGE: The package name of the app the permission was revoked for
2975 ACTION_PERMISSION_REVOKE_BODY_SENSORS = 705;
2976
2977 // ACTION: An app requested the permission SEND_SMS
2978 // PACKAGE: The package name of the app requesting the permission
2979 ACTION_PERMISSION_REQUEST_SEND_SMS = 706;
2980
2981 // ACTION: An app was granted the permission SEND_SMS
2982 // PACKAGE: The package name of the app that was granted the permission
2983 ACTION_PERMISSION_GRANT_SEND_SMS = 707;
2984
2985 // ACTION: An app requested the permission SEND_SMS and the request was denied
2986 // PACKAGE: The package name of the app requesting the permission
2987 ACTION_PERMISSION_DENIED_SEND_SMS = 708;
2988
2989 // ACTION: The permission SEND_SMS was revoked for an app
2990 // PACKAGE: The package name of the app the permission was revoked for
2991 ACTION_PERMISSION_REVOKE_SEND_SMS = 709;
2992
2993 // ACTION: An app requested the permission RECEIVE_SMS
2994 // PACKAGE: The package name of the app requesting the permission
2995 ACTION_PERMISSION_REQUEST_RECEIVE_SMS = 710;
2996
2997 // ACTION: An app was granted the permission RECEIVE_SMS
2998 // PACKAGE: The package name of the app that was granted the permission
2999 ACTION_PERMISSION_GRANT_RECEIVE_SMS = 711;
3000
3001 // ACTION: An app requested the permission RECEIVE_SMS and the request was denied
3002 // PACKAGE: The package name of the app requesting the permission
3003 ACTION_PERMISSION_DENIED_RECEIVE_SMS = 712;
3004
3005 // ACTION: The permission RECEIVE_SMS was revoked for an app
3006 // PACKAGE: The package name of the app the permission was revoked for
3007 ACTION_PERMISSION_REVOKE_RECEIVE_SMS = 713;
3008
3009 // ACTION: An app requested the permission READ_SMS
3010 // PACKAGE: The package name of the app requesting the permission
3011 ACTION_PERMISSION_REQUEST_READ_SMS = 714;
3012
3013 // ACTION: An app was granted the permission READ_SMS
3014 // PACKAGE: The package name of the app that was granted the permission
3015 ACTION_PERMISSION_GRANT_READ_SMS = 715;
3016
3017 // ACTION: An app requested the permission READ_SMS and the request was denied
3018 // PACKAGE: The package name of the app requesting the permission
3019 ACTION_PERMISSION_DENIED_READ_SMS = 716;
3020
3021 // ACTION: The permission READ_SMS was revoked for an app
3022 // PACKAGE: The package name of the app the permission was revoked for
3023 ACTION_PERMISSION_REVOKE_READ_SMS = 717;
3024
3025 // ACTION: An app requested the permission RECEIVE_WAP_PUSH
3026 // PACKAGE: The package name of the app requesting the permission
3027 ACTION_PERMISSION_REQUEST_RECEIVE_WAP_PUSH = 718;
3028
3029 // ACTION: An app was granted the permission RECEIVE_WAP_PUSH
3030 // PACKAGE: The package name of the app that was granted the permission
3031 ACTION_PERMISSION_GRANT_RECEIVE_WAP_PUSH = 719;
3032
3033 // ACTION: An app requested the permission RECEIVE_WAP_PUSH and the request was denied
3034 // PACKAGE: The package name of the app requesting the permission
3035 ACTION_PERMISSION_DENIED_RECEIVE_WAP_PUSH = 720;
3036
3037 // ACTION: The permission RECEIVE_WAP_PUSH was revoked for an app
3038 // PACKAGE: The package name of the app the permission was revoked for
3039 ACTION_PERMISSION_REVOKE_RECEIVE_WAP_PUSH = 721;
3040
3041 // ACTION: An app requested the permission RECEIVE_MMS
3042 // PACKAGE: The package name of the app requesting the permission
3043 ACTION_PERMISSION_REQUEST_RECEIVE_MMS = 722;
3044
3045 // ACTION: An app was granted the permission RECEIVE_MMS
3046 // PACKAGE: The package name of the app that was granted the permission
3047 ACTION_PERMISSION_GRANT_RECEIVE_MMS = 723;
3048
3049 // ACTION: An app requested the permission RECEIVE_MMS and the request was denied
3050 // PACKAGE: The package name of the app requesting the permission
3051 ACTION_PERMISSION_DENIED_RECEIVE_MMS = 724;
3052
3053 // ACTION: The permission RECEIVE_MMS was revoked for an app
3054 // PACKAGE: The package name of the app the permission was revoked for
3055 ACTION_PERMISSION_REVOKE_RECEIVE_MMS = 725;
3056
3057 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE
3058 // PACKAGE: The package name of the app requesting the permission
3059 ACTION_PERMISSION_REQUEST_READ_EXTERNAL_STORAGE = 726;
3060
3061 // ACTION: An app was granted the permission READ_EXTERNAL_STORAGE
3062 // PACKAGE: The package name of the app that was granted the permission
3063 ACTION_PERMISSION_GRANT_READ_EXTERNAL_STORAGE = 727;
3064
3065 // ACTION: An app requested the permission READ_EXTERNAL_STORAGE and the request was denied
3066 // PACKAGE: The package name of the app requesting the permission
3067 ACTION_PERMISSION_DENIED_READ_EXTERNAL_STORAGE = 728;
3068
3069 // ACTION: The permission READ_EXTERNAL_STORAGE was revoked for an app
3070 // PACKAGE: The package name of the app the permission was revoked for
3071 ACTION_PERMISSION_REVOKE_READ_EXTERNAL_STORAGE = 729;
3072
3073 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE
3074 // PACKAGE: The package name of the app requesting the permission
3075 ACTION_PERMISSION_REQUEST_WRITE_EXTERNAL_STORAGE = 730;
3076
3077 // ACTION: An app was granted the permission WRITE_EXTERNAL_STORAGE
3078 // PACKAGE: The package name of the app that was granted the permission
3079 ACTION_PERMISSION_GRANT_WRITE_EXTERNAL_STORAGE = 731;
3080
3081 // ACTION: An app requested the permission WRITE_EXTERNAL_STORAGE and the request was denied
3082 // PACKAGE: The package name of the app requesting the permission
3083 ACTION_PERMISSION_DENIED_WRITE_EXTERNAL_STORAGE = 732;
3084
3085 // ACTION: The permission WRITE_EXTERNAL_STORAGE was revoked for an app
3086 // PACKAGE: The package name of the app the permission was revoked for
3087 ACTION_PERMISSION_REVOKE_WRITE_EXTERNAL_STORAGE = 733;
3088
Mahaverfa6566e2016-11-29 21:08:14 +00003089 // ACTION: Logged when a provisioning session has started
3090 PROVISIONING_SESSION_STARTED = 734;
3091
3092 // ACTION: Logged when a provisioning session has completed
3093 PROVISIONING_SESSION_COMPLETED = 735;
3094
Chad Brubaker811825a2016-12-06 12:31:15 -08003095 // ACTION: An app requested the permission READ_PHONE_NUMBER
3096 // PACKAGE: The package name of the app requesting the permission
3097 ACTION_PERMISSION_REQUEST_READ_PHONE_NUMBER = 736;
3098
3099 // ACTION: An app was granted the permission READ_PHONE_NUMBER
3100 // PACKAGE: The package name of the app that was granted the permission
3101 ACTION_PERMISSION_GRANT_READ_PHONE_NUMBER = 737;
3102
3103 // ACTION: An app requested the permission READ_PHONE_NUMBER and the request was denied
3104 // PACKAGE: The package name of the app requesting the permission
3105 ACTION_PERMISSION_DENIED_READ_PHONE_NUMBER = 738;
3106
3107 // ACTION: The permission READ_PHONE_NUMBER was revoked for an app
3108 // PACKAGE: The package name of the app the permission was revoked for
3109 ACTION_PERMISSION_REVOKE_READ_PHONE_NUMBER = 739;
3110
Santos Cordon3107d292016-09-20 15:50:35 -07003111 // ACTION: QS Brightness Slider (with auto brightness disabled, and VR enabled)
3112 // SUBTYPE: slider value
3113 // CATEGORY: QUICK_SETTINGS
3114 // OS: 6.0
3115 ACTION_BRIGHTNESS_FOR_VR = 498;
3116
Hugo Benichie1cbf152016-12-08 09:36:52 +09003117 // ACTION: A captive portal was detected during network validation
3118 // CATEGORY: NOTIFICATION
3119 // OS: N-MR2
3120 NOTIFICATION_NETWORK_SIGN_IN = 740;
3121
3122 // ACTION: An unvalidated network without Internet was selected by the user
3123 // CATEGORY: NOTIFICATION
3124 // OS: N-MR2
3125 NOTIFICATION_NETWORK_NO_INTERNET = 741;
3126
3127 // ACTION: A validated network failed revalidation and lost Internet access
3128 // CATEGORY: NOTIFICATION
3129 // OS: N-MR2
3130 NOTIFICATION_NETWORK_LOST_INTERNET = 742;
3131
3132 // ACTION: The system default network switched to a different network
3133 // CATEGORY: NOTIFICATION
3134 // OS: N-MR2
3135 NOTIFICATION_NETWORK_SWITCH = 743;
3136
Fan Zhang074c4cb2016-12-21 12:10:33 -08003137 // OPEN: Settings > System
3138 SETTINGS_SYSTEM_CATEGORY = 744;
3139
3140 // OPEN: Settings > Storage
3141 SETTINGS_STORAGE_CATEGORY = 745;
3142
3143 // OPEN: Settings > Network & Internet
3144 SETTINGS_NETWORK_CATEGORY = 746;
3145
3146 // OPEN: Settings > Connected Device
3147 SETTINGS_CONNECTED_DEVICE_CATEGORY = 747;
3148
3149 // OPEN: Settings > App & Notification
3150 SETTINGS_APP_NOTIF_CATEGORY = 748;
3151
3152 // OPEN: Settings > System > Input & Gesture
3153 SETTINGS_INPUT_CATEGORY = 749;
3154
3155 // OPEN: Settings > System > Language & Region
3156 SETTINGS_LANGUAGE_CATEGORY = 750;
3157
3158 // OPEN: Settings > System > Input & Gesture > Swipe to notification gesture
3159 SETTINGS_GESTURE_SWIPE_TO_NOTIFICATION = 751;
3160
3161 // OPEN: Settings > System > Input & Gesture > Double tap power button gesture
3162 SETTINGS_GESTURE_DOUBLE_TAP_POWER = 752;
3163
3164 // OPEN: Settings > System > Input & Gesture > Pick up gesture
3165 SETTINGS_GESTURE_PICKUP = 753;
3166
3167 // OPEN: Settings > System > Input & Gesture > Double tap screen gesture
3168 SETTINGS_GESTURE_DOUBLE_TAP_SCREEN = 754;
3169
3170 // OPEN: Settings > System > Input & Gesture > Double twist gesture
3171 SETTINGS_GESTURE_DOUBLE_TWIST = 755;
3172
Salvador Martinez8eb4f622016-11-18 13:44:57 -08003173 // OPEN: Settings > Support > SupportDisclaimerDialog > SupportSystemInformationDialog
3174 // CATEGORY: Settings
3175 DIALOG_SUPPORT_SYSTEM_INFORMATION = 756;
3176
Alison Cichowlas803054d2016-12-13 14:38:01 -05003177 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003178 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003179 RESERVED_FOR_LOGBUILDER_CATEGORY = 757;
3180 RESERVED_FOR_LOGBUILDER_TYPE = 758;
3181 RESERVED_FOR_LOGBUILDER_SUBTYPE = 759;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003182
Salvador Martinezc43ab062016-12-21 11:09:11 -08003183 // ACTION: "Do not show again" was enabled in the support disclaimer and the
3184 // user accepted
3185 ACTION_SKIP_DISCLAIMER_SELECTED = 760;
Alison Cichowlas803054d2016-12-13 14:38:01 -05003186
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003187 // Enclosing category for group of APP_TRANSITION_FOO events,
3188 // logged when we execute an app transition.
3189 APP_TRANSITION = 761;
3190
Fan Zhang945deea2017-01-11 16:37:49 -08003191 // ACTION: User leaves Settings search UI without entering any query.
3192 ACTION_LEAVE_SEARCH_RESULT_WITHOUT_QUERY = 762;
3193
3194 // ACTION: Clicking on any search result in Settings.
3195 ACTION_CLICK_SETTINGS_SEARCH_RESULT = 763;
Alison Cichowlas5cc5d8a2017-01-10 11:25:06 -05003196
Fyodor Kupolov7423ffc2017-01-13 15:22:34 -08003197 // ACTION: Allow Battery optimization for an app
3198 APP_SPECIAL_PERMISSION_BATTERY_ALLOW = 764;
3199
3200 // ACTION: Deny Battery optimization for an app
3201 APP_SPECIAL_PERMISSION_BATTERY_DENY = 765;
3202
3203 // ACTION: Enable Device Admin app
3204 APP_SPECIAL_PERMISSION_ADMIN_ALLOW = 766;
3205
3206 // ACTION: Disable Device Admin app
3207 APP_SPECIAL_PERMISSION_ADMIN_DENY = 767;
3208
3209 // ACTION: Allow "Do Not Disturb access" for an app
3210 APP_SPECIAL_PERMISSION_DND_ALLOW = 768;
3211
3212 // ACTION: Deny "Do Not Disturb access" for an app
3213 APP_SPECIAL_PERMISSION_DND_DENY = 769;
3214
3215 // ACTION: Allow "Draw over other apps" for an app
3216 APP_SPECIAL_PERMISSION_APPDRAW_ALLOW = 770;
3217
3218 // ACTION: Deny "Draw over other apps" for an app
3219 APP_SPECIAL_PERMISSION_APPDRAW_DENY = 771;
3220
3221 // ACTION: Allow "VR helper services" for an app
3222 APP_SPECIAL_PERMISSION_VRHELPER_ALLOW = 772;
3223
3224 // ACTION: Deny "VR helper services" for an app
3225 APP_SPECIAL_PERMISSION_VRHELPER_DENY = 773;
3226
3227 // ACTION: Allow "Modify system settings" for an app
3228 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_ALLOW = 774;
3229
3230 // ACTION: Deny "Modify system settings" for an app
3231 APP_SPECIAL_PERMISSION_SETTINGS_CHANGE_DENY = 775;
3232
3233 // ACTION: Allow "Notification access" for an app
3234 APP_SPECIAL_PERMISSION_NOTIVIEW_ALLOW = 776;
3235
3236 // ACTION: Deny "Notification access" for an app
3237 APP_SPECIAL_PERMISSION_NOTIVIEW_DENY = 777;
3238
3239 // ACTION: "Premium SMS access" for an app - "ask user" option
3240 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ASK = 778;
3241
3242 // ACTION: "Premium SMS access" for an app - "never allow" option
3243 APP_SPECIAL_PERMISSION_PREMIUM_SMS_DENY = 779;
3244
3245 // ACTION: "Premium SMS access" for an app - "always allow" option
3246 APP_SPECIAL_PERMISSION_PREMIUM_SMS_ALWAYS_ALLOW = 780;
3247
3248 // ACTION: Allow "Unrestricted data access" for an app
3249 APP_SPECIAL_PERMISSION_UNL_DATA_ALLOW = 781;
3250
3251 // ACTION: Deny "Unrestricted data access" for an app
3252 APP_SPECIAL_PERMISSION_UNL_DATA_DENY = 782;
3253
3254 // ACTION: Allow "Usage access" for an app
3255 APP_SPECIAL_PERMISSION_USAGE_VIEW_ALLOW = 783;
3256
3257 // ACTION: Deny "Usage access" for an app
3258 APP_SPECIAL_PERMISSION_USAGE_VIEW_DENY = 784;
3259
Fan Zhangad5dacc2017-01-18 14:18:54 -08003260 // OPEN: Settings > Apps > Default Apps > Default browser
3261 DEFAULT_BROWSER_PICKER = 785;
3262
3263 // OPEN: Settings > Apps > Default Apps > Default emergency app
3264 DEFAULT_EMERGENCY_APP_PICKER = 786;
3265
3266 // OPEN: Settings > Apps > Default Apps > Default home
3267 DEFAULT_HOME_PICKER = 787;
3268
3269 // OPEN: Settings > Apps > Default Apps > Default phone
3270 DEFAULT_PHONE_PICKER = 788;
3271
3272 // OPEN: Settings > Apps > Default Apps > Default sms
3273 DEFAULT_SMS_PICKER = 789;
3274
3275 // OPEN: Settings > Apps > Default Apps > Default notification assistant
3276 DEFAULT_NOTIFICATION_ASSISTANT = 790;
3277
3278 // OPEN: Settings > Apps > Default Apps > Warning dialog to confirm selection
3279 DEFAULT_APP_PICKER_CONFIRMATION_DIALOG = 791;
3280
Jason Long1b51da62017-01-24 11:35:31 -08003281 // OPEN: Settings > Apps > Default Apps > Default autofill app
3282 DEFAULT_AUTOFILL_PICKER = 792;
Jason Longc1009622017-01-18 03:15:21 -08003283
Chris Wren26ca65d2016-11-29 10:43:28 -05003284 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003285 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003286 NOTIFICATION_SINCE_CREATE_MILLIS = 793;
3287 NOTIFICATION_SINCE_VISIBLE_MILLIS = 794;
3288 NOTIFICATION_SINCE_UPDATE_MILLIS = 795;
3289 NOTIFICATION_ID = 796;
3290 NOTIFICATION_TAG = 797;
3291 NOTIFICATION_SHADE_INDEX = 798;
3292 RESERVED_FOR_LOGBUILDER_NAME = 799;
Philip P. Moltmann2e301262016-06-16 12:39:54 -07003293
Anas Karbilaf7648f42016-12-11 00:55:02 +01003294 // OPEN: QS NFC tile shown
3295 // ACTION: QS NFC tile tapped
3296 // CATEGORY: QUICK_SETTINGS
Jason Monk8cff1992017-01-18 13:45:59 -05003297 QS_NFC = 800;
Anas Karbilaf7648f42016-12-11 00:55:02 +01003298
Chris Wren26ca65d2016-11-29 10:43:28 -05003299 // These values should never appear in log outputs - they are reserved for
Chris Wren67b3eb92017-03-07 11:31:12 -05003300 // internal platform metrics use.
Chris Wren26ca65d2016-11-29 10:43:28 -05003301 RESERVED_FOR_LOGBUILDER_BUCKET = 801;
3302 RESERVED_FOR_LOGBUILDER_VALUE = 802;
3303 RESERVED_FOR_LOGBUILDER_COUNTER = 803;
3304 RESERVED_FOR_LOGBUILDER_HISTOGRAM = 804;
3305 RESERVED_FOR_LOGBUILDER_TIMESTAMP = 805;
3306 RESERVED_FOR_LOGBUILDER_PACKAGENAME = 806;
3307
Fyodor Kupolovdc7505d2017-01-18 18:28:21 -08003308 // ACTION: "Force stop" action on an app
3309 ACTION_APP_FORCE_STOP = 807;
3310
Suprabh Shukla2f34b1a2016-12-16 14:47:25 -08003311 // OPEN: Settings > Apps > Gear > Special Access > Install other apps
3312 // CATEGORY: SETTINGS
3313 // OS: 8.0
3314 MANAGE_EXTERNAL_SOURCES = 808;
3315
Mahaver6cd47162017-01-23 09:59:33 +00003316 // ACTION: Logged when terms activity finishes.
3317 // TIME: Indicates time taken by terms activity to finish in MS.
3318 PROVISIONING_TERMS_ACTIVITY_TIME_MS = 809;
3319
3320 // Indicates number of terms displayed on the terms screen.
3321 PROVISIONING_TERMS_COUNT = 810;
3322
3323 // Indicates number of terms read on the terms screen.
3324 PROVISIONING_TERMS_READ = 811;
3325
Winson Chung59fda9e2017-01-20 16:14:51 -08003326 // Logs that the user has edited the picture-in-picture settings.
3327 // CATEGORY: SETTINGS
3328 SETTINGS_MANAGE_PICTURE_IN_PICTURE = 812;
3329
3330 // ACTION: Allow "Enable picture-in-picture on hide" for an app
3331 APP_PICTURE_IN_PICTURE_ON_HIDE_ALLOW = 813;
3332
3333 // ACTION: Deny "Enable picture-in-picture on hide" for an app
3334 APP_PICTURE_IN_PICTURE_ON_HIDE_DENY = 814;
3335
Niels Egbertsb8de3d62017-01-24 15:30:28 +00003336 // OPEN: Settings > Language & input > Text-to-speech output -> Speech rate & pitch
3337 // CATEGORY: SETTINGS
3338 // OS: 8.0
3339 TTS_SLIDERS = 815;
3340
Jason Monk524fb402017-01-25 10:33:31 -05003341 // ACTION: Settings -> Display -> Theme
3342 ACTION_THEME = 816;
3343
chchaob8e253a2017-01-25 12:12:09 -08003344 // OPEN: SUW Welcome Screen -> Vision Settings -> Select to Speak
3345 // ACTION: Select to Speak configuration is chosen
3346 // SUBTYPE: 0 is off, 1 is on
3347 // CATEGORY: SETTINGS
3348 // OS: N
3349 SUW_ACCESSIBILITY_TOGGLE_SELECT_TO_SPEAK = 817;
3350
Anton Philippov95a553e2017-01-27 00:08:24 +00003351 // OPEN: Settings > System > Backup
3352 // CATEGORY: SETTINGS
3353 // OS: O
3354 BACKUP_SETTINGS = 818;
3355
Winson Chung14fbe142016-12-19 16:18:24 -08003356 // ACTION: Picture-in-picture was explicitly entered for an activity
Chris Wren27a52fa2017-02-01 14:21:43 -05003357 // VALUE: true if it was entered while hiding as a result of moving to
3358 // another task, false otherwise
Winson Chung14fbe142016-12-19 16:18:24 -08003359 ACTION_PICTURE_IN_PICTURE_ENTERED = 819;
3360
3361 // ACTION: The activity currently in picture-in-picture was expanded back to fullscreen
3362 // PACKAGE: The package name of the activity that was expanded back to fullscreen
3363 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN = 820;
3364
3365 // ACTION: The activity currently in picture-in-picture was minimized
3366 // VALUE: True if the PiP was minimized, false otherwise
3367 ACTION_PICTURE_IN_PICTURE_MINIMIZED = 821;
3368
3369 // ACTION: Picture-in-picture was dismissed via the dismiss button
3370 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
3371 ACTION_PICTURE_IN_PICTURE_DISMISSED = 822;
3372
3373 // ACTION: The visibility of the picture-in-picture meny
3374 // VALUE: Whether or not the menu is visible
3375 ACTION_PICTURE_IN_PICTURE_MENU = 823;
3376
3377 // Enclosing category for group of PICTURE_IN_PICTURE_ASPECT_RATIO_FOO events,
3378 // logged when the aspect ratio changes
3379 ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED = 824;
3380
3381 // The current aspect ratio of the PiP, logged when it changes.
3382 PICTURE_IN_PICTURE_ASPECT_RATIO = 825;
3383
Chris Wren27a52fa2017-02-01 14:21:43 -05003384 // FIELD - length in dp of ACTION_LS_* gestures, or zero if not applicable
3385 // CATEGORY: GLOBAL_SYSTEM_UI
3386 // OS: O
3387 FIELD_GESTURE_LENGTH = 826;
3388
3389 // FIELD - velocity in dp (per second?) of ACTION_LS_* gestures, or zero if not applicable
3390 // CATEGORY: GLOBAL_SYSTEM_UI
3391 // OS: O
3392 FIELD_GESTURE_VELOCITY = 827;
3393
Christine Franks27fde392017-02-07 10:21:55 -08003394 // OPEN: Carrier demo mode password dialog
3395 CARRIER_DEMO_MODE_PASSWORD = 828;
3396
Fan Zhang70967f32017-02-13 16:02:24 -08003397 // ACTION: Create a Settings shortcut item.
3398 ACTION_SETTINGS_CREATE_SHORTCUT = 829;
3399
3400 // ACTION: A tile in Settings information architecture is clicked
3401 ACTION_SETTINGS_TILE_CLICK = 830;
3402
Julia Reynolds520df6e2017-02-13 09:05:10 -05003403 // OPEN: Notification unsnoozed. CLOSE: Notification snoozed. UPDATE: snoozed notification
3404 // updated
3405 // CATEGORY: NOTIFICATION
3406 // OS: O
3407 NOTIFICATION_SNOOZED = 831;
3408
3409 // Tagged data for NOTIFICATION_SNOOZED. TRUE: snoozed until context, FALSE: snoozed for time.
3410 // OS: O
3411 NOTIFICATION_SNOOZED_CRITERIA = 832;
3412
Fan Zhang65899432017-02-14 13:36:53 -08003413 // FIELD - The context (source) from which an action is performed
3414 FIELD_CONTEXT = 833;
3415
Fan Zhangd95dcb42017-02-14 13:48:09 -08003416 // ACTION: Settings advanced button is expanded
3417 ACTION_SETTINGS_ADVANCED_BUTTON_EXPAND = 834;
3418
Sundeep Ghuman53a7e8c2017-02-13 13:13:07 -08003419 // ACTION: Logs the number of times the saved network evaluator was used to
3420 // recommend a wifi network
3421 WIFI_NETWORK_RECOMMENDATION_SAVED_NETWORK_EVALUATOR = 835;
3422
3423 // ACTION: Logs the number of times the recommended network evaluator was
3424 // used to recommend a wifi network
3425 WIFI_NETWORK_RECOMMENDATION_RECOMMENDED_NETWORK_EVALUATOR = 836;
3426
3427 // ACTION: Logs the number of times a recommended network was resulted in a
3428 // successful connection
3429 // VALUE: true if the connection was successful, false if the connection failed
3430 WIFI_NETWORK_RECOMMENDATION_CONNECTION_SUCCESS = 837;
3431
Daniel Nishic581bfc2017-02-08 10:18:19 -08003432 // OPEN: Settings > Storage > Games
3433 // CATEGORY: SETTINGS
3434 // OS: O
3435 APPLICATIONS_STORAGE_GAMES = 838;
3436
3437 // OPEN: Settings > Storage > Audio and Music
3438 // CATEGORY: SETTINGS
3439 // OS: O
3440 APPLICATIONS_STORAGE_MUSIC = 839;
3441
3442 // ACTION: Settings > Storage > Free Up Space to launch Deletion Helper
3443 // CATEGORY: SETTINGS
3444 // OS: O
3445 STORAGE_FREE_UP_SPACE_NOW = 840;
3446
3447 // ACTION: Settings > Storage > Files to open the File Manager
3448 // CATEGORY: SETTINGS
3449 // OS: O
3450 STORAGE_FILES = 841;
3451
Fan Zhangb1d49222017-02-15 17:12:58 -08003452 // FIELD - Rank of the clicked Settings search result
3453 FIELD_SETTINGS_SERACH_RESULT_RANK = 842;
3454
Fan Zhang7f2cace2017-02-17 12:05:48 -08003455 // OPEN: Settings > Apps > Default Apps > Assist > Default assist
3456 DEFAULT_ASSIST_PICKER = 843;
3457
3458 // OPEN: Settings > Apps > Default Apps > Assist > Default voice input
3459 DEFAULT_VOICE_INPUT_PICKER = 844;
3460
Daniel Nishi4058a842017-02-21 17:11:35 -08003461 // OPEN: Settings > Storage > [Profile]
3462 SETTINGS_STORAGE_PROFILE = 845;
3463
Doris Lingedb84c32017-02-23 10:56:01 -08003464 // OPEN: Settings > Security & screen lock -> Encryption & crendentials
3465 // CATEGORY: SETTINGS
3466 // OS: O
3467 ENCRYPTION_AND_CREDENTIAL = 846;
3468
Fan Zhangb66e5422017-02-24 14:37:45 -08003469 // ACTION: Settings > About device > Build number
3470 ACTION_SETTINGS_BUILD_NUMBER_PREF = 847;
3471
3472 // FIELD: Whether developer mode has already been enabled when clicking build number preference
3473 FIELD_SETTINGS_BUILD_NUMBER_DEVELOPER_MODE_ENABLED = 848;
3474
Sundeep Ghuman104aa312017-02-27 15:57:58 -08003475 // OPEN: Settings > Wi-Fi > Network Details (click on Access Point)
3476 // CATEGORY: SETTINGS
3477 // OS: O
3478 WIFI_NETWORK_DETAILS = 849;
3479
jackqdyuleia2a14342017-02-28 16:20:48 -08003480 // ACTION: Settings > Battery > Menu > Usage Alerts
3481 ACTION_SETTINGS_MENU_BATTERY_USAGE_ALERTS = 850;
3482
3483 // ACTION: Settings > Battery > Menu > Optimization
3484 ACTION_SETTINGS_MENU_BATTERY_OPTIMIZATION = 851;
3485
3486 // ACTION: Settings > Battery > Menu > Apps Toggle
3487 ACTION_SETTINGS_MENU_BATTERY_APPS_TOGGLE = 852;
3488
Fan Zhangb5ce2d12017-03-06 15:33:10 -08003489 // ACTION: Settings > Any preference is changed
3490 ACTION_SETTINGS_PREFERENCE_CHANGE = 853;
3491
3492 // FIELD: The name of preference when it is changed in Settings
3493 FIELD_SETTINGS_PREFERENCE_CHANGE_NAME = 854;
3494
3495 // FIELD: The new value of preference when it is changed in Settings
3496 FIELD_SETTINGS_PREFERENCE_CHANGE_VALUE = 855;
3497
Julia Reynoldsd373d782017-03-03 13:32:57 -05003498 // OPEN: Notification channel created. CLOSE: Notification channel deleted. UPDATE: notification
3499 // channel updated
3500 // PACKAGE: the package the channel belongs too
3501 // CATEGORY: NOTIFICATION
3502 // OS: O
3503 ACTION_NOTIFICATION_CHANNEL = 856;
3504
3505 // Tagged data for notification channel. String.
3506 FIELD_NOTIFICATION_CHANNEL_ID = 857;
3507
3508 // Tagged data for notification channel. int.
3509 FIELD_NOTIFICATION_CHANNEL_IMPORTANCE = 858;
3510
3511 // OPEN: Notification channel group created.
3512 // PACKAGE: the package the group belongs to
3513 // CATEGORY: NOTIFICATION
3514 // OS: O
3515 ACTION_NOTIFICATION_CHANNEL_GROUP = 859;
3516
3517 // Tagged data for notification channel group. String.
3518 FIELD_NOTIFICATION_CHANNEL_GROUP_ID = 860;
3519
Stephen Chenbe9a9a62017-03-06 12:20:48 -08003520 // OPEN: Settings > Wi-Fi > Wifi Preferences -> Advanced -> Network Scorer
3521 // CATEGORY: SETTINGS
3522 // OS: O
3523 SETTINGS_NETWORK_SCORER = 861;
3524
Fan Zhang99861312017-03-07 14:32:38 -08003525 // OPEN: Settings > About device > Model > Hardware info dialog
3526 DIALOG_SETTINGS_HARDWARE_INFO = 862;
3527
mariagpuyol0f5512e2017-03-01 12:09:56 -08003528 // ACTION: Checks whether a contact's phone still exists
3529 // Value 0: It doesn't exist anymore
3530 // Value 1: It still exists
3531 // Value 2: A SecurityException was thrown
3532 // CATEGORY: SETTINGS
3533 // OS: N
3534 ACTION_PHONE_EXISTS = 863;
3535
3536 // ACTION: Retrieves a contact from CP2
3537 // Value 0: Contact retrieved without issues
3538 // Value 1: An IllegalArgumentException was thrown
3539 // CATEGORY: SETTINGS
3540 // OS: N
3541 ACTION_GET_CONTACT = 864;
3542
Chris Wren67b3eb92017-03-07 11:31:12 -05003543 // This values should never appear in log outputs - it is reserved for
3544 // internal platform metrics use.
3545 RESERVED_FOR_LOGBUILDER_PID = 865;
3546
Doris Ling9ac3ddd2017-03-09 14:53:02 -08003547 // ACTION: Settings > Connected devices > Bluetooth -> Available devices
3548 ACTION_SETTINGS_BLUETOOTH_PAIR = 866;
3549
3550 // ACTION: Settings > Connected devices > Bluetooth -> Paired devices
3551 ACTION_SETTINGS_BLUETOOTH_CONNECT = 867;
3552
3553 // ACTION: Settings > Connected devices > Bluetooth -> Connected device
3554 ACTION_SETTINGS_BLUETOOTH_DISCONNECT = 868;
3555
3556 // ACTION: Settings > Connected devices > Bluetooth -> Error dialog
3557 ACTION_SETTINGS_BLUETOOTH_CONNECT_ERROR = 869;
3558
3559 // ACTION: Settings > Connected devices > Bluetooth master switch Toggle
3560 ACTION_SETTINGS_MASTER_SWITCH_BLUETOOTH_TOGGLE = 870;
3561
Chris Wren26ca65d2016-11-29 10:43:28 -05003562 // ---- End O Constants, all O constants go above this line ----
3563
Adrian Roos159ef7b2016-02-25 11:58:32 -08003564 // Add new aosp constants above this line.
3565 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05003566 }
3567}