blob: 5cf74c7fe69a0bb0f7674bdeb736e6f688c8f0a7 [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
Stephen Chen0d14da32016-11-03 10:44:32 -0700692 // SUBTYPE: true if connecting to a saved network, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500693 // CATEGORY: SETTINGS
694 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500695 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500696
697 // ACTION: Settings > Wi-Fi > Overflow > Refresh
698 // CATEGORY: SETTINGS
699 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500700 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
703 // CATEGORY: SETTINGS
704 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500705 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500706
707 // ACTION: Settings > Wi-Fi > Toggle off
Stephen Chen0d14da32016-11-03 10:44:32 -0700708 // SUBTYPE: true if connected to network before toggle, false if not
Chris Wren7c516842016-03-01 16:44:32 -0500709 // CATEGORY: SETTINGS
710 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500711 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500712
713 // ACTION: Settings > Wi-Fi > Toggle on
714 // CATEGORY: SETTINGS
715 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500716 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500717
718 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500719 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500720
721 // OPEN: Settings > Sound & notification > DND > Priority only allows
722 // CATEGORY: SETTINGS
723 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500724 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500725
726 // OPEN: Settings > Sound & notification > DND > Automatic rules
727 // CATEGORY: SETTINGS
728 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500729 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500730
731 // OPEN: Settings > Apps > Configure apps > App links
732 // CATEGORY: SETTINGS
733 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500734 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500735
736 // OPEN: Settings > Sound & notification > DND > [Time based rule]
737 // CATEGORY: SETTINGS
738 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500739 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500740
741 // OPEN: Settings > Sound & notification > DND > [External rule]
742 // CATEGORY: SETTINGS
743 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500744 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500745
746 // OPEN: Settings > Sound & notification > DND > [Event rule]
747 // CATEGORY: SETTINGS
748 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500749 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500750
751 // ACTION: App notification settings > Block Notifications
752 // CATEGORY: SETTINGS
753 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500754 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // ACTION: Notification shade > Dismiss all button
757 // CATEGORY: NOTIFICATION
758 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500759 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500760
761 // OPEN: QS Do Not Disturb detail panel
762 // CATEGORY: QUICK_SETTINGS
763 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500764 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500765
766 // OPEN: QS Bluetooth detail panel
767 // CATEGORY: QUICK_SETTINGS
768 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500769 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500770
771 // OPEN: QS Cast detail panel
772 // CATEGORY: QUICK_SETTINGS
773 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500774 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500775
776 // OPEN: QS Wi-Fi detail panel
777 // CATEGORY: QUICK_SETTINGS
778 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500779 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500780
781 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
782 // SUBTYPE: 0 is off, 1 is on
783 // CATEGORY: QUICK_SETTINGS
784 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500785 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500786
787 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
788 // SUBTYPE: 0 is off, 1 is on
789 // CATEGORY: QUICK_SETTINGS
790 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500791 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500792
793 // ACTION: QS Cellular detail panel > Cellular toggle
794 // SUBTYPE: 0 is off, 1 is on
795 // CATEGORY: QUICK_SETTINGS
796 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500797 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // ACTION: QS User list panel > Select different user
800 // CATEGORY: QUICK_SETTINGS
801 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500802 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500803
804 // ACTION: QS Cast detail panel > Select cast device
805 // CATEGORY: QUICK_SETTINGS
806 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500807 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500808
809 // ACTION: QS Cast detail panel > Disconnect cast device
810 // CATEGORY: QUICK_SETTINGS
811 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500812 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500813
814 // ACTION: Settings > Bluetooth > Toggle
815 // SUBTYPE: 0 is off, 1 is on
816 // CATEGORY: SETTINGS
817 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500818 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500819
820 // ACTION: Settings > Bluetooth > Overflow > Refresh
821 // CATEGORY: SETTINGS
822 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500823 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500824
825 // ACTION: Settings > Bluetooth > Overflow > Rename this device
826 // CATEGORY: SETTINGS
827 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500828 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500829
830 // ACTION: Settings > Bluetooth > Overflow > Show received files
831 // CATEGORY: SETTINGS
832 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500833 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // ACTION: QS DND details panel > Increase / Decrease exit time
836 // SUBTYPE: true is increase, false is decrease
837 // CATEGORY: QUICK_SETTINGS
838 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500839 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500840
841 // ACTION: QS DND details panel > [Exit condition]
842 // CATEGORY: QUICK_SETTINGS
843 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500844 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500845
846 // ACTION: QS DND details panel > [DND mode]
847 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
848 // CATEGORY: QUICK_SETTINGS
849 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500850 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500851
852 // ACTION: QS DND detail panel > DND toggle
853 // SUBTYPE: 0 is off, 1 is on
854 // CATEGORY: QUICK_SETTINGS
855 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500856 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -0500857
858 // ACTION: DND Settings > Priority only allows > Reminder toggle
859 // SUBTYPE: 0 is off, 1 is on
860 // CATEGORY: SETTINGS
861 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500862 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -0500863
864 // ACTION: DND Settings > Priority only allows > Event toggle
865 // SUBTYPE: 0 is off, 1 is on
866 // CATEGORY: SETTINGS
867 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500868 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -0500869
870 // ACTION: DND Settings > Priority only allows > Messages
871 // SUBTYPE: 0 is off, 1 is on
872 // CATEGORY: SETTINGS
873 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500874 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -0500875
876 // ACTION: DND Settings > Priority only allows > Calls
877 // SUBTYPE: 0 is off, 1 is on
878 // CATEGORY: SETTINGS
879 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500880 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -0500881
882 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
883 // SUBTYPE: 0 is off, 1 is on
884 // CATEGORY: SETTINGS
885 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500886 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -0500887
888 // ACTION: DND Settings > Automatic rules > Add rule
889 // CATEGORY: SETTINGS
890 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500891 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -0500892
893 // ACTION: DND Settings > Automatic rules > Add rule > OK
894 // CATEGORY: SETTINGS
895 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500896 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -0500897
898 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
899 // CATEGORY: SETTINGS
900 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500901 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -0500902
903 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
904 // CATEGORY: SETTINGS
905 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500906 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -0500907
908 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
909 // SUBTYPE: 0 is off, 1 is on
910 // CATEGORY: SETTINGS
911 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500912 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -0500913
914 // ACTION: Settings > More > Airplane mode toggle
915 // SUBTYPE: 0 is off, 1 is on
916 // CATEGORY: SETTINGS
917 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500918 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -0500919
920 // ACTION: Settings > Data usage > Cellular data toggle
921 // SUBTYPE: 0 is off, 1 is on
922 // CATEGORY: SETTINGS
923 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500924 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -0500925
926 // OPEN: Settings > Sound & notification > Notification access
927 // CATEGORY: SETTINGS
928 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500929 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -0500930
931 // OPEN: Settings > Sound & notification > Do Not Disturb access
932 // CATEGORY: SETTINGS
933 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500934 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -0500935
936 // OPEN: Settings > Apps > Configure apps > Default Apps
937 // CATEGORY: SETTINGS
938 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500939 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -0500940
941 // OPEN: Settings > Internal storage > Apps storage
942 // CATEGORY: SETTINGS
943 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500944 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -0500945
946 // OPEN: Settings > Security > Usage access
947 // CATEGORY: SETTINGS
948 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500949 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -0500950
951 // OPEN: Settings > Battery > Battery optimization
952 // CATEGORY: SETTINGS
953 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500954 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500957 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -0500958
959 // ACTION: Lockscreen > Unlock gesture
960 // CATEGORY: GLOBAL_SYSTEM_UI
961 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500962 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -0500963
964 // ACTION: Lockscreen > Pull shade open
965 // CATEGORY: GLOBAL_SYSTEM_UI
966 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500967 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -0500968
969 // ACTION: Lockscreen > Tap on lock, shows hint
970 // CATEGORY: GLOBAL_SYSTEM_UI
971 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500972 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -0500973
974 // ACTION: Lockscreen > Camera
975 // CATEGORY: GLOBAL_SYSTEM_UI
976 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500977 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -0500978
979 // ACTION: Lockscreen > Dialer
980 // CATEGORY: GLOBAL_SYSTEM_UI
981 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500982 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -0500983
984 // ACTION: Lockscreen > Tap on lock, locks phone
985 // CATEGORY: GLOBAL_SYSTEM_UI
986 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500987 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -0500988
989 // ACTION: Lockscreen > Tap on notification, false touch rejection
990 // CATEGORY: GLOBAL_SYSTEM_UI
991 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -0500992 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: Lockscreen > Swipe down to open quick settings
995 // CATEGORY: GLOBAL_SYSTEM_UI
996 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -0500997 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -0500998
999 // ACTION: Swipe down to open quick settings when unlocked
1000 // CATEGORY: GLOBAL_SYSTEM_UI
1001 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001002 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001003
1004 // ACTION: Notification shade > Tap to open quick settings
1005 // CATEGORY: GLOBAL_SYSTEM_UI
1006 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001007 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001008
1009 // OPEN: Lockscreen
1010 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1011 // CATEGORY: GLOBAL_SYSTEM_UI
1012 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001013 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001014
1015 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1016 // CATEGORY: GLOBAL_SYSTEM_UI
1017 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001018 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001019
1020 // OPEN: Screen turned on
1021 // SUBTYPE: 2 is user action
1022 // CATEGORY: GLOBAL_SYSTEM_UI
1023 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001024 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001025
1026 // OPEN: Notification caused sound, vibration, and/or LED blink
1027 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1028 // CATEGORY: NOTIFICATION
1029 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001030 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001031
1032 // ACTION: Lockscreen > Emergency Call button
1033 // CATEGORY: GLOBAL_SYSTEM_UI
1034 // OS: 5.1.1
Chris Wren77781d32016-01-11 14:49:26 -05001035 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001036
1037 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1038 // CATEGORY: SETTINGS
1039 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001040 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001041
1042 // OPEN: Settings > Memory
1043 // CATEGORY: SETTINGS
1044 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001045 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001046
1047 // ACTION: Settings > Display > When device is rotated
1048 // CATEGORY: SETTINGS
1049 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001050 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001051
1052 // ACTION: Long press on notification to view controls
1053 // CATEGORY: NOTIFICATION
1054 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001055 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001056
1057 // ACTION: Notificatoin controls > Info button
1058 // CATEGORY: NOTIFICATION
1059 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001060 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001061
1062 // ACTION: Notification controls > Settings button
1063 // CATEGORY: NOTIFICATION
1064 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001065 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001066
1067 // OPEN: Volume Dialog (with hardware buttons)
1068 // CATEGORY: GLOBAL_SYSTEM_UI
1069 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001070 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001071
1072 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1073 // CATEGORY: GLOBAL_SYSTEM_UI
1074 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001075 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001076
1077 // ACTION: Volume dialog > Adjust volume slider
1078 // SUBTYPE: volume level (0-7)
1079 // CATEGORY: GLOBAL_SYSTEM_UI
1080 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001081 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001082
1083 // ACTION: Volume dialog > Select non-active stream
1084 // SUBTYPE: stream (defined in AudioSystem.java)
1085 // CATEGORY: GLOBAL_SYSTEM_UI
1086 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001087 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001088
1089 // ACTION: Adjust volume with hardware key
1090 // SUBTYPE: volume level (0-7)
1091 // CATEGORY: GLOBAL_SYSTEM_UI
1092 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001093 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001094
1095 // ACTION: Volume dialog > Mute a stream by tapping icon
1096 // SUBTYPE: mute is 1, audible is 2
1097 // CATEGORY: GLOBAL_SYSTEM_UI
1098 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001099 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001100
1101 // ACTION: Volume dialog > Change ringer mode by tapping icon
1102 // SUBTYPE: 2 is audible, 3 is vibrate
1103 // CATEGORY: GLOBAL_SYSTEM_UI
1104 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001105 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001106
1107 // ACTION: Chooser shown (share target, file open, etc.)
1108 // CATEGORY: GLOBAL_SYSTEM_UI
1109 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001110 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001111
1112 // ACTION: Chooser > User taps an app target
1113 // SUBTYPE: Index of target
1114 // CATEGORY: GLOBAL_SYSTEM_UI
1115 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001116 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001117
1118 // ACTION: Chooser > User taps a service target
1119 // SUBTYPE: Index of target
1120 // CATEGORY: GLOBAL_SYSTEM_UI
1121 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001122 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001123
1124 // ACTION: Chooser > User taps a standard target
1125 // SUBTYPE: Index of target
1126 // CATEGORY: GLOBAL_SYSTEM_UI
1127 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001128 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001129
1130 // ACTION: QS Brightness Slider (with auto brightness disabled)
1131 // SUBTYPE: slider value
1132 // CATEGORY: QUICK_SETTINGS
1133 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001134 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001135
1136 // ACTION: QS Brightness Slider (with auto brightness enabled)
1137 // SUBTYPE: slider value
1138 // CATEGORY: QUICK_SETTINGS
1139 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001140 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001141
1142 // OPEN: Settings > Display > Brightness Slider
1143 // CATEGORY: SETTINGS
1144 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001145 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001146
1147 // OPEN: Settings > Apps > Configure Apps > Draw over other apps
1148 // CATEGORY: SETTINGS
1149 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001150 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001151
1152 // OPEN: Display has entered dream mode
1153 // CATEGORY: GLOBAL_SYSTEM_UI
1154 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001155 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001156
1157 // OPEN: Display has entered ambient notification mode
1158 // CATEGORY: GLOBAL_SYSTEM_UI
1159 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001160 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // OPEN: Overview
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001165 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001166
1167 // OPEN: Settings > About phone > Legal information
1168 // CATEGORY: SETTINGS
1169 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001170 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001171
1172 // OPEN: Settings > Search > Perform search
1173 // CATEGORY: SETTINGS
1174 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001175 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001176
1177 // OPEN: Settings > System UI Tuner
1178 // CATEGORY: SETTINGS
1179 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001180 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001181
1182 // OPEN: Settings > System UI Tuner > Quick Settings
1183 // CATEGORY: SETTINGS
1184 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001185 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // OPEN: Settings > System UI Tuner > Demo mode
1188 // CATEGORY: SETTINGS
1189 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001190 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001191
1192 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1193 // PACKAGE: Tile
1194 // CATEGORY: SETTINGS
1195 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001196 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001197
1198 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1199 // PACKAGE: Tile
1200 // CATEGORY: SETTINGS
1201 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001202 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001203
1204 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1205 // PACKAGE: Tile
1206 // CATEGORY: SETTINGS
1207 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001208 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001209
1210 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1211 // PACKAGE: Icon
1212 // CATEGORY: SETTINGS
1213 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001214 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001215
1216 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1217 // PACKAGE: Icon
1218 // CATEGORY: SETTINGS
1219 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001220 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001221
1222 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1223 // SUBTYPE: false is disabled, true is enabled
1224 // CATEGORY: SETTINGS
1225 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001226 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001227
1228 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1229 // SUBTYPE: false is disabled, true is enabled
1230 // CATEGORY: SETTINGS
1231 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001232 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001233
1234 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1235 // SUBTYPE: 0 is disabled, 1 is enabled
1236 // CATEGORY: SETTINGS
1237 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001238 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001239
1240 // OPEN: Settings > Developer options > Inactive apps
1241 // CATEGORY: SETTINGS
1242 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001243 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001244
1245 // ACTION: Long press home to bring up assistant
1246 // CATEGORY: GLOBAL_SYSTEM_UI
1247 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001248 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001249
1250 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1251 // CATEGORY: SETTINGS
1252 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001253 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // OPEN: Fingerprint Enroll > Find Sensor
1256 // CATEGORY: SETTINGS
1257 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001258 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001259
1260 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1261 // CATEGORY: SETTINGS
1262 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001263 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001264
1265 // OPEN: Fingerprint Enroll introduction
1266 // CATEGORY: SETTINGS
1267 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001268 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001269
1270 // OPEN: Fingerprint Enroll onboarding
1271 // CATEGORY: SETTINGS
1272 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001273 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // OPEN: Fingerprint Enroll > Let's Start!
1276 // CATEGORY: SETTINGS
1277 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001278 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001279
1280 // OPEN: Fingerprint Enroll SUW > Let's Start!
1281 // CATEGORY: SETTINGS
1282 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001283 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001284
1285 // OPEN: Fingerprint Enroll SUW > Find Sensor
1286 // CATEGORY: SETTINGS
1287 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001288 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001289
1290 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1291 // CATEGORY: SETTINGS
1292 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001293 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001294
1295 // OPEN: Fingerprint Enroll SUW introduction
1296 // CATEGORY: SETTINGS
1297 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001298 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001299
1300 // OPEN: Fingerprint Enroll SUW onboarding
1301 // CATEGORY: SETTINGS
1302 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001303 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001304
1305 // ACTION: Add fingerprint > Enroll fingerprint
1306 // CATEGORY: SETTINGS
1307 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001308 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001309
1310 // ACTION: Authenticate using fingerprint
1311 // CATEGORY: SETTINGS
1312 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001313 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001314
1315 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1316 // CATEGORY: SETTINGS
1317 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001318 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001319
1320 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1321 // CATEGORY: SETTINGS
1322 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001323 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001324
1325 // ACTION: Double tap camera shortcut
1326 // CATEGORY: GLOBAL_SYSTEM_UI
1327 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001328 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // ACTION: Double twist camera shortcut
1331 // CATEGORY: GLOBAL_SYSTEM_UI
1332 // OS: 6.0
Chris Wren77781d32016-01-11 14:49:26 -05001333 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001334
1335 // OPEN: QS Work Mode tile shown
1336 // ACTION: QS Work Mode tile tapped
1337 // SUBTYPE: 0 is off, 1 is on
1338 // CATEGORY: QUICK_SETTINGS
1339 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001340 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001341
1342 // OPEN: Settings > Developer Options > Background Check
1343 // CATEGORY: SETTINGS
1344 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001345 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001346
1347 // OPEN: QS Lock tile shown
1348 // ACTION: QS Lock tile tapped
1349 // SUBTYPE: 0 is off, 1 is on
1350 // CATEGORY: QUICK_SETTINGS
1351 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001352 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001353
1354 // OPEN: QS User Tile shown
1355 // CATEGORY: QUICK_SETTINGS
1356 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001357 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001358
1359 // OPEN: QS Battery tile shown
1360 // CATEGORY: QUICK_SETTINGS
1361 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001362 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001363
1364 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1365 // CATEGORY: SETTINGS
1366 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001367 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001368
1369 // ACTION: Visual interruptions > No screen interuptions toggle
1370 // SUBTYPE: 0 is off, 1 is on
1371 // CATEGORY: SETTINGS
1372 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001373 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001374
1375 // ACTION: Visual interruptions > No notification light toggle
1376 // SUBTYPE: 0 is off, 1 is on
1377 // CATEGORY: SETTINGS
1378 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001379 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001380
1381 // OPEN: Settings > Notifications > [App] > Topic Notifications
1382 // CATEGORY: SETTINGS
1383 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001384 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001385
1386 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1387 // PACKAGE: Selected SMS app
1388 // CATEGORY: SETTINGS
1389 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001390 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001391
1392 // OPEN: QS Color modification tile shown
1393 // ACTION: QS Color modification tile tapped
1394 // SUBTYPE: 0 is off, 1 is on
1395 // CATEGORY: QUICK_SETTINGS
1396 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001397 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001398
1399 // OPEN: QS Custom tile shown
1400 // ACTION: QS Work Mode tile tapped
1401 // CATEGORY: QUICK_SETTINGS
1402 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001403 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001404
1405 // ACTION: Visual interruptions > Never turn off the screen toggle
1406 // SUBTYPE: 0 is off, 1 is on
1407 // CATEGORY: SETTINGS
1408 // OS: N
Julia Reynoldsd5607292016-02-05 15:25:58 -05001409 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001410
Chris Wren7c516842016-03-01 16:44:32 -05001411 // ACTION: Overview > Long-press task, drag to enter split-screen
1412 // CATEGORY: GLOBAL_SYSTEM_UI
1413 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001414 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1415
Chris Wren7c516842016-03-01 16:44:32 -05001416 // ACTION: In App > Long-press Overview button to enter split-screen
1417 // CATEGORY: GLOBAL_SYSTEM_UI
1418 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001419 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1420
Chris Wren7c516842016-03-01 16:44:32 -05001421 // ACTION: In App > Swipe Overview button to enter split-screen
1422 // CATEGORY: GLOBAL_SYSTEM_UI
1423 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001424 ACTION_WINDOW_DOCK_SWIPE = 272;
1425
Chris Wren7c516842016-03-01 16:44:32 -05001426 // ACTION: Launch profile-specific app > Confirm credentials
1427 // CATEGORY: GLOBAL_SYSTEM_UI
1428 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001429 PROFILE_CHALLENGE = 273;
1430
Chris Wren7c516842016-03-01 16:44:32 -05001431 // OPEN: QS Battery detail panel
1432 // CATEGORY: GLOBAL_SYSTEM_UI
1433 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001434 QS_BATTERY_DETAIL = 274;
1435
Chris Wren7c516842016-03-01 16:44:32 -05001436 // OPEN: Overview > History
1437 // CATEGORY: GLOBAL_SYSTEM_UI
1438 // OS: N
Chris Wren77781d32016-01-11 14:49:26 -05001439 OVERVIEW_HISTORY = 275;
1440
Chris Wren7c516842016-03-01 16:44:32 -05001441 // ACTION: Overview > Page by tapping Overview button
1442 // CATEGORY: GLOBAL_SYSTEM_UI
1443 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001444 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001445
Chris Wren7c516842016-03-01 16:44:32 -05001446 // ACTION: Overview > Select app
1447 // CATEGORY: GLOBAL_SYSTEM_UI
1448 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001449 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001450
Chris Wren7c516842016-03-01 16:44:32 -05001451 // ACTION: View emergency info
1452 // CATEGORY: GLOBAL_SYSTEM_UI
1453 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001454 ACTION_VIEW_EMERGENCY_INFO = 278;
1455
Chris Wren7c516842016-03-01 16:44:32 -05001456 // ACTION: Edit emergency info activity
1457 // CATEGORY: SETTINGS
1458 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001459 ACTION_EDIT_EMERGENCY_INFO = 279;
1460
Chris Wren7c516842016-03-01 16:44:32 -05001461 // ACTION: Edit emergency info field
1462 // CATEGORY: SETTINGS
1463 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001464 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1465
Chris Wren7c516842016-03-01 16:44:32 -05001466 // ACTION: Add emergency contact
1467 // CATEGORY: SETTINGS
1468 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001469 ACTION_ADD_EMERGENCY_CONTACT = 281;
1470
Chris Wren7c516842016-03-01 16:44:32 -05001471 // ACTION: Delete emergency contact
1472 // CATEGORY: SETTINGS
1473 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001474 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1475
Chris Wren7c516842016-03-01 16:44:32 -05001476 // ACTION: Call emergency contact
1477 // CATEGORY: SETTINGS
1478 // OS: N
mariagpuyol64916b72016-01-21 13:53:21 -08001479 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001480
Chris Wren7c516842016-03-01 16:44:32 -05001481 // OPEN: QS Data Saver tile shown
1482 // ACTION: QS Data Saver tile tapped
1483 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001484 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001485
Robin Lee8c1306e2016-02-01 11:37:02 +00001486 // OPEN: Settings > Security > User credentials
1487 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001488 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001489 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001490
Chris Wren7c516842016-03-01 16:44:32 -05001491 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1492 // CATEGORY: GLOBAL_SYSTEM_UI
1493 // OS: N
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001494 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001495
1496 // Logged when the user scrolls through overview manually
1497 OVERVIEW_SCROLL = 287;
1498
1499 // Logged when the overview times out automatically selecting an app
1500 OVERVIEW_SELECT_TIMEOUT = 288;
1501
1502 // Logged when a user dismisses a task in overview
1503 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001504
1505 // Logged when the user modifying the notification importance slider.
1506 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1507
1508 // Logged when the user saves a modification to notification importance. Negative numbers
1509 // indicate the user lowered the importance; positive means they increased it.
1510 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001511
Chris Wren7c516842016-03-01 16:44:32 -05001512 // ACTION: Long-press power button, then tap "Take bug report" option.
1513 // CATEGORY: GLOBAL_SYSTEM_UI
1514 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001515 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1516
Chris Wren7c516842016-03-01 16:44:32 -05001517 // ACTION: Long-press power button, then long-press "Take bug report" option.
1518 // CATEGORY: GLOBAL_SYSTEM_UI
1519 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001520 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1521
Chris Wren7c516842016-03-01 16:44:32 -05001522 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1523 // CATEGORY: SETTINGS
1524 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001525 // Interactive bug report initiated from Settings.
1526 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1527
Chris Wren7c516842016-03-01 16:44:32 -05001528 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1529 // CATEGORY: SETTINGS
1530 // OS: N
Chris Wren7c516842016-03-01 16:44:32 -05001531 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001532 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1533
Chris Wren7c516842016-03-01 16:44:32 -05001534 // ACTION: User tapped notification action to cancel a bug report
1535 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001536 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001537 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1538
Chris Wren7c516842016-03-01 16:44:32 -05001539 // ACTION: User tapped notification action to launch bug report details screen
1540 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001541 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001542 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1543
Chris Wren7c516842016-03-01 16:44:32 -05001544 // ACTION: User tapped notification action to take adition screenshot on bug report
1545 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001546 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001547 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1548
Chris Wren7c516842016-03-01 16:44:32 -05001549 // ACTION: User tapped notification to share bug report
1550 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001551 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001552 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1553
Chris Wren7c516842016-03-01 16:44:32 -05001554 // ACTION: User changed bug report name using the details screen
1555 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001556 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001557 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1558
Chris Wren7c516842016-03-01 16:44:32 -05001559 // ACTION: User changed bug report title using the details screen
1560 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001561 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001562 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1563
Chris Wren7c516842016-03-01 16:44:32 -05001564 // ACTION: User changed bug report description using the details screen
1565 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001566 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001567 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1568
Chris Wren7c516842016-03-01 16:44:32 -05001569 // ACTION: User tapped Save in the bug report details screen.
1570 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001571 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001572 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1573
Chris Wren7c516842016-03-01 16:44:32 -05001574 // ACTION: User tapped Cancel in the bug report details screen.
1575 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001576 // OS: N
Felipe Leme6605bd82016-02-22 15:22:20 -08001577 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001578
1579 // Tuner: Open/close calibrate dialog.
1580 TUNER_CALIBRATE_DISPLAY = 305;
1581
1582 // Tuner: Open/close color and appearance.
1583 TUNER_COLOR_AND_APPEARANCE = 306;
1584
1585 // Tuner: Apply calibrate dialog.
1586 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1587
1588 // Tuner: Open/close night mode.
1589 TUNER_NIGHT_MODE = 308;
1590
1591 // Tuner: Change night mode.
1592 ACTION_TUNER_NIGHT_MODE = 309;
1593
1594 // Tuner: Change night mode auto.
1595 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1596
1597 // Tuner: Change night mode adjust dark theme.
1598 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1599
1600 // Tuner: Change night mode adjust tint.
1601 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1602
1603 // Tuner: Change night mode adjust brightness.
1604 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1605
1606 // Tuner: Change do not disturb in volume panel.
1607 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1608
1609 // Tuner: Change do not disturb volume buttons shortcut.
1610 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001611
1612 // Logs the action the user takes when an app crashed.
1613 ACTION_APP_CRASH = 316;
1614
1615 // Logs the action the user takes when an app ANR'd.
1616 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001617
1618 // Logged when a user double taps the overview button to launch the previous task
1619 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001620
1621 // Logged when we execute an app transition. This indicates the total delay from startActivity
1622 // until the app transition is starting to animate, in milliseconds.
1623 APP_TRANSITION_DELAY_MS = 319;
1624
1625 // Logged when we execute an app transition. This indicates the reason why the transition
1626 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1627 APP_TRANSITION_REASON = 320;
1628
1629 // Logged when we execute an app transition and we drew a starting window. This indicates the
1630 // delay from startActivity until the starting window was drawn.
1631 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1632
1633 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1634 // the delay from startActivity until all windows have been drawn.
1635 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1636
1637 // Logged when we execute an app transition. This indicates the component name of the current
1638 // transition.
1639 APP_TRANSITION_COMPONENT_NAME = 323;
1640
1641 // Logged when we execute an app transition. This indicates whether the process was already
1642 // running.
1643 APP_TRANSITION_PROCESS_RUNNING = 324;
1644
1645 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1646 // the transition was executed.
1647 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001648
Chris Wren38f98812016-07-13 14:28:40 -04001649 // ACTION: app requested access to a scoped directory, user granted it.
1650 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1651 // CATEGORY: GLOBAL_SYSTEM_UI
1652 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001653 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1654
Chris Wren38f98812016-07-13 14:28:40 -04001655 // ACTION: app requested access to a scoped directory, user denied it.
1656 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES
1657 // CATEGORY: GLOBAL_SYSTEM_UI
1658 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001659 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1660
Chris Wren38f98812016-07-13 14:28:40 -04001661 // ACTION: app requested access to a scoped directory, user granted it.
1662 // PACKAGE: app that requested access
1663 // CATEGORY: GLOBAL_SYSTEM_UI
1664 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001665 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1666
Chris Wren38f98812016-07-13 14:28:40 -04001667 // ACTION: app requested access to a scoped directory, user denied it.
1668 // PACKAGE: app that requested access.
1669 // CATEGORY: GLOBAL_SYSTEM_UI
1670 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001671 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1672
Chris Wren38f98812016-07-13 14:28:40 -04001673 // ACTION: app requested access to a directory user has already been granted
1674 // access before.
1675 // SUBTYPE: directory's index on Environment.STANDARD_DIRECTORIES.
1676 // CATEGORY: GLOBAL_SYSTEM_UI
1677 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001678 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1679
Chris Wren38f98812016-07-13 14:28:40 -04001680 // ACTION: app requested access to a directory user has already been granted
1681 // access before.
1682 // PACKAGE: app that requested access.
1683 // CATEGORY: GLOBAL_SYSTEM_UI
1684 // OS: N
Felipe Leme3e166b22016-02-24 10:17:41 -08001685 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001686
Chris Wren38f98812016-07-13 14:28:40 -04001687 // ACTION: Logged when the user slides a notification and reveals the gear
1688 // beneath it.
1689 // CATEGORY: NOTIFICATION
1690 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001691 ACTION_REVEAL_GEAR = 332;
1692
Chris Wren38f98812016-07-13 14:28:40 -04001693 // ACTION: Logged when the user taps on the gear beneath a notification.
1694 // CATEGORY: NOTIFICATION
1695 // OS: N
Mady Mellora41587b2016-02-11 18:43:06 -08001696 ACTION_TOUCH_GEAR = 333;
1697
Ruben Brunke24b9a62016-02-16 21:38:24 -08001698 // Logs that the user has edited the enabled VR listeners.
Chris Wren38f98812016-07-13 14:28:40 -04001699 // CATEGORY: SETTINGS
1700 // OS: N
Ruben Brunke24b9a62016-02-16 21:38:24 -08001701 VR_MANAGE_LISTENERS = 334;
1702
Jason Monk6f5354d2016-03-08 14:18:08 -05001703 // Settings -> Accessibility -> Click after pointer stops moving
Chris Wren38f98812016-07-13 14:28:40 -04001704 // CATEGORY: SETTINGS
1705 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001706 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
Chris Wren38f98812016-07-13 14:28:40 -04001707
Jason Monk6f5354d2016-03-08 14:18:08 -05001708 // Settings -> Sound
Chris Wren38f98812016-07-13 14:28:40 -04001709 // CATEGORY: SETTINGS
1710 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001711 SOUND = 336;
Chris Wren38f98812016-07-13 14:28:40 -04001712
Jason Monk6f5354d2016-03-08 14:18:08 -05001713 // Settings -> Notifications -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001714 // CATEGORY: SETTINGS
1715 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001716 CONFIGURE_NOTIFICATION = 337;
Chris Wren38f98812016-07-13 14:28:40 -04001717
Jason Monk6f5354d2016-03-08 14:18:08 -05001718 // Settings -> Wi-Fi -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001719 // CATEGORY: SETTINGS
1720 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001721 CONFIGURE_WIFI = 338;
Chris Wren38f98812016-07-13 14:28:40 -04001722
Jason Monk6f5354d2016-03-08 14:18:08 -05001723 // Settings -> Display -> Display size
Chris Wren38f98812016-07-13 14:28:40 -04001724 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001725 DISPLAY_SCREEN_ZOOM = 339;
Chris Wren38f98812016-07-13 14:28:40 -04001726
Jason Monk6f5354d2016-03-08 14:18:08 -05001727 // Settings -> Display -> Font size
Chris Wren38f98812016-07-13 14:28:40 -04001728 // CATEGORY: SETTINGS
1729 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001730 ACCESSIBILITY_FONT_SIZE = 340;
Chris Wren38f98812016-07-13 14:28:40 -04001731
Jason Monk6f5354d2016-03-08 14:18:08 -05001732 // Settings -> Data usage -> Cellular/Wi-Fi data usage
Chris Wren38f98812016-07-13 14:28:40 -04001733 // CATEGORY: SETTINGS
1734 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001735 DATA_USAGE_LIST = 341;
Chris Wren38f98812016-07-13 14:28:40 -04001736
Jason Monk6f5354d2016-03-08 14:18:08 -05001737 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
Chris Wren38f98812016-07-13 14:28:40 -04001738 // CATEGORY: SETTINGS
1739 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001740 BILLING_CYCLE = 342;
Chris Wren38f98812016-07-13 14:28:40 -04001741
Jason Monk6f5354d2016-03-08 14:18:08 -05001742 // DATA_USAGE_LIST -> Any item or App info -> Data usage
Chris Wren38f98812016-07-13 14:28:40 -04001743 // CATEGORY: SETTINGS
1744 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001745 APP_DATA_USAGE = 343;
Chris Wren38f98812016-07-13 14:28:40 -04001746
Jason Monk6f5354d2016-03-08 14:18:08 -05001747 // Settings -> Language & input -> Language
Chris Wren38f98812016-07-13 14:28:40 -04001748 // CATEGORY: SETTINGS
1749 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001750 USER_LOCALE_LIST = 344;
Chris Wren38f98812016-07-13 14:28:40 -04001751
Jason Monk6f5354d2016-03-08 14:18:08 -05001752 // Settings -> Language & input -> Virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001753 // CATEGORY: SETTINGS
1754 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001755 VIRTUAL_KEYBOARDS = 345;
Chris Wren38f98812016-07-13 14:28:40 -04001756
Jason Monk6f5354d2016-03-08 14:18:08 -05001757 // Settings -> Language & input -> Physical keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001758 // CATEGORY: SETTINGS
1759 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001760 PHYSICAL_KEYBOARDS = 346;
Chris Wren38f98812016-07-13 14:28:40 -04001761
Jason Monk6f5354d2016-03-08 14:18:08 -05001762 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
Chris Wren38f98812016-07-13 14:28:40 -04001763 // CATEGORY: SETTINGS
1764 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001765 ENABLE_VIRTUAL_KEYBOARDS = 347;
Chris Wren38f98812016-07-13 14:28:40 -04001766
Jason Monk6f5354d2016-03-08 14:18:08 -05001767 // Settings -> Data usage -> Data Saver
Chris Wren38f98812016-07-13 14:28:40 -04001768 // CATEGORY: SETTINGS
1769 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001770 DATA_SAVER_SUMMARY = 348;
Chris Wren38f98812016-07-13 14:28:40 -04001771
Jason Monk6f5354d2016-03-08 14:18:08 -05001772 // Settings -> Data usage -> Data Saver -> Unrestricted data access
Chris Wren38f98812016-07-13 14:28:40 -04001773 // CATEGORY: SETTINGS
1774 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001775 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1776
1777 // Used for generic logging of Settings Preference Persistence, should not be used
1778 // outside SharedPreferencesLogger.
Chris Wren38f98812016-07-13 14:28:40 -04001779 // CATEGORY: SETTINGS
1780 // OS: N
Jason Monk6f5354d2016-03-08 14:18:08 -05001781 ACTION_GENERIC_PACKAGE = 350;
Chris Wren38f98812016-07-13 14:28:40 -04001782
Jason Monk6f5354d2016-03-08 14:18:08 -05001783 // Settings -> Apps -> Gear -> Special access
1784 SPECIAL_ACCESS = 351;
1785
Muyuan Lia2129992016-03-03 18:30:39 -08001786 // Logs that the user docks window via shortcut key.
1787 WINDOW_DOCK_SHORTCUTS = 352;
1788
Felipe Lemeadccb992016-03-09 17:40:49 -08001789 // User already denied access to the request folder; action takes an integer
1790 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001791 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001792 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
1793
1794 // User already denied access to the request folder; action pass package name
1795 // of calling package.
1796 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
1797
1798 // User denied access to the request folder and checked 'Do not ask again';
1799 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001800 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08001801 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
1802
1803 // User denied access to the request folder and checked 'Do not ask again';
1804 // action pass package name of calling package.
1805 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
1806
Winson3b6ba1a2016-03-22 15:37:54 -07001807 // Logged when a user dismisses all task in overview
1808 OVERVIEW_DISMISS_ALL = 357;
1809
Jason Monk96defbe2016-03-29 16:51:03 -04001810 // Quick Settings -> Edit
1811 QS_EDIT = 358;
1812
1813 // Quick Settings -> Edit -> Overflow -> Reset
1814 ACTION_QS_EDIT_RESET = 359;
1815
1816 // QS -> Edit - Drag a tile out of the active tiles.
1817 // The _SPEC contains either the spec of the tile or
1818 // the package of the 3rd party app in the PKG field.
1819 ACTION_QS_EDIT_REMOVE_SPEC = 360;
1820 ACTION_QS_EDIT_REMOVE = 361;
1821
1822 // QS -> Edit - Drag a tile into the active tiles.
1823 // The _SPEC contains either the spec of the tile or
1824 // the package of the 3rd party app in the PKG field.
1825 ACTION_QS_EDIT_ADD_SPEC = 362;
1826 ACTION_QS_EDIT_ADD = 363;
1827
1828 // QS -> Edit - Drag a tile within the active tiles.
1829 // The _SPEC contains either the spec of the tile or
1830 // the package of the 3rd party app in the PKG field.
1831 ACTION_QS_EDIT_MOVE_SPEC = 364;
1832 ACTION_QS_EDIT_MOVE = 365;
1833
1834 // Long-press on a QS tile. Tile spec in package field.
1835 ACTION_QS_LONG_PRESS = 366;
1836
Anna Galuszadad131f2016-03-22 13:49:02 -07001837 // OPEN: SUW Welcome Screen -> Vision Settings
1838 // CATEGORY: SETTINGS
1839 // OS: N
1840 SUW_ACCESSIBILITY = 367;
1841
1842 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
1843 // ACTION: New magnification gesture configuration is chosen
1844 // SUBTYPE: 0 is off, 1 is on
1845 // CATEGORY: SETTINGS
1846 // OS: N
1847 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
1848
1849 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
1850 // ACTION: New font size is chosen
1851 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
1852 // CATEGORY: SETTINGS
1853 // OS: N
1854 SUW_ACCESSIBILITY_FONT_SIZE = 369;
1855
1856 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
1857 // ACTION: New display size is chosen
1858 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
1859 // CATEGORY: SETTINGS
1860 // OS: N
1861 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
1862
1863 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
1864 // ACTION: New screen reader configuration is chosen
1865 // SUBTYPE: 0 is off, 1 is on
1866 // CATEGORY: SETTINGS
1867 // OS: N
1868 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
1869
Jason Monkc3620392016-03-30 15:46:03 -04001870 // ------- Begin N Settings conditionals -----
1871 // Conditionals are the green bars at the top of the settings dashboard
1872 // All conditionals will have visible/hide events onResume/onPause
1873 // but they will also be used as extra ints in the
1874 // dismiss/expand/collapse/click/button events
1875
1876 // swipe away conditional
1877 ACTION_SETTINGS_CONDITION_DISMISS = 372;
1878
1879 // click on collapsed conditional or clicks expand button
1880 ACTION_SETTINGS_CONDITION_EXPAND = 373;
1881
1882 // click collapse button on expanded conditional
1883 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
1884
1885 // click main area of expanded conditional
1886 ACTION_SETTINGS_CONDITION_CLICK = 375;
1887
1888 // click a direct button on expanded conditional
1889 ACTION_SETTINGS_CONDITION_BUTTON = 376;
1890
1891 // Airplane mode on
1892 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
1893 // AKA Data saver on
1894 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
1895 // Battery saver on
1896 SETTINGS_CONDITION_BATTERY_SAVER = 379;
1897 // Cellular data off
1898 SETTINGS_CONDITION_CELLULAR_DATA = 380;
1899 // Do not disturb on
1900 SETTINGS_CONDITION_DND = 381;
1901 // Hotspot on
1902 SETTINGS_CONDITION_HOTSPOT = 382;
1903 // Work profile off
1904 SETTINGS_CONDITION_WORK_MODE = 383;
1905
Jason Monk1b5d87b2016-03-30 16:03:15 -04001906 // ------- Begin N Settings suggestions -----
1907 // Since suggestions come from system apps, suggestions will
1908 // have generic constants and the package providing the suggestion
1909 // will be put in the package field. For suggestions in the Settings
1910 // package, the class name will be filled in instead (since settings
1911 // provides several suggetions).
1912
1913 // Settings shown/hidden on main settings dashboard.
1914 // These are actually visibility events, but visible/hidden doesn't
1915 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04001916 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
1917 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001918
1919 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04001920 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001921
1922 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04001923 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04001924
Jason Monk397df682016-03-28 15:48:34 -04001925 // Settings > Apps > Gear > Special Access > Premium SMS access
1926 PREMIUM_SMS_ACCESS = 388;
1927
Jorim Jaggi29379ec2016-04-11 23:43:42 -07001928 // Logged when the user resizes the docked stack. Arguments:
1929 // 0: Split 50:50
1930 // 1: Docked smaller
1931 // 2: Docked larger
1932 ACTION_WINDOW_DOCK_RESIZE = 389;
1933
1934 // User exits split-screen by dragging the divider to the side of the screen. Arguments
1935 // 0: Docked gets maximized
1936 // 1: Fullscreen gets maximized
1937 ACTION_WINDOW_UNDOCK_MAX = 390;
1938
1939 // User tried to dock an unresizable app.
1940 ACTION_WINDOW_DOCK_UNRESIZABLE = 391;
1941
Julia Reynolds4d920ff2016-04-06 20:31:05 -04001942 // System UI Tuner > Other > Power notification controls
1943 TUNER_POWER_NOTIFICATION_CONTROLS = 392;
1944
1945 // System UI Tuner > Other > Power notification controls > Toggle on/off
1946 ACTION_TUNER_POWER_NOTIFICATION_CONTROLS = 393;
1947
Chris Wren38f98812016-07-13 14:28:40 -04001948 // Action: user enable / disabled data saver using Settings
1949 // OPEN: Settings -> Data Usage -> Data saver -> On/off toggle
1950 // VALUE: 1 for enabled, 0 for disabled
1951 // CATEGORY: SETTINGS
1952 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001953 ACTION_DATA_SAVER_MODE = 394;
1954
Chris Wren38f98812016-07-13 14:28:40 -04001955 // User whitelisted an app for Data Saver mode; action pass package name of app
1956 // Action: user enable / disabled data saver using Settings
1957 // OPEN: Settings -> Data Usage -> Data saver -> Unrestricted data access > APP toggle turned on
1958 // or
1959 // Settings -> Apps -> APP -> Data usage -> Unrestricted data usage toggle turned on
1960 // VALUE: package name of APP
1961 // CATEGORY: SETTINGS
1962 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001963 ACTION_DATA_SAVER_WHITELIST = 395;
1964
Chris Wren38f98812016-07-13 14:28:40 -04001965 // User blacklisted an app for Data Saver mode; action pass package name of app
1966 // OPEN: Settings -> Apps -> APP -> Data usage -> Background data toggle turned off
1967 // VALUE: package name of APP
1968 // CATEGORY: SETTINGS
1969 // OS: N
Felipe Leme3ff57642016-04-14 14:26:56 -07001970 ACTION_DATA_SAVER_BLACKLIST = 396;
1971
Adrian Roosceeb04c2016-04-25 14:00:54 -07001972 // User opened a remote input view associated with a notification. Passes package name of app
1973 // that posted the notification. Note that this can also happen transiently during notification
1974 // reinflation.
1975 ACTION_REMOTE_INPUT_OPEN = 397;
1976
1977 // User attempt to send data through a remote input view associated with a notification.
1978 // Passes package name of app that posted the notification. May succeed or fail.
1979 ACTION_REMOTE_INPUT_SEND = 398;
1980
1981 // Failed attempt to send data through a remote input view associated with a
1982 // notification. Passes package name of app that posted the notification.
1983 ACTION_REMOTE_INPUT_FAIL = 399;
1984
1985 // User closed a remote input view associated with a notification. Passes package name of app
1986 // that posted the notification. Note that this can also happen transiently during notification
1987 // reinflation.
1988 ACTION_REMOTE_INPUT_CLOSE = 400;
1989
Tony Mak7a5b17bb2016-04-29 10:27:48 +01001990 // OPEN: Settings > Accounts > Work profile settings
1991 // CATEGORY: SETTINGS
1992 ACCOUNTS_WORK_PROFILE_SETTINGS = 401;
1993
Jason Monk25118d12016-05-10 13:25:50 -04001994 // Settings -> Dev options -> Convert to file encryption
1995 CONVERT_FBE = 402;
1996
1997 // Settings -> Dev options -> Convert to file encryption -> WIPE AND CONVERT...
1998 CONVERT_FBE_CONFIRM = 403;
1999
2000 // Settings -> Dev options -> Running services
2001 RUNNING_SERVICES = 404;
2002
Jason Monka1f697f2016-05-06 15:09:44 -04002003 // The dialog shown by 3P intent to change current webview implementation.
2004 WEBVIEW_IMPLEMENTATION = 405;
2005
Julia Reynolds8f3e66f2016-05-12 10:33:47 -04002006 // Settings launched from expanded quick settings.
2007 ACTION_QS_EXPANDED_SETTINGS_LAUNCH = 406;
2008
Chris Wren698b1702016-05-23 11:16:32 -04002009 // Notification expansion state toggled by the expand affordance.
2010 ACTION_NOTIFICATION_EXPANDER = 407;
2011
2012 // Notification group expansion state toggled by the expand affordance.
2013 ACTION_NOTIFICATION_GROUP_EXPANDER = 408;
2014
Chris Wren7ee84182016-05-27 13:34:02 -04002015
Chris Wren6abeeb92016-05-26 14:44:38 -04002016 // Notification expansion state toggled by the expand gesture.
2017 ACTION_NOTIFICATION_GESTURE_EXPANDER = 409;
2018
2019 // Notification group expansion state toggled by the expand gesture.
2020 ACTION_NOTIFICATION_GROUP_GESTURE_EXPANDER = 410;
2021
Bhavik Singh3451da42016-06-01 18:25:59 -07002022 // User performs gesture that activates the ambient display
2023 // 1: Gesture performed is Nudge
2024 // 2: Gesture performed is Pickup
2025 // 4: Gesture performed is Double Tap
2026 ACTION_AMBIENT_GESTURE = 411;
2027
Jason Monk9fa5f822016-05-11 10:26:31 -04002028 // ---- End N Constants, all N constants go above this line ----
2029
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002030 // ------- Begin N App Disambig Shade -----
2031 // Application disambig shade opened or closed with a featured app.
2032 // These are actually visibility events, but visible/hidden doesn't
2033 // take a package, so these are being logged as actions.
2034 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002035 ACTION_SHOW_APP_DISAMBIG_APP_FEATURED = 451;
2036 ACTION_HIDE_APP_DISAMBIG_APP_FEATURED = 452;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002037
2038 // Application disambig shade opened or closed without a featured app.
2039 // These are actually visibility events, but visible/hidden doesn't
2040 // take a package, so these are being logged as actions.
2041 // Package: Calling app on open, called app on close
Jason Monk9fa5f822016-05-11 10:26:31 -04002042 ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED = 453;
2043 ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED = 454;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002044
2045 // User opens in an app by pressing “Always” in the application disambig shade.
2046 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002047 ACTION_APP_DISAMBIG_ALWAYS = 455;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002048
2049 // User opens in an app by pressing “Just Once” in the application disambig shade.
2050 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002051 ACTION_APP_DISAMBIG_JUST_ONCE = 456;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002052
2053 // User opens in an app by tapping on its name in the application disambig shade.
2054 // Subtype: Index of selection
Jason Monk9fa5f822016-05-11 10:26:31 -04002055 ACTION_APP_DISAMBIG_TAP = 457;
Clara Bayarrifa902aa2016-04-13 14:45:08 +01002056
Daniel Nishi010aa492016-05-11 09:42:24 -07002057 // OPEN: Settings > Internal storage > Storage manager
2058 // CATEGORY: SETTINGS
2059 STORAGE_MANAGER_SETTINGS = 458;
2060
Doris Ling5b2c0ad2016-05-25 14:03:14 -07002061 // OPEN: Settings -> Gestures
2062 // CATEGORY: SETTINGS
2063 SETTINGS_GESTURES = 459;
2064
Daniel Nishi597e67f2016-05-18 13:56:13 -07002065 // ------ Begin Deletion Helper ------
2066 // ACTION: Settings > Storage > Free Up Space > Photos & Videos > Toggle
2067 // SUBTYPE: false is off, true is on
2068 // CATEGORY: SETTINGS
2069 ACTION_DELETION_SELECTION_PHOTOS = 460;
Chris Wrenc6a98572016-06-02 15:11:48 -04002070
Daniel Nishi597e67f2016-05-18 13:56:13 -07002071 // ACTION: Settings > Storage > Free Up Space > Apps > Toggle
2072 // SUBTYPE: false is off, true is on
2073 // CATEGORY: SETTINGS
2074 ACTION_DELETION_SELECTION_ALL_APPS = 461;
2075
2076 // ACTION: Settings > Storage > Free Up Space > Apps > Click an unchecked app
2077 // CATEGORY: SETTINGS
2078 // PACKAGE: Unchecked app
2079 ACTION_DELETION_SELECTION_APP_ON = 462;
2080
2081 // ACTION: Settings > Storage > Free Up Space > Apps > Click a checked app
2082 // CATEGORY: SETTINGS
2083 // PACKAGE: Checked app
2084 ACTION_DELETION_SELECTION_APP_OFF = 463;
2085
2086 // ACTION: Settings > Storage > Free Up Space > Apps > Click category
2087 // SUBTYPE: false is expanded, true is collapsed
2088 // CATEGORY: SETTINGS
2089 ACTION_DELETION_APPS_COLLAPSED = 464;
2090
2091 // ACTION: Settings > Storage > Free Up Space > Downloads > Check On
2092 // SUBTYPE: false is off, true is on
2093 // CATEGORY: SETTINGS
2094 ACTION_DELETION_SELECTION_DOWNLOADS = 465;
2095
2096 // ACTION: Settings > Storage > Free Up Space > Downloads > Click category
2097 // SUBTYPE: false is expanded, true is collapsed
2098 // CATEGORY: SETTINGS
2099 ACTION_DELETION_DOWNLOADS_COLLAPSED = 466;
2100
2101 // ACTION: Settings > Storage > Free Up Space > Free up ... GB
2102 // CATEGORY: SETTINGS
2103 ACTION_DELETION_HELPER_CLEAR = 467;
2104
2105 // ACTION: Settings > Storage > Free Up Space > Cancel
2106 // CATEGORY: SETTINGS
2107 ACTION_DELETION_HELPER_CANCEL = 468;
2108
2109 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Remove
2110 // CATEGORY: SETTINGS
2111 ACTION_DELETION_HELPER_REMOVE_CONFIRM = 469;
2112
2113 // ACTION: Settings > Storage > Free Up Space > Free up ... GB > Cancel
2114 // CATEGORY: SETTINGS
2115 ACTION_DELETION_HELPER_REMOVE_CANCEL = 470;
2116
2117 // Deletion helper encountered an error during package deletion.
2118 ACTION_DELETION_HELPER_APPS_DELETION_FAIL = 471;
2119
2120 // Deletion helper encountered an error during downloads folder deletion.
2121 ACTION_DELETION_HELPER_DOWNLOADS_DELETION_FAIL = 472;
2122
2123 // Deletion helper encountered an error during photo and video deletion.
2124 ACTION_DELETION_HELPER_PHOTOS_VIDEOS_DELETION_FAIL = 473;
2125
Fan Zhang5e956e82016-05-06 10:51:47 -07002126 // OPEN: Settings (root page if there are multiple tabs)
2127 // CATEGORY: SETTINGS
2128 DASHBOARD_CONTAINER = 474;
2129
2130 // OPEN: Settings -> SUPPORT TAB
2131 // CATEGORY: SETTINGS
2132 SUPPORT_FRAGMENT = 475;
2133
2134 // ACTION: Settings -> Select summary tab.
Chris Wren38f98812016-07-13 14:28:40 -04002135 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002136 ACTION_SELECT_SUMMARY=476;
2137
2138 // ACTION: Settings -> Select support tab.
Chris Wren38f98812016-07-13 14:28:40 -04002139 // CATEGORY: SETTINGS
Fan Zhang5e956e82016-05-06 10:51:47 -07002140 ACTION_SELECT_SUPPORT_FRAGMENT = 477;
2141
Fan Zhanga1985502016-06-16 16:48:38 -07002142 // ACTION: Settings -> Support -> Tips & tricks
Chris Wren38f98812016-07-13 14:28:40 -04002143 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002144 ACTION_SUPPORT_TIPS_AND_TRICKS = 478;
2145
2146 // ACTION: Settings -> Support -> Help & feedback
Chris Wren38f98812016-07-13 14:28:40 -04002147 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002148 ACTION_SUPPORT_HELP_AND_FEEDBACK = 479;
2149
2150 // ACTION: Settings -> Support -> Sign in
Chris Wren38f98812016-07-13 14:28:40 -04002151 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002152 ACTION_SUPPORT_SIGN_IN = 480;
2153
2154 // ACTION: Settings -> Support -> Phone
Chris Wren38f98812016-07-13 14:28:40 -04002155 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002156 ACTION_SUPPORT_PHONE = 481;
2157
2158 // ACTION: Settings -> Support -> Chat
Chris Wren38f98812016-07-13 14:28:40 -04002159 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002160 ACTION_SUPPORT_CHAT = 482;
2161
2162 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer Cancel
Chris Wren38f98812016-07-13 14:28:40 -04002163 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002164 ACTION_SUPPORT_DISCLAIMER_CANCEL = 483;
2165
2166 // ACTION: Settings -> Support -> Phone/Chat -> Disclaimer OK
Chris Wren38f98812016-07-13 14:28:40 -04002167 // CATEGORY: SETTINGS
Fan Zhanga1985502016-06-16 16:48:38 -07002168 ACTION_SUPPORT_DISCLAIMER_OK = 484;
2169
Fan Zhang80807212016-06-30 12:26:55 -07002170 // ACTION: Settings -> Support -> Toll-Free Phone
Chris Wren38f98812016-07-13 14:28:40 -04002171 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002172 ACTION_SUPPORT_DAIL_TOLLFREE = 485;
2173
2174 // ACTION: Settings -> Support -> "Travel Abroad" Button
Chris Wren38f98812016-07-13 14:28:40 -04002175 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002176 ACTION_SUPPORT_VIEW_TRAVEL_ABROAD_DIALOG = 486;
2177
2178 // ACTION: Settings -> Support -> "Travel Abroad" Button -> Tolled Phone
Chris Wren38f98812016-07-13 14:28:40 -04002179 // CATEGORY: SETTINGS
Fan Zhang80807212016-06-30 12:26:55 -07002180 ACTION_SUPPORT_DIAL_TOLLED = 487;
2181
Justin Klaassen19494272016-07-18 21:38:24 -07002182 // OPEN: Settings > Display > Night Light
Justin Klaassen911e8892016-06-21 18:24:24 -07002183 // CATEGORY: SETTINGS
2184 NIGHT_DISPLAY_SETTINGS = 488;
2185
Daniel Nishiff69a4b2016-07-12 13:55:57 -07002186 // ACTION: Settings -> Storage -> Manage storage -> Click Storage Manager
2187 // SUBTYPE: false is off, true is on
2188 ACTION_TOGGLE_STORAGE_MANAGER = 489;
2189
Jason Monk484fd362016-07-13 15:24:32 -04002190 // Settings launched from collapsed quick settings.
2191 ACTION_QS_COLLAPSED_SETTINGS_LAUNCH = 490;
2192
Justin Klaassen19494272016-07-18 21:38:24 -07002193 // OPEN: QS Night Light tile shown
2194 // ACTION: QS Night Light tile tapped
Justin Klaassen13790902016-06-21 20:28:12 -07002195 // SUBTYPE: 0 is off, 1 is on
2196 // CATEGORY: QUICK_SETTINGS
2197 QS_NIGHT_DISPLAY = 491;
2198
Justin Klaassen19494272016-07-18 21:38:24 -07002199 // Night Light on
2200 SETTINGS_CONDITION_NIGHT_DISPLAY = 492;
2201
Doris Ling3c00afb2016-07-19 17:04:21 -07002202 // System navigation key up.
2203 ACTION_SYSTEM_NAVIGATION_KEY_UP = 493;
2204
2205 // System navigation key down.
2206 ACTION_SYSTEM_NAVIGATION_KEY_DOWN = 494;
2207
Doris Ling6dd3e462016-08-04 13:17:27 -07002208 // OPEN: Settings > Display -> Ambient Display
2209 // CATEGORY: SETTINGS
2210 ACTION_AMBIENT_DISPLAY = 495;
2211
Adrian Roos159ef7b2016-02-25 11:58:32 -08002212 // ---- End N-MR1 Constants, all N-MR1 constants go above this line ----
2213
Clara Bayarric17a5982016-04-15 12:26:47 +01002214 // ------- Begin N Keyboard Shortcuts Helper -----
2215 // Keyboard Shortcuts Helper is opened/closed.
Chris Wrene7396ff2016-06-02 17:08:21 -04002216 KEYBOARD_SHORTCUTS_HELPER = 500;
Clara Bayarric17a5982016-04-15 12:26:47 +01002217
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002218 // OPEN: Print Preview screen
2219 // Package: Package of app where print job is from
2220 PRINT_PREVIEW = 501;
2221
2222 // OPEN: User expands full print job options shade in print preview.
2223 PRINT_JOB_OPTIONS = 502;
2224
2225 // OPEN: “All Printers” screen for selecting printer
2226 // Subtype: # of printers listed
2227 PRINT_ALL_PRINTERS = 503;
2228
2229 // OPEN: “Add Printers” screen for adding printers
2230 // Subtype: # of enabled print service listed
2231 PRINT_ADD_PRINTERS = 504;
2232
2233 // ACTION: Queue a print job (Usually: User presses Print FAB from Print Preview)
2234 // Package: Package of print service.
2235 ACTION_PRINT = 505;
2236
2237 // ACTION: User selects a printer from the dropdown in the print preview screen. This also
2238 // Count all ACTION_PRINTER_SELECT_ALL actions.
2239 // Package: Package of print service tied to printer
2240 ACTION_PRINTER_SELECT_DROPDOWN = 506;
2241
2242 // ACTION: User selects a printer from the “All printers” screen.
2243 // Package: Package of print service tied to printer
2244 ACTION_PRINTER_SELECT_ALL = 507;
2245
2246 // ACTION: User changes an option for the print job from print preview.
2247 // Subtype: 1: Copies
2248 // 2: Color mode
2249 // 3: Duplex mode
2250 // 4: Media (==Paper) size
2251 // 5: Orientation
2252 // 6: Page range
2253 // Package: Package of print service tied to printer
2254 ACTION_PRINT_JOB_OPTIONS = 508;
2255
2256 // ACTION: User searches for printer from All Printers
2257 ACTION_PRINTER_SEARCH = 509;
2258
2259 // ACTION: User selects “Add print service” button from All Printers
2260 ACTION_PRINT_SERVICE_ADD = 510;
2261
2262 // ACTION: User Enables/Disables Print Service via any means.
2263 // Subtype: 0: Enabled
2264 // 1: Disabled
2265 ACTION_PRINT_SERVICE_TOGGLE = 511;
2266
2267 // ACTION: User installs print recommended print service
2268 // Package: Package of print service
2269 ACTION_PRINT_RECOMMENDED_SERVICE_INSTALL = 512;
2270
Doris Ling88a6b162016-08-08 16:17:43 -07002271 // ACTION: Settings -> [sub settings activity] -> Options menu -> Help & Support
2272 // SUBTYPE: sub settings classname
2273 ACTION_SETTING_HELP_AND_FEEDBACK = 513;
2274
Fan Zhang92c60382016-08-08 14:03:53 -07002275 // OPEN: Settings > Language & input > Personal dictionary (single locale)
2276 USER_DICTIONARY_SETTINGS = 514;
2277
2278 // OPEN: Settings > Date & time > Select time zone
2279 ZONE_PICKER = 515;
2280
2281 // OPEN: Settings > Security > Device administrators
2282 DEVICE_ADMIN_SETTINGS = 516;
2283
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002284 // ACTION: Managed provisioning was launched to set this package as DPC app.
2285 // PACKAGE: DPC's package name.
2286 PROVISIONING_DPC_PACKAGE_NAME = 517;
2287
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002288 // ACTION: Managed provisioning triggered DPC installation.
2289 // PACKAGE: Package name of package which installed DPC.
2290 PROVISIONING_DPC_INSTALLED_BY_PACKAGE = 518;
2291
2292 // ACTION: Logged when provisioning activity finishes.
2293 // TIME: Indicates time taken by provisioning activity to finish in MS.
2294 PROVISIONING_PROVISIONING_ACTIVITY_TIME_MS = 519;
2295
2296 // ACTION: Logged when preprovisioning activity finishes.
2297 // TIME: Indicates time taken by preprovisioning activity to finish in MS.
2298 PROVISIONING_PREPROVISIONING_ACTIVITY_TIME_MS = 520;
2299
2300 // ACTION: Logged when encrypt device activity finishes.
2301 // TIME: Indicates time taken by encrypt device activity to finish in MS.
2302 PROVISIONING_ENCRYPT_DEVICE_ACTIVITY_TIME_MS = 521;
2303
2304 // ACTION: Logged when web activity finishes.
2305 // TIME: Indicates total time taken by web activity to finish in MS.
2306 PROVISIONING_WEB_ACTIVITY_TIME_MS = 522;
2307
2308 // ACTION: Logged when trampoline activity finishes.
2309 // TIME: Indicates total time taken by trampoline activity to finish in MS.
2310 PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523;
2311
2312 // ACTION: Logged when encryption activity finishes.
2313 // TIME: Indicates total time taken by post encryption activity to finish in MS.
2314 PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524;
2315
2316 // ACTION: Logged when finalization activity finishes.
2317 // TIME: Indicates time taken by finalization activity to finish in MS.
2318 PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525;
Mahaver Choprac8c97c22016-08-26 13:59:42 +01002319
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002320 // OPEN: Settings Support > Phone/Chat -> Disclaimer
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002321 DIALOG_SUPPORT_DISCLAIMER = 526;
Fan Zhang3bf54dd2016-08-23 16:10:25 -07002322
Fan Zhang95094182016-08-24 18:14:16 -07002323 // OPEN: Settings Support > Travel abroad
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002324 DIALOG_SUPPORT_PHONE = 527;
Fan Zhang95094182016-08-24 18:14:16 -07002325
2326 // OPEN: Settings > Security > Factory Reset Protection dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002327 DIALOG_FRP = 528;
Fan Zhang95094182016-08-24 18:14:16 -07002328
2329 // OPEN: Settings > Custom list preference with confirmation message
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002330 DIALOG_CUSTOM_LIST_CONFIRMATION = 529;
Fan Zhang95094182016-08-24 18:14:16 -07002331
2332 // OPEN: Settings > APN Editor > Error dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002333 DIALOG_APN_EDITOR_ERROR = 530;
Fan Zhang95094182016-08-24 18:14:16 -07002334
2335 // OPEN: Settings > Users > Edit owner info dialog
Mahaver Chopraa9a79322016-09-12 16:52:44 +01002336 DIALOG_OWNER_INFO_SETTINGS = 531;
Fan Zhang95094182016-08-24 18:14:16 -07002337
Fan Zhangc1352ae2016-09-16 12:46:11 -07002338 // OPEN: Settings > Security > Use one lock dialog
2339 DIALOG_UNIFICATION_CONFIRMATION = 532;
2340
2341 // OPEN: Settings > Security > User Credential
2342 DIALOG_USER_CREDENTIAL = 533;
2343
2344 // OPEN: Settings > Accounts > Remove account
2345 DIALOG_REMOVE_USER = 534;
2346
2347 // OPEN: Settings > Accounts > Confirm auto sync dialog
2348 DIALOG_CONFIRM_AUTO_SYNC_CHANGE = 535;
2349
2350 // OPEN: Settings > Apps > Dialog for running service details
2351 DIALOG_RUNNIGN_SERVICE = 536;
2352
2353 // OPEN: Settings > Dialog for hiding home settings
2354 DIALOG_NO_HOME = 537;
2355
2356 // OPEN: Settings > Bluetooth > Rename this device
2357 DIALOG_BLUETOOTH_RENAME = 538;
2358
2359 // OPEN: Settings > Bluetooth > Paired device profile
2360 DIALOG_BLUETOOTH_PAIRED_DEVICE_PROFILE = 539;
2361
2362 // OPEN: Settings > Battery optimization > details for app
2363 DIALOG_HIGH_POWER_DETAILS = 540;
2364
2365 // OPEN: Settings > Keyboard > Show keyboard layout dialog
2366 DIALOG_KEYBOARD_LAYOUT = 541;
2367
2368 // OPEN: Settings > Wifi > WPS Setup dialog
2369 DIALOG_WPS_SETUP = 542;
2370
2371 // OPEN: Settings > WIFI Scan permission dialog
2372 DIALOG_WIFI_SCAN_MODE = 543;
2373
2374 // OPEN: Settings > WIFI Setup > Skip Wifi dialog
2375 DIALOG_WIFI_SKIP = 544;
2376
2377 // OPEN: Settings > Wireless > VPN > Config dialog
2378 DIALOG_LEGACY_VPN_CONFIG = 545;
2379
2380 // OPEN: Settings > Wireless > VPN > Config dialog for app
2381 DIALOG_VPN_APP_CONFIG = 546;
2382
2383 // OPEN: Settings > Wireless > VPN > Cannot connect dialog
2384 DIALOG_VPN_CANNOT_CONNECT = 547;
2385
2386 // OPEN: Settings > Wireless > VPN > Replace existing VPN dialog
2387 DIALOG_VPN_REPLACE_EXISTING = 548;
2388
2389 // OPEN: Settings > Billing cycle > Edit billing cycle dates dialog
2390 DIALOG_BILLING_CYCLE = 549;
2391
2392 // OPEN: Settings > Billing cycle > Edit data limit/warning dialog
2393 DIALOG_BILLING_BYTE_LIMIT = 550;
2394
2395 // OPEN: Settings > Billing cycle > turn on data limit dialog
2396 DIALOG_BILLING_CONFIRM_LIMIT = 551;
2397
2398 // OPEN: Settings > Service > Turn off notification access dialog
2399 DIALOG_DISABLE_NOTIFICATION_ACCESS = 552;
2400
2401 // OPEN: Settings > Sound > Use personal sound for work profile dialog
2402 DIALOG_UNIFY_SOUND_SETTINGS = 553;
2403
2404 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being granted.
2405 DIALOG_ZEN_ACCESS_GRANT = 554;
2406
2407 // OPEN: Settings > Zen mode > Dialog warning about the zen access privileges being revoked.
2408 DIALOG_ZEN_ACCESS_REVOKE = 555;
2409
2410 // OPEN: Settings > Zen mode > Dialog that picks time for zen mode.
2411 DIALOG_ZEN_TIMEPICKER = 556;
2412
2413 // OPEN: Settings > Apps > Dialog that informs user to allow service access for app.
2414 DIALOG_SERVICE_ACCESS_WARNING = 557;
2415
2416 // OPEN: Settings > Apps > Dialog for app actions (such as force stop/clear data)
2417 DIALOG_APP_INFO_ACTION = 558;
2418
2419 // OPEN: Settings > Storage > Dialog for forgetting a storage device
2420 DIALOG_VOLUME_FORGET = 559;
2421
2422 // OPEN: Settings > Storage > Dialog warning that a volume is slow
2423 DIALOG_VOLUME_SLOW_WARNING = 560;
2424
2425 // OPEN: Settings > Storage > Dialog for initializing a volume
2426 DIALOG_VOLUME_INIT = 561;
2427
2428 // OPEN: Settings > Storage > Dialog for unmounting a volume
2429 DIALOG_VOLUME_UNMOUNT = 562;
2430
2431 // OPEN: Settings > Storage > Dialog for renaming a volume
2432 DIALOG_VOLUME_RENAME = 563;
2433
2434 // OPEN: Settings > Storage > Dialog for clear cache
2435 DIALOG_STORAGE_CLEAR_CACHE = 564;
2436
2437 // OPEN: Settings > Storage > Dialog for system info
2438 DIALOG_STORAGE_SYSTEM_INFO = 565;
2439
2440 // OPEN: Settings > Storage > Dialog for other info
2441 DIALOG_STORAGE_OTHER_INFO = 566;
2442
2443 // OPEN: Settings > Storage > Dialog for user info
2444 DIALOG_STORAGE_USER_INFO = 567;
2445
2446 // OPEN: Settings > Add fingerprint > Dialog when user touches fingerprint icon.
2447 DIALOG_FINGERPRINT_ICON_TOUCH = 568;
2448
2449 // OPEN: Settings > Add fingerprint > Error dialog
2450 DIALOG_FINGERPINT_ERROR = 569;
2451
2452 // OPEN: Settings > Fingerprint > Rename or delete dialog
2453 DIALOG_FINGERPINT_EDIT = 570;
2454
2455 // OPEN: Settings > Fingerprint > Dialog for deleting last fingerprint
2456 DIALOG_FINGERPINT_DELETE_LAST = 571;
2457
2458 // OPEN: SUW > Fingerprint > Dialog to confirm cancel fingerprint setup.
2459 DIALOG_FINGERPRINT_CANCEL_SETUP = 572;
2460
2461 // OPEN: SUW > Fingerprint > Dialog to confirm skip fingerprint setup entirely.
2462 DIALOG_FINGERPRINT_SKIP_SETUP = 573;
2463
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002464 // OPEN: Settings > Proxy Selector error dialog
2465 DIALOG_PROXY_SELECTOR_ERROR = 574;
2466
2467 // OPEN: Settings > Wifi > P2P Settings > Disconnect dialog
2468 DIALOG_WIFI_P2P_DISCONNECT = 575;
2469
2470 // OPEN: Settings > Wifi > P2P Settings > Cancel connection dialog
2471 DIALOG_WIFI_P2P_CANCEL_CONNECT = 576;
2472
2473 // OPEN: Settings > Wifi > P2P Settings > Rename dialog
2474 DIALOG_WIFI_P2P_RENAME = 577;
2475
2476 // OPEN: Settings > Wifi > P2P Settings > Forget group dialog
2477 DIALOG_WIFI_P2P_DELETE_GROUP = 578;
2478
2479 // OPEN: Settings > APN > Restore default dialog
2480 DIALOG_APN_RESTORE_DEFAULT = 579;
2481
2482 // OPEN: Settings > Dream > When to dream dialog
2483 DIALOG_DREAM_START_DELAY = 580;
2484
2485 // OPEN: Settings > Encryption interstitial accessibility warning dialog
2486 DIALOG_ENCRYPTION_INTERSTITIAL_ACCESSIBILITY = 581;
2487
2488 // OPEN: Settings > Tether > AP setting dialog
2489 DIALOG_AP_SETTINGS = 582;
2490
2491 // OPEN: Settings > Acessibility > Enable accessiblity service dialog
2492 DIALOG_ACCESSIBILITY_SERVICE_ENABLE = 583;
2493
2494 // OPEN: Settings > Acessibility > Disable accessiblity service dialog
2495 DIALOG_ACCESSIBILITY_SERVICE_DISABLE = 584;
2496
2497 // OPEN: Settings > Account > Remove account dialog
2498 DIALOG_ACCOUNT_SYNC_REMOVE = 585;
2499
2500 // OPEN: Settings > Account > Remove account failed dialog
2501 DIALOG_ACCOUNT_SYNC_FAILED_REMOVAL = 586;
2502
2503 // OPEN: Settings > Account > Cannot do onetime sync dialog
2504 DIALOG_ACCOUNT_SYNC_CANNOT_ONETIME_SYNC = 587;
2505
2506 // OPEN: Settings > Display > Night light > Set start time dialog
2507 DIALOG_NIGHT_DISPLAY_SET_START_TIME = 588;
2508
2509 // OPEN: Settings > Display > Night light > Set end time dialog
2510 DIALOG_NIGHT_DISPLAY_SET_END_TIME = 589;
2511
2512 // OPEN: Settings > User > Edit info dialog
2513 DIALOG_USER_EDIT = 590;
2514
2515 // OPEN: Settings > User > Confirm remove dialog
2516 DIALOG_USER_REMOVE = 591;
2517
2518 // OPEN: Settings > User > Enable calling dialog
2519 DIALOG_USER_ENABLE_CALLING = 592;
2520
2521 // OPEN: Settings > User > Enable calling and sms dialog
2522 DIALOG_USER_ENABLE_CALLING_AND_SMS = 593;
2523
2524 // OPEN: Settings > User > Cannot manage device message dialog
2525 DIALOG_USER_CANNOT_MANAGE = 594;
2526
2527 // OPEN: Settings > User > Add user dialog
2528 DIALOG_USER_ADD = 595;
2529
2530 // OPEN: Settings > User > Setup user dialog
2531 DIALOG_USER_SETUP = 596;
2532
2533 // OPEN: Settings > User > Setup profile dialog
2534 DIALOG_USER_SETUP_PROFILE = 597;
2535
2536 // OPEN: Settings > User > Choose user type dialog
2537 DIALOG_USER_CHOOSE_TYPE = 598;
2538
2539 // OPEN: Settings > User > Need lockscreen dialog
2540 DIALOG_USER_NEED_LOCKSCREEN = 599;
2541
2542 // OPEN: Settings > User > Confirm exit guest mode dialog
2543 DIALOG_USER_CONFIRM_EXIT_GUEST = 600;
2544
2545 // OPEN: Settings > User > Edit user profile dialog
2546 DIALOG_USER_EDIT_PROFILE = 601;
2547
2548 // OPEN: Settings > Wifi > Saved AP > Edit dialog
2549 DIALOG_WIFI_SAVED_AP_EDIT = 602;
2550
2551 // OPEN: Settings > Wifi > Edit AP dialog
2552 DIALOG_WIFI_AP_EDIT = 603;
2553
2554 // OPEN: Settings > Wifi > PBC Config dialog
2555 DIALOG_WIFI_PBC = 604;
2556
2557 // OPEN: Settings > Wifi > Display pin dialog
2558 DIALOG_WIFI_PIN = 605;
2559
2560 // OPEN: Settings > Wifi > Write config to NFC dialog
2561 DIALOG_WIFI_WRITE_NFC = 606;
Fan Zhang04c20352016-09-23 12:11:15 -07002562 // OPEN: Settings > Date > Date picker dialog
2563 DIALOG_DATE_PICKER = 607;
2564
2565 // OPEN: Settings > Date > Time picker dialog
2566 DIALOG_TIME_PICKER = 608;
2567
2568 // OPEN: Settings > Wireless > Manage wireless plan dialog
2569 DIALOG_MANAGE_MOBILE_PLAN = 609;
Fan Zhang5e9f69c2016-09-19 17:44:39 -07002570
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002571 // ACTION: Logs network type of the device while provisioning
Mahaver Chopra2b0efb02016-09-15 18:57:09 +01002572 PROVISIONING_NETWORK_TYPE = 610;
2573
Mahaver Chopraa12b4872016-09-28 16:19:36 +01002574 // ACTION: Logs action which triggered provisioning.
2575 PROVISIONING_ACTION = 611;
2576
Mahaver Chopraab282072016-10-06 19:19:23 +01002577 // ACTION: Logs extra passed by the dpc while provisioning.
2578 PROVISIONING_EXTRA = 612;
2579
Salvador Martinez64867c12016-10-14 15:25:09 -07002580 // OPEN Settings > Bluetooth > Attempt to connect to device that shows dialog
2581 BLUETOOTH_DIALOG_FRAGMENT = 613;
2582
Mahaver Chopra667ae0a2016-10-14 14:08:36 +01002583 // ACTION: Logs provisioning started by zero touch.
2584 PROVISIONING_ENTRY_POINT_ZERO_TOUCH = 614;
2585
2586 // ACTION: Logs provisioning started by NFC bump.
2587 PROVISIONING_ENTRY_POINT_NFC = 615;
2588
2589 // ACTION: Logs provisioning started using QR code.
2590 PROVISIONING_ENTRY_POINT_QR_CODE = 616;
2591
2592 // ACTION: Logs provisioning started using adb.
2593 PROVISIONING_ENTRY_POINT_ADB = 617;
2594
2595 // ACTION: Logs provisioning started by trusted source.
2596 PROVISIONING_ENTRY_POINT_TRUSTED_SOURCE = 618;
2597
Mahaver Chopracc7176f2016-10-26 17:16:19 +01002598 // ACTION: Logged when copy account task finishes.
2599 // TIME: Indicates time taken by copy account task to finish in MS.
2600 PROVISIONING_COPY_ACCOUNT_TASK_MS = 619;
2601
2602 // ACTION: Logged when create profile task finishes.
2603 // TIME: Indicates time taken by create profile task to finish in MS.
2604 PROVISIONING_CREATE_PROFILE_TASK_MS = 620;
2605
2606 // ACTION: Logged when start profile task finishes.
2607 // TIME: Indicates time taken by start profile task to finish in MS.
2608 PROVISIONING_START_PROFILE_TASK_MS = 621;
2609
2610 // ACTION: Logged when download package task finishes.
2611 // TIME: Indicates time taken by download package task to finish in MS.
2612 PROVISIONING_DOWNLOAD_PACKAGE_TASK_MS = 622;
2613
2614 // ACTION: Logged when install package task finishes.
2615 // TIME: Indicates time taken by install package task to finish in MS.
2616 PROVISIONING_INSTALL_PACKAGE_TASK_MS = 623;
2617
2618 // ACTION: User cancelled provisioning.
2619 PROVISIONING_CANCELLED = 624;
2620
2621 // ACTION: Logged when provisioning throws an error.
2622 PROVISIONING_ERROR = 625;
2623
2624 // ACTION: Logs the status of copying user account during provisioning.
2625 PROVISIONING_COPY_ACCOUNT_STATUS = 626;
2626
2627 // ACTION: Logs the end to end time taken by all provisioning tasks.
2628 PROVISIONING_TOTAL_TASK_TIME_MS = 627;
2629
Bartosz Fabianowski48e69612016-11-10 04:08:31 +01002630 // OPEN: Settings > Privacy
2631 // CATEGORY: SETTINGS
2632 // OS: O
2633 ENTERPRISE_PRIVACY_SETTINGS = 628;
2634
Philip P. Moltmann2e301262016-06-16 12:39:54 -07002635 // ---- End O Constants, all O constants go above this line ----
2636
Adrian Roos159ef7b2016-02-25 11:58:32 -08002637 // Add new aosp constants above this line.
2638 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05002639 }
2640}