blob: 00707e47e64888f5a8ce7dbb9a6092cd334f5382 [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
25 // Known visual elements: views or controls.
26 enum View {
Chris Wren7c516842016-03-01 16:44:32 -050027 // Unknown view
Chris Wren77781d32016-01-11 14:49:26 -050028 VIEW_UNKNOWN = 0;
Chris Wren7c516842016-03-01 16:44:32 -050029
30 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050031 MAIN_SETTINGS = 1;
Chris Wren7c516842016-03-01 16:44:32 -050032
33 // OPEN: Settings > Accessibility
34 // CATEGORY: SETTINGS
35 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050036 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -050037
38 // OPEN: Settings > Accessibility > Captions
39 // CATEGORY: SETTINGS
40 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050041 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -050042
43 // OPEN: Settings > Accessibility > [Service]
44 // CATEGORY: SETTINGS
45 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050046 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -050047
48 // OPEN: Settings > Accessibility > Color correction
49 // CATEGORY: SETTINGS
50 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050051 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -050052
53 // OPEN: Settings > Accessibility > Accessibility shortcut
54 // CATEGORY: SETTINGS
55 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050056 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -050057
58 // OPEN: Settings > Accessibility > Magnification gestures
59 // CATEGORY: SETTINGS
60 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050061 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -050062
63 // OPEN: Settings > Accounts
64 // CATEGORY: SETTINGS
65 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050066 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -050067
68 // OPEN: Settings > Accounts > [Single Account Sync Settings]
69 // CATEGORY: SETTINGS
70 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050071 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -050072
73 // OPEN: Settings > Accounts > Add an account
74 // CATEGORY: SETTINGS
75 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050076 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -050077
78 // OPEN: Settings > Accounts > [List of accounts when more than one]
79 // CATEGORY: SETTINGS
80 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050081 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -050082
83 // OPEN: Settings > Cellular network settings > APNs
84 // CATEGORY: SETTINGS
85 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050086 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -050087
88 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
89 // CATEGORY: SETTINGS
90 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -050091 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -050092
93 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050094 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -050095
96 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -050097 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -050098
99 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500100 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500101
102 // OPEN: Settings > Apps > Configure apps > App links > [App]
103 // CATEGORY: SETTINGS
104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500105 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500106
107 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500108 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500109
110 // OPEN: Settings > Internal storage > Apps storage > [App]
111 // CATEGORY: SETTINGS
112 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500113 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500114
115 // OPEN: Settings > Apps > [App info]
116 // CATEGORY: SETTINGS
117 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500118 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500119
120 // OPEN: Settings > Memory > App usage > [App Memory usage]
121 // CATEGORY: SETTINGS
122 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500123 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500124
125 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500126 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500127
128 // OPEN: Settings > Memory > App usage
129 // CATEGORY: SETTINGS
130 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500131 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500132
133 // OPEN: Settings > Bluetooth
134 // CATEGORY: SETTINGS
135 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500136 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500137
138 // OPEN: Choose Bluetooth device (ex: when sharing)
139 // CATEGORY: SETTINGS
140 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500141 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500142
143 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500144 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500145
146 // OPEN: Settings > Security > Choose screen lock
147 // CATEGORY: SETTINGS
148 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500149 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500150
151 // OPEN: Settings > Security > Choose screen lock > Choose your password
152 // CATEGORY: SETTINGS
153 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500154 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500155
156 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
157 // CATEGORY: SETTINGS
158 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500159 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500160
161 // OPEN: Settings > Security > Choose screen lock > Confirm your password
162 // CATEGORY: SETTINGS
163 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500164 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500165
166 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
167 // CATEGORY: SETTINGS
168 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500169 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500170
171 // OPEN: Settings > Security > Encrypt phone
172 // CATEGORY: SETTINGS
173 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500174 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500175
176 // OPEN: Settings > Security > Encrypt phone > Confirm
177 // CATEGORY: SETTINGS
178 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500179 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500180
181 // OPEN: Settings > Search results
182 // CATEGORY: SETTINGS
183 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500184 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500185
186 // OPEN: Settings (Root page)
187 // CATEGORY: SETTINGS
188 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500189 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500190
191 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500192 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500193
194 // OPEN: Settings > Data usage
195 // CATEGORY: SETTINGS
196 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500197 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500198
199 // OPEN: Settings > Date & time
200 // CATEGORY: SETTINGS
201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500202 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500203
204 // OPEN: Settings > Developer options
205 // CATEGORY: SETTINGS
206 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500207 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500208
209 // OPEN: Settings > About phone
210 // CATEGORY: SETTINGS
211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500212 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500213
214 // OPEN: Settings > About phone > Status > IMEI information
215 // CATEGORY: SETTINGS
216 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500217 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500218
219 // OPEN: Settings > Internal storage
220 // CATEGORY: SETTINGS
221 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500222 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500223
224 // OPEN: Settings > About phone > Status > SIM status
225 // CATEGORY: SETTINGS
226 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500227 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500228
229 // OPEN: Settings > About phone > Status
230 // CATEGORY: SETTINGS
231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500232 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500235 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500236
237 // OPEN: Settings > Display
238 // CATEGORY: SETTINGS
239 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500240 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500241
242 // OPEN: Settings > Display > Daydream
243 // CATEGORY: SETTINGS
244 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500245 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500246
247 // OPEN: Settings > Security > Screen lock > Secure start-up
248 // CATEGORY: SETTINGS
249 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500250 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500251
252 // OPEN: Settings > Security > Nexus Imprint
253 // CATEGORY: SETTINGS
254 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500255 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500256
257 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500258 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500259
260 // OPEN: Settings > Battery > History details
261 // CATEGORY: SETTINGS
262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500263 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500264
265 // OPEN: Settings > Battery > Battery saver
266 // CATEGORY: SETTINGS
267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500268 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500269
270 // OPEN: Settings > Battery > [App Use details]
271 // CATEGORY: SETTINGS
272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500273 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500274
275 // OPEN: Settings > Battery
276 // CATEGORY: SETTINGS
277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500278 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500279
280 // OPEN: Settings > Home
281 // CATEGORY: SETTINGS
282 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500283 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500284
285 // OPEN: Settings > Security > SIM card lock settings
286 // CATEGORY: SETTINGS
287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500288 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500289
290 // OPEN: Settings > Language & input
291 // CATEGORY: SETTINGS
292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500293 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500294
295 // OPEN: Settings > Language & input > Physical keyboard
296 // CATEGORY: SETTINGS
297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500298 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OPEN: Settings > Language & input > Spell checker
301 // CATEGORY: SETTINGS
302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500303 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500304
305 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500306 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500307
308 // OPEN: Settings > Language & input > Personal dictionary
309 // CATEGORY: SETTINGS
310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500311 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500312
313 // OPEN: Settings > Language & input > Add word
314 // CATEGORY: SETTINGS
315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500316 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OPEN: Settings > Location
319 // CATEGORY: SETTINGS
320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500321 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500322
323 // OPEN: Settings > Location > Location mode
324 // CATEGORY: SETTINGS
325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500326 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500327
328 // OPEN: Settings > Apps
329 // CATEGORY: SETTINGS
330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500331 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500332
333 // OPEN: Settings > Backup & reset > Factory data reset
334 // CATEGORY: SETTINGS
335 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500336 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500337
338 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
339 // CATEGORY: SETTINGS
340 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500341 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500342
343 // OPEN: Settings > Data usage > Network restrictions
344 // CATEGORY: SETTINGS
345 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500346 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500347
348 // OPEN: Settings > More > Android Beam
349 // CATEGORY: SETTINGS
350 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500351 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500352
353 // OPEN: Settings > Tap & pay
354 // CATEGORY: SETTINGS
355 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500356 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500357
358 // OPEN: Settings > Sound & notification
359 // CATEGORY: SETTINGS
360 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500361 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500362
363 // OPEN: Settings > Sound & notification > App notifications > [App]
364 // CATEGORY: SETTINGS
365 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500366 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500367
368 // OPEN: Settings > Sound & notification > Other sounds
369 // CATEGORY: SETTINGS
370 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500371 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500372
373 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500374 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500375
376 // OPEN: Settings Widget > Notification log
377 // CATEGORY: SETTINGS
378 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500379 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500380
381 // OPEN: Settings > Sound & notification > Do not disturb
382 // CATEGORY: SETTINGS
383 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500384 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500385
386 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500387 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500388
389 // OPEN: Print job notification > Print job settings
390 // CATEGORY: SETTINGS
391 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500392 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500393
394 // OPEN: Settings > Printing > [Print Service]
395 // CATEGORY: SETTINGS
396 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500397 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500398
399 // OPEN: Settings > Printing
400 // CATEGORY: SETTINGS
401 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500402 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500403
404 // OPEN: Settings > Backup & reset
405 // CATEGORY: SETTINGS
406 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500407 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500408
409 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500410 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500411
412 // OPEN: Settings > Backup & reset > Network settings reset
413 // CATEGORY: SETTINGS
414 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500415 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
418 // CATEGORY: SETTINGS
419 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500420 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500421
422 // OPEN: Settings > Developer Options > Running Services
423 // CATEGORY: SETTINGS
424 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500425 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500426
427 // OPEN: Settings > Security > Screen pinning
428 // CATEGORY: SETTINGS
429 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500430 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500431
432 // OPEN: Settings > Security
433 // CATEGORY: SETTINGS
434 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500435 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500436
437 // OPEN: Settings > SIM cards
438 // CATEGORY: SETTINGS
439 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500440 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500441
442 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500443 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500444
445 // OPEN: Settings > More > Tethering & portable hotspot
446 // CATEGORY: SETTINGS
447 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500448 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OPEN: Settings > Security > Trust agents
451 // CATEGORY: SETTINGS
452 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500453 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500454
455 // OPEN: Settings > Security > Trusted credentials
456 // CATEGORY: SETTINGS
457 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500458 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500459
460 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
461 // CATEGORY: SETTINGS
462 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500463 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500464
465 // OPEN: Settings > Language & input > Text-to-speech output
466 // CATEGORY: SETTINGS
467 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500468 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500469
470 // OPEN: Settings > Security > Apps with usage access
471 // CATEGORY: SETTINGS
472 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500473 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500474
475 // OPEN: Settings > Users
476 // CATEGORY: SETTINGS
477 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500478 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500479
480 // OPEN: Settings > Users > [Restricted profile app & content access]
481 // CATEGORY: SETTINGS
482 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500483 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500484
485 // OPEN: Settings > Users > [User settings]
486 // CATEGORY: SETTINGS
487 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500488 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500489
490 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500491 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500492
493 // OPEN: Settings > More > VPN
494 // CATEGORY: SETTINGS
495 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500496 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OPEN: Settings > Display > Choose wallpaper from
499 // CATEGORY: SETTINGS
500 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500501 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500502
503 // OPEN: Settings > Display > Cast
504 // CATEGORY: SETTINGS
505 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500506 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500507
508 // OPEN: Settings > Wi-Fi
509 // CATEGORY: SETTINGS
510 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500511 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500512
513 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
514 // CATEGORY: SETTINGS
515 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500516 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500517
518 // OPEN: Settings > More > Wi-Fi Calling
519 // CATEGORY: SETTINGS
520 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500521 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500522
523 // OPEN: Settings > Wi-Fi > Saved networks
524 // CATEGORY: SETTINGS
525 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500526 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500527
528 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500529 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500532 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500533
534 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
535 // CATEGORY: SETTINGS
536 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500537 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500538
539 // OPEN: Settings > More
540 // CATEGORY: SETTINGS
541 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500542 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500543
544 // OPEN: Quick Settings Panel
545 // CATEGORY: QUICK_SETTINGS
546 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500547 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500548
549 // OPEN: QS Airplane mode tile shown
550 // ACTION: QS Airplane mode tile tapped
551 // SUBTYPE: 0 is off, 1 is on
552 // CATEGORY: QUICK_SETTINGS
553 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500554 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500555
556 // OPEN: QS Bluetooth tile shown
557 // ACTION: QS Bluetooth tile tapped
558 // SUBTYPE: 0 is off, 1 is on
559 // CATEGORY: QUICK_SETTINGS
560 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500561 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500562
563 // OPEN: QS Cast tile shown
564 // ACTION: QS Cast tile tapped
565 // CATEGORY: QUICK_SETTINGS
566 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500567 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500568
569 // OPEN: QS Cellular tile shown
570 // ACTION: QS Cellular tile tapped
571 // CATEGORY: QUICK_SETTINGS
572 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500573 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500574
575 // OPEN: QS Color inversion tile shown
576 // ACTION: QS Color inversion tile tapped
577 // SUBTYPE: 0 is off, 1 is on
578 // CATEGORY: QUICK_SETTINGS
579 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500580 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500581
582 // OPEN: QS Cellular tile > Cellular detail panel
583 // CATEGORY: QUICK_SETTINGS
584 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500585 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500586
587 // OPEN: QS Do not disturb tile shown
588 // ACTION: QS Do not disturb tile tapped
589 // SUBTYPE: 0 is off, 1 is on
590 // CATEGORY: QUICK_SETTINGS
591 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500592 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500593
594 // OPEN: QS Flashlight tile shown
595 // ACTION: QS Flashlight tile tapped
596 // SUBTYPE: 0 is off, 1 is on
597 // CATEGORY: QUICK_SETTINGS
598 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500599 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500600
601 // OPEN: QS Hotspot tile shown
602 // ACTION: QS Hotspot tile tapped
603 // SUBTYPE: 0 is off, 1 is on
604 // CATEGORY: QUICK_SETTINGS
605 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500606 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500607
608 // OPEN: QS 3P tile shown
609 // ACTION: QS 3P tile tapped
610 // CATEGORY: QUICK_SETTINGS
611 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500612 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500613
614 // OPEN: QS Location tile shown
615 // ACTION: QS Location tile tapped
616 // SUBTYPE: 0 is off, 1 is on
617 // CATEGORY: QUICK_SETTINGS
618 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500619 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OPEN: QS Rotation tile shown
622 // ACTION: QS Rotation tile tapped
623 // SUBTYPE: 0 is off, 1 is on
624 // CATEGORY: QUICK_SETTINGS
625 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500626 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500627
628 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500629 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500630
631 // OPEN: QS User list panel
632 // CATEGORY: QUICK_SETTINGS
633 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500634 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: QS WiFi tile shown
637 // ACTION: QS WiFi tile tapped
638 // SUBTYPE: 0 is off, 1 is on
639 // CATEGORY: QUICK_SETTINGS
640 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500641 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500642
643 // OPEN: Notification Panel (including lockscreen)
644 // CATEGORY: NOTIFICATION
645 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500646 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500647
648 // OPEN: Notification in panel became visible.
649 // PACKAGE: App that posted the notification.
650 // ACTION: Notification is tapped.
651 // PACKAGE: App that posted the notification
652 // DETAIL: Notification is expanded by user.
653 // PACKAGE: App that posted the notification
654 // DISMISS: Notification is dismissed.
655 // PACKAGE: App that posted the notification
656 // SUBTYPE: Dismiss reason from NotificationManagerService.java
657 // CATEGORY: NOTIFICATION
658 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500659 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500660
661 // ACTION: User tapped notification action
662 // PACKAGE: App that posted the notification
663 // SUBTYPE: Index of action on notification
664 // CATEGORY: NOTIFICATION
665 // OS: 5.0
Chris Wren77781d32016-01-11 14:49:26 -0500666 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500667
668 // OPEN: Settings > Apps > Configure apps > App permissions
669 // CATEGORY: SETTINGS
670 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500671 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500672
673 // OPEN: Settings > Location > Scanning
674 // CATEGORY: SETTINGS
675 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500676 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500677
678 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500679 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500680
681 // OPEN: Settings > Sound & notification > App notifications
682 // CATEGORY: SETTINGS
683 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500684 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // ACTION: Settings > Wi-Fi > Overflow > Add Network
687 // CATEGORY: SETTINGS
688 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500689 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500690
691 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
692 // CATEGORY: SETTINGS
693 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500694 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500695
696 // ACTION: Settings > Wi-Fi > Overflow > Refresh
697 // CATEGORY: SETTINGS
698 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500699 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500700
701 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
702 // CATEGORY: SETTINGS
703 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500704 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500705
706 // ACTION: Settings > Wi-Fi > Toggle off
707 // CATEGORY: SETTINGS
708 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500709 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500710
711 // ACTION: Settings > Wi-Fi > Toggle on
712 // CATEGORY: SETTINGS
713 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500714 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500715
716 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500717 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500718
719 // OPEN: Settings > Sound & notification > DND > Priority only allows
720 // CATEGORY: SETTINGS
721 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500722 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500723
724 // OPEN: Settings > Sound & notification > DND > Automatic rules
725 // CATEGORY: SETTINGS
726 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500727 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500728
729 // OPEN: Settings > Apps > Configure apps > App links
730 // CATEGORY: SETTINGS
731 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500732 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500733
734 // OPEN: Settings > Sound & notification > DND > [Time based rule]
735 // CATEGORY: SETTINGS
736 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500737 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500738
739 // OPEN: Settings > Sound & notification > DND > [External rule]
740 // CATEGORY: SETTINGS
741 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500742 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500743
744 // OPEN: Settings > Sound & notification > DND > [Event rule]
745 // CATEGORY: SETTINGS
746 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500747 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500748
749 // ACTION: App notification settings > Block Notifications
750 // CATEGORY: SETTINGS
751 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500752 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500753
754 // ACTION: Notification shade > Dismiss all button
755 // CATEGORY: NOTIFICATION
756 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500757 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500758
759 // OPEN: QS Do Not Disturb detail panel
760 // CATEGORY: QUICK_SETTINGS
761 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500762 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500763
764 // OPEN: QS Bluetooth detail panel
765 // CATEGORY: QUICK_SETTINGS
766 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500767 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500768
769 // OPEN: QS Cast detail panel
770 // CATEGORY: QUICK_SETTINGS
771 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500772 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500773
774 // OPEN: QS Wi-Fi detail panel
775 // CATEGORY: QUICK_SETTINGS
776 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500777 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500778
779 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
780 // SUBTYPE: 0 is off, 1 is on
781 // CATEGORY: QUICK_SETTINGS
782 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500783 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500784
785 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
786 // SUBTYPE: 0 is off, 1 is on
787 // CATEGORY: QUICK_SETTINGS
788 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500789 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500790
791 // ACTION: QS Cellular detail panel > Cellular toggle
792 // SUBTYPE: 0 is off, 1 is on
793 // CATEGORY: QUICK_SETTINGS
794 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500795 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500796
797 // ACTION: QS User list panel > Select different user
798 // CATEGORY: QUICK_SETTINGS
799 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500800 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500801
802 // ACTION: QS Cast detail panel > Select cast device
803 // CATEGORY: QUICK_SETTINGS
804 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500805 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500806
807 // ACTION: QS Cast detail panel > Disconnect cast device
808 // CATEGORY: QUICK_SETTINGS
809 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500810 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500811
812 // ACTION: Settings > Bluetooth > Toggle
813 // SUBTYPE: 0 is off, 1 is on
814 // CATEGORY: SETTINGS
815 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500816 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500817
818 // ACTION: Settings > Bluetooth > Overflow > Refresh
819 // CATEGORY: SETTINGS
820 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500821 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500822
823 // ACTION: Settings > Bluetooth > Overflow > Rename this device
824 // CATEGORY: SETTINGS
825 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500826 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500827
828 // ACTION: Settings > Bluetooth > Overflow > Show received files
829 // CATEGORY: SETTINGS
830 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500831 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500832
833 // ACTION: QS DND details panel > Increase / Decrease exit time
834 // SUBTYPE: true is increase, false is decrease
835 // CATEGORY: QUICK_SETTINGS
836 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500837 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500838
839 // ACTION: QS DND details panel > [Exit condition]
840 // CATEGORY: QUICK_SETTINGS
841 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500842 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500843
844 // ACTION: QS DND details panel > [DND mode]
845 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
846 // CATEGORY: QUICK_SETTINGS
847 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500848 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500849
850 // ACTION: QS DND detail panel > DND toggle
851 // SUBTYPE: 0 is off, 1 is on
852 // CATEGORY: QUICK_SETTINGS
853 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500854 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // ACTION: DND Settings > Priority only allows > Reminder toggle
857 // SUBTYPE: 0 is off, 1 is on
858 // CATEGORY: SETTINGS
859 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500860 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500861
862 // ACTION: DND Settings > Priority only allows > Event toggle
863 // SUBTYPE: 0 is off, 1 is on
864 // CATEGORY: SETTINGS
865 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500866 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500867
868 // ACTION: DND Settings > Priority only allows > Messages
869 // SUBTYPE: 0 is off, 1 is on
870 // CATEGORY: SETTINGS
871 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500872 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // ACTION: DND Settings > Priority only allows > Calls
875 // SUBTYPE: 0 is off, 1 is on
876 // CATEGORY: SETTINGS
877 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500878 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500879
880 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
881 // SUBTYPE: 0 is off, 1 is on
882 // CATEGORY: SETTINGS
883 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500884 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500885
886 // ACTION: DND Settings > Automatic rules > Add rule
887 // CATEGORY: SETTINGS
888 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500889 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500890
891 // ACTION: DND Settings > Automatic rules > Add rule > OK
892 // CATEGORY: SETTINGS
893 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500894 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500895
896 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
897 // CATEGORY: SETTINGS
898 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500899 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500900
901 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
902 // CATEGORY: SETTINGS
903 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500904 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500905
906 // ACTION: DND Settings > Automatic rules > [Rule] > 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_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500911
912 // ACTION: Settings > More > Airplane mode toggle
913 // SUBTYPE: 0 is off, 1 is on
914 // CATEGORY: SETTINGS
915 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500916 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500917
918 // ACTION: Settings > Data usage > Cellular data toggle
919 // SUBTYPE: 0 is off, 1 is on
920 // CATEGORY: SETTINGS
921 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500922 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // OPEN: Settings > Sound & notification > Notification access
925 // CATEGORY: SETTINGS
926 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500927 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500928
929 // OPEN: Settings > Sound & notification > Do Not Disturb access
930 // CATEGORY: SETTINGS
931 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500932 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500933
934 // OPEN: Settings > Apps > Configure apps > Default Apps
935 // CATEGORY: SETTINGS
936 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500937 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500938
939 // OPEN: Settings > Internal storage > Apps storage
940 // CATEGORY: SETTINGS
941 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500942 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500943
944 // OPEN: Settings > Security > Usage access
945 // CATEGORY: SETTINGS
946 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500947 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // OPEN: Settings > Battery > Battery optimization
950 // CATEGORY: SETTINGS
951 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500952 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500953
954 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500955 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -0500956
957 // ACTION: Lockscreen > Unlock gesture
958 // CATEGORY: GLOBAL_SYSTEM_UI
959 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500960 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: Lockscreen > Pull shade open
963 // CATEGORY: GLOBAL_SYSTEM_UI
964 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500965 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -0500966
967 // ACTION: Lockscreen > Tap on lock, shows hint
968 // CATEGORY: GLOBAL_SYSTEM_UI
969 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500970 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -0500971
972 // ACTION: Lockscreen > Camera
973 // CATEGORY: GLOBAL_SYSTEM_UI
974 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500975 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -0500976
977 // ACTION: Lockscreen > Dialer
978 // CATEGORY: GLOBAL_SYSTEM_UI
979 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500980 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -0500981
982 // ACTION: Lockscreen > Tap on lock, locks phone
983 // CATEGORY: GLOBAL_SYSTEM_UI
984 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500985 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // ACTION: Lockscreen > Tap on notification, false touch rejection
988 // CATEGORY: GLOBAL_SYSTEM_UI
989 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500990 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -0500991
992 // ACTION: Lockscreen > Swipe down to open quick settings
993 // CATEGORY: GLOBAL_SYSTEM_UI
994 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500995 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -0500996
997 // ACTION: Swipe down to open quick settings when unlocked
998 // CATEGORY: GLOBAL_SYSTEM_UI
999 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001000 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001001
1002 // ACTION: Notification shade > Tap to open quick settings
1003 // CATEGORY: GLOBAL_SYSTEM_UI
1004 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001005 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001006
1007 // OPEN: Lockscreen
1008 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1009 // CATEGORY: GLOBAL_SYSTEM_UI
1010 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001011 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001012
1013 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1014 // CATEGORY: GLOBAL_SYSTEM_UI
1015 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001016 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001017
1018 // OPEN: Screen turned on
1019 // SUBTYPE: 2 is user action
1020 // CATEGORY: GLOBAL_SYSTEM_UI
1021 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001022 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001023
1024 // OPEN: Notification caused sound, vibration, and/or LED blink
1025 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1026 // CATEGORY: NOTIFICATION
1027 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001028 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001029
1030 // ACTION: Lockscreen > Emergency Call button
1031 // CATEGORY: GLOBAL_SYSTEM_UI
1032 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001033 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001034
1035 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1036 // CATEGORY: SETTINGS
1037 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001038 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001039
1040 // OPEN: Settings > Memory
1041 // CATEGORY: SETTINGS
1042 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001043 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001044
1045 // ACTION: Settings > Display > When device is rotated
1046 // CATEGORY: SETTINGS
1047 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001048 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001049
1050 // ACTION: Long press on notification to view controls
1051 // CATEGORY: NOTIFICATION
1052 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001053 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001054
1055 // ACTION: Notificatoin controls > Info button
1056 // CATEGORY: NOTIFICATION
1057 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001058 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001059
1060 // ACTION: Notification controls > Settings button
1061 // CATEGORY: NOTIFICATION
1062 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001063 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001064
1065 // OPEN: Volume Dialog (with hardware buttons)
1066 // CATEGORY: GLOBAL_SYSTEM_UI
1067 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001068 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001069
1070 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1071 // CATEGORY: GLOBAL_SYSTEM_UI
1072 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001073 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001074
1075 // ACTION: Volume dialog > Adjust volume slider
1076 // SUBTYPE: volume level (0-7)
1077 // CATEGORY: GLOBAL_SYSTEM_UI
1078 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // ACTION: Volume dialog > Select non-active stream
1082 // SUBTYPE: stream (defined in AudioSystem.java)
1083 // CATEGORY: GLOBAL_SYSTEM_UI
1084 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001085 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // ACTION: Adjust volume with hardware key
1088 // SUBTYPE: volume level (0-7)
1089 // CATEGORY: GLOBAL_SYSTEM_UI
1090 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001091 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001092
1093 // ACTION: Volume dialog > Mute a stream by tapping icon
1094 // SUBTYPE: mute is 1, audible is 2
1095 // CATEGORY: GLOBAL_SYSTEM_UI
1096 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001097 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // ACTION: Volume dialog > Change ringer mode by tapping icon
1100 // SUBTYPE: 2 is audible, 3 is vibrate
1101 // CATEGORY: GLOBAL_SYSTEM_UI
1102 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001103 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001104
1105 // ACTION: Chooser shown (share target, file open, etc.)
1106 // CATEGORY: GLOBAL_SYSTEM_UI
1107 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001108 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001109
1110 // ACTION: Chooser > User taps an app target
1111 // SUBTYPE: Index of target
1112 // CATEGORY: GLOBAL_SYSTEM_UI
1113 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001114 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001115
1116 // ACTION: Chooser > User taps a service target
1117 // SUBTYPE: Index of target
1118 // CATEGORY: GLOBAL_SYSTEM_UI
1119 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001120 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001121
1122 // ACTION: Chooser > User taps a standard target
1123 // SUBTYPE: Index of target
1124 // CATEGORY: GLOBAL_SYSTEM_UI
1125 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001126 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001127
1128 // ACTION: QS Brightness Slider (with auto brightness disabled)
1129 // SUBTYPE: slider value
1130 // CATEGORY: QUICK_SETTINGS
1131 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001132 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001133
1134 // ACTION: QS Brightness Slider (with auto brightness enabled)
1135 // SUBTYPE: slider value
1136 // CATEGORY: QUICK_SETTINGS
1137 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001138 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001139
1140 // OPEN: Settings > Display > Brightness Slider
1141 // CATEGORY: SETTINGS
1142 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001143 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001144
1145 // OPEN: Settings > Apps > Configure Apps > Draw over other apps
1146 // CATEGORY: SETTINGS
1147 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001148 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // OPEN: Display has entered dream mode
1151 // CATEGORY: GLOBAL_SYSTEM_UI
1152 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001153 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001154
1155 // OPEN: Display has entered ambient notification mode
1156 // CATEGORY: GLOBAL_SYSTEM_UI
1157 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001158 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001159
1160 // OPEN: Overview
1161 // CATEGORY: GLOBAL_SYSTEM_UI
1162 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001163 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001164
1165 // OPEN: Settings > About phone > Legal information
1166 // CATEGORY: SETTINGS
1167 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001168 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001169
1170 // OPEN: Settings > Search > Perform search
1171 // CATEGORY: SETTINGS
1172 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001173 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001174
1175 // OPEN: Settings > System UI Tuner
1176 // CATEGORY: SETTINGS
1177 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001178 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // OPEN: Settings > System UI Tuner > Quick Settings
1181 // CATEGORY: SETTINGS
1182 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001183 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001184
1185 // OPEN: Settings > System UI Tuner > Demo mode
1186 // CATEGORY: SETTINGS
1187 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001188 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001189
1190 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1191 // PACKAGE: Tile
1192 // CATEGORY: SETTINGS
1193 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001194 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001195
1196 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1197 // PACKAGE: Tile
1198 // CATEGORY: SETTINGS
1199 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001200 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001201
1202 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1203 // PACKAGE: Tile
1204 // CATEGORY: SETTINGS
1205 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001206 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001207
1208 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1209 // PACKAGE: Icon
1210 // CATEGORY: SETTINGS
1211 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001212 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001213
1214 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1215 // PACKAGE: Icon
1216 // CATEGORY: SETTINGS
1217 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001218 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001219
1220 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1221 // SUBTYPE: false is disabled, true is enabled
1222 // CATEGORY: SETTINGS
1223 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001224 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001225
1226 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1227 // SUBTYPE: false is disabled, true is enabled
1228 // CATEGORY: SETTINGS
1229 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001230 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001231
1232 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1233 // SUBTYPE: 0 is disabled, 1 is enabled
1234 // CATEGORY: SETTINGS
1235 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001236 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001237
1238 // OPEN: Settings > Developer options > Inactive apps
1239 // CATEGORY: SETTINGS
1240 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001241 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001242
1243 // ACTION: Long press home to bring up assistant
1244 // CATEGORY: GLOBAL_SYSTEM_UI
1245 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001246 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001247
1248 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1249 // CATEGORY: SETTINGS
1250 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001251 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001252
1253 // OPEN: Fingerprint Enroll > Find Sensor
1254 // CATEGORY: SETTINGS
1255 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001256 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001257
1258 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1259 // CATEGORY: SETTINGS
1260 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001261 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001262
1263 // OPEN: Fingerprint Enroll introduction
1264 // CATEGORY: SETTINGS
1265 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001266 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001267
1268 // OPEN: Fingerprint Enroll onboarding
1269 // CATEGORY: SETTINGS
1270 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001271 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001272
1273 // OPEN: Fingerprint Enroll > Let's Start!
1274 // CATEGORY: SETTINGS
1275 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001276 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001277
1278 // OPEN: Fingerprint Enroll SUW > Let's Start!
1279 // CATEGORY: SETTINGS
1280 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001281 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001282
1283 // OPEN: Fingerprint Enroll SUW > Find Sensor
1284 // CATEGORY: SETTINGS
1285 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001286 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001287
1288 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1289 // CATEGORY: SETTINGS
1290 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001291 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001292
1293 // OPEN: Fingerprint Enroll SUW introduction
1294 // CATEGORY: SETTINGS
1295 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001296 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001297
1298 // OPEN: Fingerprint Enroll SUW onboarding
1299 // CATEGORY: SETTINGS
1300 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001301 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001302
1303 // ACTION: Add fingerprint > Enroll fingerprint
1304 // CATEGORY: SETTINGS
1305 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001306 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001307
1308 // ACTION: Authenticate using fingerprint
1309 // CATEGORY: SETTINGS
1310 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001311 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001312
1313 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1314 // CATEGORY: SETTINGS
1315 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001316 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001317
1318 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1319 // CATEGORY: SETTINGS
1320 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001321 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // ACTION: Double tap camera shortcut
1324 // CATEGORY: GLOBAL_SYSTEM_UI
1325 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001326 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001327
1328 // ACTION: Double twist camera shortcut
1329 // CATEGORY: GLOBAL_SYSTEM_UI
1330 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001331 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001332
1333 // OPEN: QS Work Mode tile shown
1334 // ACTION: QS Work Mode tile tapped
1335 // SUBTYPE: 0 is off, 1 is on
1336 // CATEGORY: QUICK_SETTINGS
1337 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001338 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001339
1340 // OPEN: Settings > Developer Options > Background Check
1341 // CATEGORY: SETTINGS
1342 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001343 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001344
1345 // OPEN: QS Lock tile shown
1346 // ACTION: QS Lock tile tapped
1347 // SUBTYPE: 0 is off, 1 is on
1348 // CATEGORY: QUICK_SETTINGS
1349 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001350 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001351
1352 // OPEN: QS User Tile shown
1353 // CATEGORY: QUICK_SETTINGS
1354 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001355 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001356
1357 // OPEN: QS Battery tile shown
1358 // CATEGORY: QUICK_SETTINGS
1359 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001360 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001361
1362 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1363 // CATEGORY: SETTINGS
1364 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001365 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // ACTION: Visual interruptions > No screen interuptions toggle
1368 // SUBTYPE: 0 is off, 1 is on
1369 // CATEGORY: SETTINGS
1370 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001371 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // ACTION: Visual interruptions > No notification light toggle
1374 // SUBTYPE: 0 is off, 1 is on
1375 // CATEGORY: SETTINGS
1376 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001377 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001378
1379 // OPEN: Settings > Notifications > [App] > Topic Notifications
1380 // CATEGORY: SETTINGS
1381 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001382 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001383
1384 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1385 // PACKAGE: Selected SMS app
1386 // CATEGORY: SETTINGS
1387 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001388 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001389
1390 // OPEN: QS Color modification tile shown
1391 // ACTION: QS Color modification tile tapped
1392 // SUBTYPE: 0 is off, 1 is on
1393 // CATEGORY: QUICK_SETTINGS
1394 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001395 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001396
1397 // OPEN: QS Custom tile shown
1398 // ACTION: QS Work Mode tile tapped
1399 // CATEGORY: QUICK_SETTINGS
1400 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001401 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001402
1403 // ACTION: Visual interruptions > Never turn off the screen toggle
1404 // SUBTYPE: 0 is off, 1 is on
1405 // CATEGORY: SETTINGS
1406 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001407 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001408
Chris Wren7c516842016-03-01 16:44:32 -05001409 // ACTION: Overview > Long-press task, drag to enter split-screen
1410 // CATEGORY: GLOBAL_SYSTEM_UI
1411 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001412 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1413
Chris Wren7c516842016-03-01 16:44:32 -05001414 // ACTION: In App > Long-press Overview button to enter split-screen
1415 // CATEGORY: GLOBAL_SYSTEM_UI
1416 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001417 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1418
Chris Wren7c516842016-03-01 16:44:32 -05001419 // ACTION: In App > Swipe Overview button to enter split-screen
1420 // CATEGORY: GLOBAL_SYSTEM_UI
1421 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001422 ACTION_WINDOW_DOCK_SWIPE = 272;
1423
Chris Wren7c516842016-03-01 16:44:32 -05001424 // ACTION: Launch profile-specific app > Confirm credentials
1425 // CATEGORY: GLOBAL_SYSTEM_UI
1426 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001427 PROFILE_CHALLENGE = 273;
1428
Chris Wren7c516842016-03-01 16:44:32 -05001429 // OPEN: QS Battery detail panel
1430 // CATEGORY: GLOBAL_SYSTEM_UI
1431 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001432 QS_BATTERY_DETAIL = 274;
1433
Chris Wren7c516842016-03-01 16:44:32 -05001434 // OPEN: Overview > History
1435 // CATEGORY: GLOBAL_SYSTEM_UI
1436 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001437 OVERVIEW_HISTORY = 275;
1438
Chris Wren7c516842016-03-01 16:44:32 -05001439 // ACTION: Overview > Page by tapping Overview button
1440 // CATEGORY: GLOBAL_SYSTEM_UI
1441 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001442 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001443
Chris Wren7c516842016-03-01 16:44:32 -05001444 // ACTION: Overview > Select app
1445 // CATEGORY: GLOBAL_SYSTEM_UI
1446 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001447 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001448
Chris Wren7c516842016-03-01 16:44:32 -05001449 // ACTION: View emergency info
1450 // CATEGORY: GLOBAL_SYSTEM_UI
1451 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001452 ACTION_VIEW_EMERGENCY_INFO = 278;
1453
Chris Wren7c516842016-03-01 16:44:32 -05001454 // ACTION: Edit emergency info activity
1455 // CATEGORY: SETTINGS
1456 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001457 ACTION_EDIT_EMERGENCY_INFO = 279;
1458
Chris Wren7c516842016-03-01 16:44:32 -05001459 // ACTION: Edit emergency info field
1460 // CATEGORY: SETTINGS
1461 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001462 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1463
Chris Wren7c516842016-03-01 16:44:32 -05001464 // ACTION: Add emergency contact
1465 // CATEGORY: SETTINGS
1466 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001467 ACTION_ADD_EMERGENCY_CONTACT = 281;
1468
Chris Wren7c516842016-03-01 16:44:32 -05001469 // ACTION: Delete emergency contact
1470 // CATEGORY: SETTINGS
1471 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001472 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1473
Chris Wren7c516842016-03-01 16:44:32 -05001474 // ACTION: Call emergency contact
1475 // CATEGORY: SETTINGS
1476 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001477 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001478
Chris Wren7c516842016-03-01 16:44:32 -05001479 // OPEN: QS Data Saver tile shown
1480 // ACTION: QS Data Saver tile tapped
1481 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001482 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001483
Robin Lee8c1306e2016-02-01 11:37:02 +00001484 // OPEN: Settings > Security > User credentials
1485 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001486 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001487 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001488
Chris Wren7c516842016-03-01 16:44:32 -05001489 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1490 // CATEGORY: GLOBAL_SYSTEM_UI
1491 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001492 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001493
1494 // Logged when the user scrolls through overview manually
1495 OVERVIEW_SCROLL = 287;
1496
1497 // Logged when the overview times out automatically selecting an app
1498 OVERVIEW_SELECT_TIMEOUT = 288;
1499
1500 // Logged when a user dismisses a task in overview
1501 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001502
1503 // Logged when the user modifying the notification importance slider.
1504 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1505
1506 // Logged when the user saves a modification to notification importance. Negative numbers
1507 // indicate the user lowered the importance; positive means they increased it.
1508 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001509
Chris Wren7c516842016-03-01 16:44:32 -05001510 // ACTION: Long-press power button, then tap "Take bug report" option.
1511 // CATEGORY: GLOBAL_SYSTEM_UI
1512 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001513 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1514
Chris Wren7c516842016-03-01 16:44:32 -05001515 // ACTION: Long-press power button, then long-press "Take bug report" option.
1516 // CATEGORY: GLOBAL_SYSTEM_UI
1517 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001518 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1519
Chris Wren7c516842016-03-01 16:44:32 -05001520 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1521 // CATEGORY: SETTINGS
1522 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001523 // Interactive bug report initiated from Settings.
1524 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1525
Chris Wren7c516842016-03-01 16:44:32 -05001526 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1527 // CATEGORY: SETTINGS
1528 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001529 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001530 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1531
Chris Wren7c516842016-03-01 16:44:32 -05001532 // ACTION: User tapped notification action to cancel a bug report
1533 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001534 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001535 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1536
Chris Wren7c516842016-03-01 16:44:32 -05001537 // ACTION: User tapped notification action to launch bug report details screen
1538 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001539 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001540 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1541
Chris Wren7c516842016-03-01 16:44:32 -05001542 // ACTION: User tapped notification action to take adition screenshot on bug report
1543 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001544 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001545 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1546
Chris Wren7c516842016-03-01 16:44:32 -05001547 // ACTION: User tapped notification to share bug report
1548 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001549 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001550 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1551
Chris Wren7c516842016-03-01 16:44:32 -05001552 // ACTION: User changed bug report name using the details screen
1553 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001554 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001555 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1556
Chris Wren7c516842016-03-01 16:44:32 -05001557 // ACTION: User changed bug report title using the details screen
1558 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001559 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001560 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1561
Chris Wren7c516842016-03-01 16:44:32 -05001562 // ACTION: User changed bug report description using the details screen
1563 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001564 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001565 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1566
Chris Wren7c516842016-03-01 16:44:32 -05001567 // ACTION: User tapped Save in the bug report details screen.
1568 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001569 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001570 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1571
Chris Wren7c516842016-03-01 16:44:32 -05001572 // ACTION: User tapped Cancel in the bug report details screen.
1573 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001574 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001575 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001576
1577 // Tuner: Open/close calibrate dialog.
1578 TUNER_CALIBRATE_DISPLAY = 305;
1579
1580 // Tuner: Open/close color and appearance.
1581 TUNER_COLOR_AND_APPEARANCE = 306;
1582
1583 // Tuner: Apply calibrate dialog.
1584 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1585
1586 // Tuner: Open/close night mode.
1587 TUNER_NIGHT_MODE = 308;
1588
1589 // Tuner: Change night mode.
1590 ACTION_TUNER_NIGHT_MODE = 309;
1591
1592 // Tuner: Change night mode auto.
1593 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1594
1595 // Tuner: Change night mode adjust dark theme.
1596 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1597
1598 // Tuner: Change night mode adjust tint.
1599 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1600
1601 // Tuner: Change night mode adjust brightness.
1602 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1603
1604 // Tuner: Change do not disturb in volume panel.
1605 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1606
1607 // Tuner: Change do not disturb volume buttons shortcut.
1608 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001609
1610 // Logs the action the user takes when an app crashed.
1611 ACTION_APP_CRASH = 316;
1612
1613 // Logs the action the user takes when an app ANR'd.
1614 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001615
1616 // Logged when a user double taps the overview button to launch the previous task
1617 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001618
1619 // Logged when we execute an app transition. This indicates the total delay from startActivity
1620 // until the app transition is starting to animate, in milliseconds.
1621 APP_TRANSITION_DELAY_MS = 319;
1622
1623 // Logged when we execute an app transition. This indicates the reason why the transition
1624 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1625 APP_TRANSITION_REASON = 320;
1626
1627 // Logged when we execute an app transition and we drew a starting window. This indicates the
1628 // delay from startActivity until the starting window was drawn.
1629 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1630
1631 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1632 // the delay from startActivity until all windows have been drawn.
1633 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1634
1635 // Logged when we execute an app transition. This indicates the component name of the current
1636 // transition.
1637 APP_TRANSITION_COMPONENT_NAME = 323;
1638
1639 // Logged when we execute an app transition. This indicates whether the process was already
1640 // running.
1641 APP_TRANSITION_PROCESS_RUNNING = 324;
1642
1643 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1644 // the transition was executed.
1645 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001646
Chris Wren38f98812016-07-13 14:28:40 -04001647 // ACTION: app requested access to a scoped directory, user granted it.
1648 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1649 // CATEGORY: GLOBAL_SYSTEM_UI
1650 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001651 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1652
Chris Wren38f98812016-07-13 14:28:40 -04001653 // ACTION: app requested access to a scoped directory, user denied it.
1654 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1655 // CATEGORY: GLOBAL_SYSTEM_UI
1656 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001657 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1658
Chris Wren38f98812016-07-13 14:28:40 -04001659 // ACTION: app requested access to a scoped directory, user granted it.
1660 // PACKAGE: app that requested access
1661 // CATEGORY: GLOBAL_SYSTEM_UI
1662 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001663 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1664
Chris Wren38f98812016-07-13 14:28:40 -04001665 // ACTION: app requested access to a scoped directory, user denied it.
1666 // PACKAGE: app that requested access.
1667 // CATEGORY: GLOBAL_SYSTEM_UI
1668 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001669 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1670
Chris Wren38f98812016-07-13 14:28:40 -04001671 // ACTION: app requested access to a directory user has already been granted
1672 // access before.
1673 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1674 // CATEGORY: GLOBAL_SYSTEM_UI
1675 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001676 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1677
Chris Wren38f98812016-07-13 14:28:40 -04001678 // ACTION: app requested access to a directory user has already been granted
1679 // access before.
1680 // PACKAGE: app that requested access.
1681 // CATEGORY: GLOBAL_SYSTEM_UI
1682 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001683 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001684
Chris Wren38f98812016-07-13 14:28:40 -04001685 // ACTION: Logged when the user slides a notification and reveals the gear
1686 // beneath it.
1687 // CATEGORY: NOTIFICATION
1688 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001689 ACTION_REVEAL_GEAR = 332;
1690
Chris Wren38f98812016-07-13 14:28:40 -04001691 // ACTION: Logged when the user taps on the gear beneath a notification.
1692 // CATEGORY: NOTIFICATION
1693 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001694 ACTION_TOUCH_GEAR = 333;
1695
Ruben Brunke24b9a62016-02-16 21:38:24 -08001696 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001697 // CATEGORY: SETTINGS
1698 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001699 VR_MANAGE_LISTENERS = 334;
1700
Jason Monk6f5354d2016-03-08 14:18:08 -05001701 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001702 // CATEGORY: SETTINGS
1703 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001704 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001705
Jason Monk6f5354d2016-03-08 14:18:08 -05001706 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001707 // CATEGORY: SETTINGS
1708 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001709 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001710
Jason Monk6f5354d2016-03-08 14:18:08 -05001711 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001712 // CATEGORY: SETTINGS
1713 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001714 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001715
Jason Monk6f5354d2016-03-08 14:18:08 -05001716 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001717 // CATEGORY: SETTINGS
1718 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001719 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001720
Jason Monk6f5354d2016-03-08 14:18:08 -05001721 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001722 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001723 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001724
Jason Monk6f5354d2016-03-08 14:18:08 -05001725 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001726 // CATEGORY: SETTINGS
1727 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001728 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001729
Jason Monk6f5354d2016-03-08 14:18:08 -05001730 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001731 // CATEGORY: SETTINGS
1732 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001733 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001734
Jason Monk6f5354d2016-03-08 14:18:08 -05001735 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001736 // CATEGORY: SETTINGS
1737 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001738 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001739
Jason Monk6f5354d2016-03-08 14:18:08 -05001740 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001741 // CATEGORY: SETTINGS
1742 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001743 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001744
Jason Monk6f5354d2016-03-08 14:18:08 -05001745 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001746 // CATEGORY: SETTINGS
1747 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001748 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001749
Jason Monk6f5354d2016-03-08 14:18:08 -05001750 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001751 // CATEGORY: SETTINGS
1752 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001753 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001754
Jason Monk6f5354d2016-03-08 14:18:08 -05001755 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001756 // CATEGORY: SETTINGS
1757 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001758 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001759
Jason Monk6f5354d2016-03-08 14:18:08 -05001760 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001761 // CATEGORY: SETTINGS
1762 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001763 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001764
Jason Monk6f5354d2016-03-08 14:18:08 -05001765 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001766 // CATEGORY: SETTINGS
1767 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001768 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001769
Jason Monk6f5354d2016-03-08 14:18:08 -05001770 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001771 // CATEGORY: SETTINGS
1772 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001773 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1774
1775 // Used for generic logging of Settings Preference Persistence, should not be used
1776 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001777 // CATEGORY: SETTINGS
1778 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001779 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001780
Jason Monk6f5354d2016-03-08 14:18:08 -05001781 // Settings -> Apps -> Gear -> Special access
1782 SPECIAL_ACCESS = 351;
1783
Muyuan Lia2129992016-03-03 18:30:39 -08001784 // Logs that the user docks window via shortcut key.
1785 WINDOW_DOCK_SHORTCUTS = 352;
1786
Felipe Lemeadccb992016-03-09 17:40:49 -08001787 // User already denied access to the request folder; action takes an integer
1788 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001789 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001790 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1791
1792 // User already denied access to the request folder; action pass package name
1793 // of calling package.
1794 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1795
1796 // User denied access to the request folder and checked 'Do not ask again';
1797 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001798 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001799 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1800
1801 // User denied access to the request folder and checked 'Do not ask again';
1802 // action pass package name of calling package.
1803 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1804
Winson3b6ba1a2016-03-22 15:37:54 -07001805 // Logged when a user dismisses all task in overview
1806 OVERVIEW_DISMISS_ALL = 357;
1807
Jason Monk96defbe2016-03-29 16:51:03 -04001808 // Quick Settings -> Edit
1809 QS_EDIT = 358;
1810
1811 // Quick Settings -> Edit -> Overflow -> Reset
1812 ACTION_QS_EDIT_RESET = 359;
1813
1814 // QS -> Edit - Drag a tile out of the active tiles.
1815 // The _SPEC contains either the spec of the tile or
1816 // the package of the 3rd party app in the PKG field.
1817 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1818 ACTION_QS_EDIT_REMOVE = 361;
1819
1820 // QS -> Edit - Drag a tile into the active tiles.
1821 // The _SPEC contains either the spec of the tile or
1822 // the package of the 3rd party app in the PKG field.
1823 ACTION_QS_EDIT_ADD_SPEC = 362;
1824 ACTION_QS_EDIT_ADD = 363;
1825
1826 // QS -> Edit - Drag a tile within the active tiles.
1827 // The _SPEC contains either the spec of the tile or
1828 // the package of the 3rd party app in the PKG field.
1829 ACTION_QS_EDIT_MOVE_SPEC = 364;
1830 ACTION_QS_EDIT_MOVE = 365;
1831
1832 // Long-press on a QS tile. Tile spec in package field.
1833 ACTION_QS_LONG_PRESS = 366;
1834
Anna Galuszadad131f2016-03-22 13:49:02 -07001835 // OPEN: SUW Welcome Screen -> Vision Settings
1836 // CATEGORY: SETTINGS
1837 // OS: N
1838 SUW_ACCESSIBILITY = 367;
1839
1840 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
1841 // ACTION: New magnification gesture configuration is chosen
1842 // SUBTYPE: 0 is off, 1 is on
1843 // CATEGORY: SETTINGS
1844 // OS: N
1845 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1846
1847 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1848 // ACTION: New font size is chosen
1849 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1850 // CATEGORY: SETTINGS
1851 // OS: N
1852 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1853
1854 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1855 // ACTION: New display size is chosen
1856 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1857 // CATEGORY: SETTINGS
1858 // OS: N
1859 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1860
1861 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1862 // ACTION: New screen reader configuration is chosen
1863 // SUBTYPE: 0 is off, 1 is on
1864 // CATEGORY: SETTINGS
1865 // OS: N
1866 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1867
Jason Monkc3620392016-03-30 15:46:03 -04001868 // ------- Begin N Settings conditionals -----
1869 // Conditionals are the green bars at the top of the settings dashboard
1870 // All conditionals will have visible/hide events onResume/onPause
1871 // but they will also be used as extra ints in the
1872 // dismiss/expand/collapse/click/button events
1873
1874 // swipe away conditional
1875 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1876
1877 // click on collapsed conditional or clicks expand button
1878 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1879
1880 // click collapse button on expanded conditional
1881 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1882
1883 // click main area of expanded conditional
1884 ACTION_SETTINGS_CONDITION_CLICK = 375;
1885
1886 // click a direct button on expanded conditional
1887 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1888
1889 // Airplane mode on
1890 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1891 // AKA Data saver on
1892 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1893 // Battery saver on
1894 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1895 // Cellular data off
1896 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1897 // Do not disturb on
1898 SETTINGS_CONDITION_DND = 381;
1899 // Hotspot on
1900 SETTINGS_CONDITION_HOTSPOT = 382;
1901 // Work profile off
1902 SETTINGS_CONDITION_WORK_MODE = 383;
1903
Jason Monk1b5d87b2016-03-30 16:03:15 -04001904 // ------- Begin N Settings suggestions -----
1905 // Since suggestions come from system apps, suggestions will
1906 // have generic constants and the package providing the suggestion
1907 // will be put in the package field. For suggestions in the Settings
1908 // package, the class name will be filled in instead (since settings
1909 // provides several suggetions).
1910
1911 // Settings shown/hidden on main settings dashboard.
1912 // These are actually visibility events, but visible/hidden doesn't
1913 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001914 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1915 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001916
1917 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001918 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001919
1920 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001921 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001922
Jason Monk397df682016-03-28 15:48:34 -04001923 // Settings > Apps > Gear > Special Access > Premium SMS access
1924 PREMIUM_SMS_ACCESS = 388;
1925
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001926 // Logged when the user resizes the docked stack. Arguments:
1927 // 0: Split 50:50
1928 // 1: Docked smaller
1929 // 2: Docked larger
1930 ACTION_WINDOW_DOCK_RESIZE = 389;
1931
1932 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1933 // 0: Docked gets maximized
1934 // 1: Fullscreen gets maximized
1935 ACTION_WINDOW_UNDOCK_MAX = 390;
1936
1937 // User tried to dock an unresizable app.
1938 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1939
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001940 // System UI Tuner > Other > Power notification controls
1941 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1942
1943 // System UI Tuner > Other > Power notification controls > Toggle on/off
1944 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1945
Chris Wren38f98812016-07-13 14:28:40 -04001946 // Action: user enable / disabled data saver using Settings
1947 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1948 // VALUE: 1 for enabled, 0 for disabled
1949 // CATEGORY: SETTINGS
1950 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001951 ACTION_DATA_SAVER_MODE = 394;
1952
Chris Wren38f98812016-07-13 14:28:40 -04001953 // User whitelisted an app for Data Saver mode; action pass package name of app
1954 // Action: user enable / disabled data saver using Settings
1955 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
1956 // or
1957 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
1958 // VALUE: package name of APP
1959 // CATEGORY: SETTINGS
1960 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001961 ACTION_DATA_SAVER_WHITELIST = 395;
1962
Chris Wren38f98812016-07-13 14:28:40 -04001963 // User blacklisted an app for Data Saver mode; action pass package name of app
1964 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
1965 // VALUE: package name of APP
1966 // CATEGORY: SETTINGS
1967 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001968 ACTION_DATA_SAVER_BLACKLIST = 396;
1969
Adrian Roosceeb04c2016-04-25 14:00:54 -07001970 // User opened a remote input view associated with a notification. Passes package name of app
1971 // that posted the notification. Note that this can also happen transiently during notification
1972 // reinflation.
1973 ACTION_REMOTE_INPUT_OPEN = 397;
1974
1975 // User attempt to send data through a remote input view associated with a notification.
1976 // Passes package name of app that posted the notification. May succeed or fail.
1977 ACTION_REMOTE_INPUT_SEND = 398;
1978
1979 // Failed attempt to send data through a remote input view associated with a
1980 // notification. Passes package name of app that posted the notification.
1981 ACTION_REMOTE_INPUT_FAIL = 399;
1982
1983 // User closed a remote input view associated with a notification. Passes package name of app
1984 // that posted the notification. Note that this can also happen transiently during notification
1985 // reinflation.
1986 ACTION_REMOTE_INPUT_CLOSE = 400;
1987
Tony Mak7a5b17bb2016-04-29 10:27:48 +01001988 // OPEN: Settings > Accounts > Work profile settings
1989 // CATEGORY: SETTINGS
1990 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
1991
Jason Monk25118d12016-05-10 13:25:50 -04001992 // Settings -> Dev options -> Convert to file encryption
1993 CONVERT_FBE = 402;
1994
1995 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
1996 CONVERT_FBE_CONFIRM = 403;
1997
1998 // Settings -> Dev options -> Running services
1999 RUNNING_SERVICES = 404;
2000
Jason Monka1f697f2016-05-06 15:09:44 -04002001 // The dialog shown by 3P intent to change current webview implementation.
2002 WEBVIEW_IMPLEMENTATION = 405;
2003
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002004 // Settings launched from expanded quick settings.
2005 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2006
Chris Wren698b1702016-05-23 11:16:32 -04002007 // Notification expansion state toggled by the expand affordance.
2008 ACTION_NOTIFICATION_EXPANDER = 407;
2009
2010 // Notification group expansion state toggled by the expand affordance.
2011 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2012
Chris Wren7ee84182016-05-27 13:34:02 -04002013
Chris Wren6abeeb92016-05-26 14:44:38 -04002014 // Notification expansion state toggled by the expand gesture.
2015 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2016
2017 // Notification group expansion state toggled by the expand gesture.
2018 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2019
Bhavik Singh3451da42016-06-01 18:25:59 -07002020 // User performs gesture that activates the ambient display
2021 // 1: Gesture performed is Nudge
2022 // 2: Gesture performed is Pickup
2023 // 4: Gesture performed is Double Tap
2024 ACTION_AMBIENT_GESTURE = 411;
2025
Jason Monk9fa5f822016-05-11 10:26:31 -04002026 // ---- End N Constants, all N constants go above this line ----
2027
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002028 // ------- Begin N App Disambig Shade -----
2029 // Application disambig shade opened or closed with a featured app.
2030 // These are actually visibility events, but visible/hidden doesn't
2031 // take a package, so these are being logged as actions.
2032 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002033 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2034 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002035
2036 // Application disambig shade opened or closed without a featured app.
2037 // These are actually visibility events, but visible/hidden doesn't
2038 // take a package, so these are being logged as actions.
2039 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002040 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2041 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002042
2043 // User opens in an app by pressing “Always” in the application disambig shade.
2044 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002045 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002046
2047 // User opens in an app by pressing “Just Once” in the application disambig shade.
2048 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002049 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002050
2051 // User opens in an app by tapping on its name in the application disambig shade.
2052 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002053 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002054
Daniel Nishi010aa492016-05-11 09:42:24 -07002055 // OPEN: Settings > Internal storage > Storage manager
2056 // CATEGORY: SETTINGS
2057 STORAGE_MANAGER_SETTINGS = 458;
2058
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002059 // OPEN: Settings -> Gestures
2060 // CATEGORY: SETTINGS
2061 SETTINGS_GESTURES = 459;
2062
Daniel Nishi597e67f2016-05-18 13:56:13 -07002063 // ------ Begin Deletion Helper ------
2064 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2065 // SUBTYPE: false is off, true is on
2066 // CATEGORY: SETTINGS
2067 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002068
Daniel Nishi597e67f2016-05-18 13:56:13 -07002069 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2070 // SUBTYPE: false is off, true is on
2071 // CATEGORY: SETTINGS
2072 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2073
2074 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2075 // CATEGORY: SETTINGS
2076 // PACKAGE: Unchecked app
2077 ACTION_DELETION_SELECTION_APP_ON = 462;
2078
2079 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2080 // CATEGORY: SETTINGS
2081 // PACKAGE: Checked app
2082 ACTION_DELETION_SELECTION_APP_OFF = 463;
2083
2084 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2085 // SUBTYPE: false is expanded, true is collapsed
2086 // CATEGORY: SETTINGS
2087 ACTION_DELETION_APPS_COLLAPSED = 464;
2088
2089 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2090 // SUBTYPE: false is off, true is on
2091 // CATEGORY: SETTINGS
2092 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2093
2094 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2095 // SUBTYPE: false is expanded, true is collapsed
2096 // CATEGORY: SETTINGS
2097 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2098
2099 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2100 // CATEGORY: SETTINGS
2101 ACTION_DELETION_HELPER_CLEAR = 467;
2102
2103 // ACTION: Settings > Storage > Free Up Space > Cancel
2104 // CATEGORY: SETTINGS
2105 ACTION_DELETION_HELPER_CANCEL = 468;
2106
2107 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2108 // CATEGORY: SETTINGS
2109 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2110
2111 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2112 // CATEGORY: SETTINGS
2113 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2114
2115 // Deletion helper encountered an error during package deletion.
2116 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2117
2118 // Deletion helper encountered an error during downloads folder deletion.
2119 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2120
2121 // Deletion helper encountered an error during photo and video deletion.
2122 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2123
Fan Zhang5e956e82016-05-06 10:51:47 -07002124 // OPEN: Settings (root page if there are multiple tabs)
2125 // CATEGORY: SETTINGS
2126 DASHBOARD_CONTAINER = 474;
2127
2128 // OPEN: Settings -> SUPPORT TAB
2129 // CATEGORY: SETTINGS
2130 SUPPORT_FRAGMENT = 475;
2131
2132 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002133 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002134 ACTION_SELECT_SUMMARY=476;
2135
2136 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002137 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002138 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2139
Fan Zhanga1985502016-06-16 16:48:38 -07002140 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002141 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002142 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2143
2144 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002145 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002146 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2147
2148 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002149 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002150 ACTION_SUPPORT_SIGN_IN = 480;
2151
2152 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002153 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002154 ACTION_SUPPORT_PHONE = 481;
2155
2156 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002157 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002158 ACTION_SUPPORT_CHAT = 482;
2159
2160 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002161 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002162 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2163
2164 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002165 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002166 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2167
Fan Zhang80807212016-06-30 12:26:55 -07002168 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002169 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002170 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2171
2172 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002173 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002174 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2175
2176 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002177 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002178 ACTION_SUPPORT_DIAL_TOLLED = 487;
2179
Justin Klaassen19494272016-07-18 21:38:24 -07002180 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002181 // CATEGORY: SETTINGS
2182 NIGHT_DISPLAY_SETTINGS = 488;
2183
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002184 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
2185 // SUBTYPE: false is off, true is on
2186 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2187
Jason Monk484fd362016-07-13 15:24:32 -04002188 // Settings launched from collapsed quick settings.
2189 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2190
Justin Klaassen19494272016-07-18 21:38:24 -07002191 // OPEN: QS Night Light tile shown
2192 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002193 // SUBTYPE: 0 is off, 1 is on
2194 // CATEGORY: QUICK_SETTINGS
2195 QS_NIGHT_DISPLAY = 491;
2196
Justin Klaassen19494272016-07-18 21:38:24 -07002197 // Night Light on
2198 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2199
Doris Ling3c00afb2016-07-19 17:04:21 -07002200 // System navigation key up.
2201 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2202
2203 // System navigation key down.
2204 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2205
Doris Ling6dd3e462016-08-04 13:17:27 -07002206 // OPEN: Settings > Display -> Ambient Display
2207 // CATEGORY: SETTINGS
2208 ACTION_AMBIENT_DISPLAY = 495;
2209
Adrian Roos159ef7b2016-02-25 11:58:32 -08002210 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2211
Clara Bayarric17a5982016-04-15 12:26:47 +01002212 // ------- Begin N Keyboard Shortcuts Helper -----
2213 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002214 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002215
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002216 // OPEN: Print Preview screen
2217 // Package: Package of app where print job is from
2218 PRINT_PREVIEW = 501;
2219
2220 // OPEN: User expands full print job options shade in print preview.
2221 PRINT_JOB_OPTIONS = 502;
2222
2223 // OPEN: “All Printers” screen for selecting printer
2224 // Subtype: # of printers listed
2225 PRINT_ALL_PRINTERS = 503;
2226
2227 // OPEN: “Add Printers” screen for adding printers
2228 // Subtype: # of enabled print service listed
2229 PRINT_ADD_PRINTERS = 504;
2230
2231 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2232 // Package: Package of print service.
2233 ACTION_PRINT = 505;
2234
2235 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2236 // Count all ACTION_PRINTER_SELECT_ALL actions.
2237 // Package: Package of print service tied to printer
2238 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2239
2240 // ACTION: User selects a printer from the “All printers” screen.
2241 // Package: Package of print service tied to printer
2242 ACTION_PRINTER_SELECT_ALL = 507;
2243
2244 // ACTION: User changes an option for the print job from print preview.
2245 // Subtype: 1: Copies
2246 // 2: Color mode
2247 // 3: Duplex mode
2248 // 4: Media (==Paper) size
2249 // 5: Orientation
2250 // 6: Page range
2251 // Package: Package of print service tied to printer
2252 ACTION_PRINT_JOB_OPTIONS = 508;
2253
2254 // ACTION: User searches for printer from All Printers
2255 ACTION_PRINTER_SEARCH = 509;
2256
2257 // ACTION: User selects “Add print service” button from All Printers
2258 ACTION_PRINT_SERVICE_ADD = 510;
2259
2260 // ACTION: User Enables/Disables Print Service via any means.
2261 // Subtype: 0: Enabled
2262 // 1: Disabled
2263 ACTION_PRINT_SERVICE_TOGGLE = 511;
2264
2265 // ACTION: User installs print recommended print service
2266 // Package: Package of print service
2267 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2268
Doris Ling88a6b162016-08-08 16:17:43 -07002269 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2270 // SUBTYPE: sub settings classname
2271 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2272
Fan Zhang92c60382016-08-08 14:03:53 -07002273 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2274 USER_DICTIONARY_SETTINGS = 514;
2275
2276 // OPEN: Settings > Date & time > Select time zone
2277 ZONE_PICKER = 515;
2278
2279 // OPEN: Settings > Security > Device administrators
2280 DEVICE_ADMIN_SETTINGS = 516;
2281
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002282 // ---- End O Constants, all O constants go above this line ----
2283
Adrian Roos159ef7b2016-02-25 11:58:32 -08002284 // Add new aosp constants above this line.
2285 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05002286 }
2287}