blob: b3613dfaefc39222f25815f39bc9a0f2e1bbbb58 [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
36 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050037 ACCESSIBILITY = 2;
Chris Wren7c516842016-03-01 16:44:32 -050038
39 // OPEN: Settings > Accessibility > Captions
40 // CATEGORY: SETTINGS
41 // OS: 6.0
42 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050043 ACCESSIBILITY_CAPTION_PROPERTIES = 3;
Chris Wren7c516842016-03-01 16:44:32 -050044
45 // OPEN: Settings > Accessibility > [Service]
46 // CATEGORY: SETTINGS
47 // OS: 6.0
48 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050049 ACCESSIBILITY_SERVICE = 4;
Chris Wren7c516842016-03-01 16:44:32 -050050
51 // OPEN: Settings > Accessibility > Color correction
52 // CATEGORY: SETTINGS
53 // OS: 6.0
54 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050055 ACCESSIBILITY_TOGGLE_DALTONIZER = 5;
Chris Wren7c516842016-03-01 16:44:32 -050056
57 // OPEN: Settings > Accessibility > Accessibility shortcut
58 // CATEGORY: SETTINGS
59 // OS: 6.0
60 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050061 ACCESSIBILITY_TOGGLE_GLOBAL_GESTURE = 6;
Chris Wren7c516842016-03-01 16:44:32 -050062
63 // OPEN: Settings > Accessibility > Magnification gestures
64 // CATEGORY: SETTINGS
65 // OS: 6.0
66 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050067 ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 7;
Chris Wren7c516842016-03-01 16:44:32 -050068
69 // OPEN: Settings > Accounts
70 // CATEGORY: SETTINGS
71 // OS: 6.0
72 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050073 ACCOUNT = 8;
Chris Wren7c516842016-03-01 16:44:32 -050074
75 // OPEN: Settings > Accounts > [Single Account Sync Settings]
76 // CATEGORY: SETTINGS
77 // OS: 6.0
78 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050079 ACCOUNTS_ACCOUNT_SYNC = 9;
Chris Wren7c516842016-03-01 16:44:32 -050080
81 // OPEN: Settings > Accounts > Add an account
82 // CATEGORY: SETTINGS
83 // OS: 6.0
84 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050085 ACCOUNTS_CHOOSE_ACCOUNT_ACTIVITY = 10;
Chris Wren7c516842016-03-01 16:44:32 -050086
87 // OPEN: Settings > Accounts > [List of accounts when more than one]
88 // CATEGORY: SETTINGS
89 // OS: 6.0
90 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050091 ACCOUNTS_MANAGE_ACCOUNTS = 11;
Chris Wren7c516842016-03-01 16:44:32 -050092
93 // OPEN: Settings > Cellular network settings > APNs
94 // CATEGORY: SETTINGS
95 // OS: 6.0
96 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -050097 APN = 12;
Chris Wren7c516842016-03-01 16:44:32 -050098
99 // OPEN: Settings > More > Cellular network settings > APNs > [Edit APN]
100 // CATEGORY: SETTINGS
101 // OS: 6.0
102 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500103 APN_EDITOR = 13;
Chris Wren7c516842016-03-01 16:44:32 -0500104
105 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500106 APP_OPS_DETAILS = 14;
Chris Wren7c516842016-03-01 16:44:32 -0500107
108 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500109 APP_OPS_SUMMARY = 15;
Chris Wren7c516842016-03-01 16:44:32 -0500110
111 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500112 APPLICATION = 16;
Chris Wren7c516842016-03-01 16:44:32 -0500113
114 // OPEN: Settings > Apps > Configure apps > App links > [App]
115 // CATEGORY: SETTINGS
116 // OS: 6.0
117 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500118 APPLICATIONS_APP_LAUNCH = 17;
Chris Wren7c516842016-03-01 16:44:32 -0500119
120 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500121 APPLICATIONS_APP_PERMISSION = 18;
Chris Wren7c516842016-03-01 16:44:32 -0500122
123 // OPEN: Settings > Internal storage > Apps storage > [App]
124 // CATEGORY: SETTINGS
125 // OS: 6.0
126 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500127 APPLICATIONS_APP_STORAGE = 19;
Chris Wren7c516842016-03-01 16:44:32 -0500128
129 // OPEN: Settings > Apps > [App info]
130 // CATEGORY: SETTINGS
131 // OS: 6.0
132 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500133 APPLICATIONS_INSTALLED_APP_DETAILS = 20;
Chris Wren7c516842016-03-01 16:44:32 -0500134
135 // OPEN: Settings > Memory > App usage > [App Memory usage]
136 // CATEGORY: SETTINGS
137 // OS: 6.0
138 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500139 APPLICATIONS_PROCESS_STATS_DETAIL = 21;
Chris Wren7c516842016-03-01 16:44:32 -0500140
141 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500142 APPLICATIONS_PROCESS_STATS_MEM_DETAIL = 22;
Chris Wren7c516842016-03-01 16:44:32 -0500143
144 // OPEN: Settings > Memory > App usage
145 // CATEGORY: SETTINGS
146 // OS: 6.0
147 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500148 APPLICATIONS_PROCESS_STATS_UI = 23;
Chris Wren7c516842016-03-01 16:44:32 -0500149
150 // OPEN: Settings > Bluetooth
151 // CATEGORY: SETTINGS
152 // OS: 6.0
153 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500154 BLUETOOTH = 24;
Chris Wren7c516842016-03-01 16:44:32 -0500155
156 // OPEN: Choose Bluetooth device (ex: when sharing)
157 // CATEGORY: SETTINGS
158 // OS: 6.0
159 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500160 BLUETOOTH_DEVICE_PICKER = 25;
Chris Wren7c516842016-03-01 16:44:32 -0500161
162 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500163 BLUETOOTH_DEVICE_PROFILES = 26;
Chris Wren7c516842016-03-01 16:44:32 -0500164
165 // OPEN: Settings > Security > Choose screen lock
166 // CATEGORY: SETTINGS
167 // OS: 6.0
168 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500169 CHOOSE_LOCK_GENERIC = 27;
Chris Wren7c516842016-03-01 16:44:32 -0500170
171 // OPEN: Settings > Security > Choose screen lock > Choose your password
172 // CATEGORY: SETTINGS
173 // OS: 6.0
174 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500175 CHOOSE_LOCK_PASSWORD = 28;
Chris Wren7c516842016-03-01 16:44:32 -0500176
177 // OPEN: Settings > Security > Choose screen lock > Choose your pattern
178 // CATEGORY: SETTINGS
179 // OS: 6.0
180 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500181 CHOOSE_LOCK_PATTERN = 29;
Chris Wren7c516842016-03-01 16:44:32 -0500182
183 // OPEN: Settings > Security > Choose screen lock > Confirm your password
184 // CATEGORY: SETTINGS
185 // OS: 6.0
186 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500187 CONFIRM_LOCK_PASSWORD = 30;
Chris Wren7c516842016-03-01 16:44:32 -0500188
189 // OPEN: Settings > Security > Choose screen lock > Confirm your pattern
190 // CATEGORY: SETTINGS
191 // OS: 6.0
192 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500193 CONFIRM_LOCK_PATTERN = 31;
Chris Wren7c516842016-03-01 16:44:32 -0500194
195 // OPEN: Settings > Security > Encrypt phone
196 // CATEGORY: SETTINGS
197 // OS: 6.0
198 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500199 CRYPT_KEEPER = 32;
Chris Wren7c516842016-03-01 16:44:32 -0500200
201 // OPEN: Settings > Security > Encrypt phone > Confirm
202 // CATEGORY: SETTINGS
203 // OS: 6.0
204 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500205 CRYPT_KEEPER_CONFIRM = 33;
Chris Wren7c516842016-03-01 16:44:32 -0500206
207 // OPEN: Settings > Search results
208 // CATEGORY: SETTINGS
209 // OS: 6.0
210 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500211 DASHBOARD_SEARCH_RESULTS = 34;
Chris Wren7c516842016-03-01 16:44:32 -0500212
213 // OPEN: Settings (Root page)
214 // CATEGORY: SETTINGS
215 // OS: 6.0
216 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500217 DASHBOARD_SUMMARY = 35;
Chris Wren7c516842016-03-01 16:44:32 -0500218
219 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500220 DATA_USAGE = 36;
Chris Wren7c516842016-03-01 16:44:32 -0500221
222 // OPEN: Settings > Data usage
223 // CATEGORY: SETTINGS
224 // OS: 6.0
225 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500226 DATA_USAGE_SUMMARY = 37;
Chris Wren7c516842016-03-01 16:44:32 -0500227
228 // OPEN: Settings > Date & time
229 // CATEGORY: SETTINGS
230 // OS: 6.0
231 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500232 DATE_TIME = 38;
Chris Wren7c516842016-03-01 16:44:32 -0500233
234 // OPEN: Settings > Developer options
235 // CATEGORY: SETTINGS
236 // OS: 6.0
237 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500238 DEVELOPMENT = 39;
Chris Wren7c516842016-03-01 16:44:32 -0500239
240 // OPEN: Settings > About phone
241 // CATEGORY: SETTINGS
242 // OS: 6.0
243 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500244 DEVICEINFO = 40;
Chris Wren7c516842016-03-01 16:44:32 -0500245
246 // OPEN: Settings > About phone > Status > IMEI information
247 // CATEGORY: SETTINGS
248 // OS: 6.0
249 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500250 DEVICEINFO_IMEI_INFORMATION = 41;
Chris Wren7c516842016-03-01 16:44:32 -0500251
252 // OPEN: Settings > Internal storage
253 // CATEGORY: SETTINGS
254 // OS: 6.0
255 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500256 DEVICEINFO_STORAGE = 42;
Chris Wren7c516842016-03-01 16:44:32 -0500257
258 // OPEN: Settings > About phone > Status > SIM status
259 // CATEGORY: SETTINGS
260 // OS: 6.0
261 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500262 DEVICEINFO_SIM_STATUS = 43;
Chris Wren7c516842016-03-01 16:44:32 -0500263
264 // OPEN: Settings > About phone > Status
265 // CATEGORY: SETTINGS
266 // OS: 6.0
267 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500268 DEVICEINFO_STATUS = 44;
Chris Wren7c516842016-03-01 16:44:32 -0500269
270 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500271 DEVICEINFO_USB = 45;
Chris Wren7c516842016-03-01 16:44:32 -0500272
273 // OPEN: Settings > Display
274 // CATEGORY: SETTINGS
275 // OS: 6.0
276 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500277 DISPLAY = 46;
Chris Wren7c516842016-03-01 16:44:32 -0500278
279 // OPEN: Settings > Display > Daydream
280 // CATEGORY: SETTINGS
281 // OS: 6.0
282 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500283 DREAM = 47;
Chris Wren7c516842016-03-01 16:44:32 -0500284
285 // OPEN: Settings > Security > Screen lock > Secure start-up
286 // CATEGORY: SETTINGS
287 // OS: 6.0
288 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500289 ENCRYPTION = 48;
Chris Wren7c516842016-03-01 16:44:32 -0500290
291 // OPEN: Settings > Security > Nexus Imprint
292 // CATEGORY: SETTINGS
293 // OS: 6.0
294 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500295 FINGERPRINT = 49;
Chris Wren7c516842016-03-01 16:44:32 -0500296
297 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500298 FINGERPRINT_ENROLL = 50;
Chris Wren7c516842016-03-01 16:44:32 -0500299
300 // OPEN: Settings > Battery > History details
301 // CATEGORY: SETTINGS
302 // OS: 6.0
303 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500304 FUELGAUGE_BATTERY_HISTORY_DETAIL = 51;
Chris Wren7c516842016-03-01 16:44:32 -0500305
306 // OPEN: Settings > Battery > Battery saver
307 // CATEGORY: SETTINGS
308 // OS: 6.0
309 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500310 FUELGAUGE_BATTERY_SAVER = 52;
Chris Wren7c516842016-03-01 16:44:32 -0500311
312 // OPEN: Settings > Battery > [App Use details]
313 // CATEGORY: SETTINGS
314 // OS: 6.0
315 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500316 FUELGAUGE_POWER_USAGE_DETAIL = 53;
Chris Wren7c516842016-03-01 16:44:32 -0500317
318 // OPEN: Settings > Battery
319 // CATEGORY: SETTINGS
320 // OS: 6.0
321 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500322 FUELGAUGE_POWER_USAGE_SUMMARY = 54;
Chris Wren7c516842016-03-01 16:44:32 -0500323
324 // OPEN: Settings > Home
325 // CATEGORY: SETTINGS
326 // OS: 6.0
327 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500328 HOME = 55;
Chris Wren7c516842016-03-01 16:44:32 -0500329
330 // OPEN: Settings > Security > SIM card lock settings
331 // CATEGORY: SETTINGS
332 // OS: 6.0
333 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500334 ICC_LOCK = 56;
Chris Wren7c516842016-03-01 16:44:32 -0500335
336 // OPEN: Settings > Language & input
337 // CATEGORY: SETTINGS
338 // OS: 6.0
339 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500340 INPUTMETHOD_LANGUAGE = 57;
Chris Wren7c516842016-03-01 16:44:32 -0500341
342 // OPEN: Settings > Language & input > Physical keyboard
343 // CATEGORY: SETTINGS
344 // OS: 6.0
345 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500346 INPUTMETHOD_KEYBOARD = 58;
Chris Wren7c516842016-03-01 16:44:32 -0500347
348 // OPEN: Settings > Language & input > Spell checker
349 // CATEGORY: SETTINGS
350 // OS: 6.0
351 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500352 INPUTMETHOD_SPELL_CHECKERS = 59;
Chris Wren7c516842016-03-01 16:44:32 -0500353
354 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500355 INPUTMETHOD_SUBTYPE_ENABLER = 60;
Chris Wren7c516842016-03-01 16:44:32 -0500356
357 // OPEN: Settings > Language & input > Personal dictionary
358 // CATEGORY: SETTINGS
359 // OS: 6.0
360 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500361 INPUTMETHOD_USER_DICTIONARY = 61;
Chris Wren7c516842016-03-01 16:44:32 -0500362
363 // OPEN: Settings > Language & input > Add word
364 // CATEGORY: SETTINGS
365 // OS: 6.0
366 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500367 INPUTMETHOD_USER_DICTIONARY_ADD_WORD = 62;
Chris Wren7c516842016-03-01 16:44:32 -0500368
369 // OPEN: Settings > Location
370 // CATEGORY: SETTINGS
371 // OS: 6.0
372 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500373 LOCATION = 63;
Chris Wren7c516842016-03-01 16:44:32 -0500374
375 // OPEN: Settings > Location > Location mode
376 // CATEGORY: SETTINGS
377 // OS: 6.0
378 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500379 LOCATION_MODE = 64;
Chris Wren7c516842016-03-01 16:44:32 -0500380
381 // OPEN: Settings > Apps
382 // CATEGORY: SETTINGS
383 // OS: 6.0
384 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500385 MANAGE_APPLICATIONS = 65;
Chris Wren7c516842016-03-01 16:44:32 -0500386
387 // OPEN: Settings > Backup & reset > Factory data reset
388 // CATEGORY: SETTINGS
389 // OS: 6.0
390 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500391 MASTER_CLEAR = 66;
Chris Wren7c516842016-03-01 16:44:32 -0500392
393 // OPEN: Settings > Backup & reset > Factory data reset > Confirm
394 // CATEGORY: SETTINGS
395 // OS: 6.0
396 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500397 MASTER_CLEAR_CONFIRM = 67;
Chris Wren7c516842016-03-01 16:44:32 -0500398
399 // OPEN: Settings > Data usage > Network restrictions
400 // CATEGORY: SETTINGS
401 // OS: 6.0
402 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500403 NET_DATA_USAGE_METERED = 68;
Chris Wren7c516842016-03-01 16:44:32 -0500404
405 // OPEN: Settings > More > Android Beam
406 // CATEGORY: SETTINGS
407 // OS: 6.0
408 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500409 NFC_BEAM = 69;
Chris Wren7c516842016-03-01 16:44:32 -0500410
411 // OPEN: Settings > Tap & pay
412 // CATEGORY: SETTINGS
413 // OS: 6.0
414 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500415 NFC_PAYMENT = 70;
Chris Wren7c516842016-03-01 16:44:32 -0500416
417 // OPEN: Settings > Sound & notification
418 // CATEGORY: SETTINGS
419 // OS: 6.0
420 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500421 NOTIFICATION = 71;
Chris Wren7c516842016-03-01 16:44:32 -0500422
423 // OPEN: Settings > Sound & notification > App notifications > [App]
424 // CATEGORY: SETTINGS
425 // OS: 6.0
426 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500427 NOTIFICATION_APP_NOTIFICATION = 72;
Chris Wren7c516842016-03-01 16:44:32 -0500428
429 // OPEN: Settings > Sound & notification > Other sounds
430 // CATEGORY: SETTINGS
431 // OS: 6.0
432 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500433 NOTIFICATION_OTHER_SOUND = 73;
Chris Wren7c516842016-03-01 16:44:32 -0500434
435 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500436 NOTIFICATION_REDACTION = 74;
Chris Wren7c516842016-03-01 16:44:32 -0500437
438 // OPEN: Settings Widget > Notification log
439 // CATEGORY: SETTINGS
440 // OS: 6.0
441 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500442 NOTIFICATION_STATION = 75;
Chris Wren7c516842016-03-01 16:44:32 -0500443
444 // OPEN: Settings > Sound & notification > Do not disturb
445 // CATEGORY: SETTINGS
446 // OS: 6.0
447 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500448 NOTIFICATION_ZEN_MODE = 76;
Chris Wren7c516842016-03-01 16:44:32 -0500449
450 // OPEN: OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500451 OWNER_INFO = 77;
Chris Wren7c516842016-03-01 16:44:32 -0500452
453 // OPEN: Print job notification > Print job settings
454 // CATEGORY: SETTINGS
455 // OS: 6.0
456 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500457 PRINT_JOB_SETTINGS = 78;
Chris Wren7c516842016-03-01 16:44:32 -0500458
459 // OPEN: Settings > Printing > [Print Service]
460 // CATEGORY: SETTINGS
461 // OS: 6.0
462 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500463 PRINT_SERVICE_SETTINGS = 79;
Chris Wren7c516842016-03-01 16:44:32 -0500464
465 // OPEN: Settings > Printing
466 // CATEGORY: SETTINGS
467 // OS: 6.0
468 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500469 PRINT_SETTINGS = 80;
Chris Wren7c516842016-03-01 16:44:32 -0500470
471 // OPEN: Settings > Backup & reset
472 // CATEGORY: SETTINGS
473 // OS: 6.0
474 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500475 PRIVACY = 81;
Chris Wren7c516842016-03-01 16:44:32 -0500476
477 //OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500478 PROXY_SELECTOR = 82;
Chris Wren7c516842016-03-01 16:44:32 -0500479
480 // OPEN: Settings > Backup & reset > Network settings reset
481 // CATEGORY: SETTINGS
482 // OS: 6.0
483 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500484 RESET_NETWORK = 83;
Chris Wren7c516842016-03-01 16:44:32 -0500485
486 // OPEN: Settings > Backup & reset > Network settings reset > Confirm
487 // CATEGORY: SETTINGS
488 // OS: 6.0
489 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500490 RESET_NETWORK_CONFIRM = 84;
Chris Wren7c516842016-03-01 16:44:32 -0500491
492 // OPEN: Settings > Developer Options > Running Services
493 // CATEGORY: SETTINGS
494 // OS: 6.0
495 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500496 RUNNING_SERVICE_DETAILS = 85;
Chris Wren7c516842016-03-01 16:44:32 -0500497
498 // OPEN: Settings > Security > Screen pinning
499 // CATEGORY: SETTINGS
500 // OS: 6.0
501 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500502 SCREEN_PINNING = 86;
Chris Wren7c516842016-03-01 16:44:32 -0500503
504 // OPEN: Settings > Security
505 // CATEGORY: SETTINGS
506 // OS: 6.0
507 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500508 SECURITY = 87;
Chris Wren7c516842016-03-01 16:44:32 -0500509
510 // OPEN: Settings > SIM cards
511 // CATEGORY: SETTINGS
512 // OS: 6.0
513 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500514 SIM = 88;
Chris Wren7c516842016-03-01 16:44:32 -0500515
516 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500517 TESTING = 89;
Chris Wren7c516842016-03-01 16:44:32 -0500518
519 // OPEN: Settings > More > Tethering & portable hotspot
520 // CATEGORY: SETTINGS
521 // OS: 6.0
522 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500523 TETHER = 90;
Chris Wren7c516842016-03-01 16:44:32 -0500524
525 // OPEN: Settings > Security > Trust agents
526 // CATEGORY: SETTINGS
527 // OS: 6.0
528 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500529 TRUST_AGENT = 91;
Chris Wren7c516842016-03-01 16:44:32 -0500530
531 // OPEN: Settings > Security > Trusted credentials
532 // CATEGORY: SETTINGS
533 // OS: 6.0
534 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500535 TRUSTED_CREDENTIALS = 92;
Chris Wren7c516842016-03-01 16:44:32 -0500536
537 // OPEN: Settings > Language & input > TTS output > [Engine] > Settings
538 // CATEGORY: SETTINGS
539 // OS: 6.0
540 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500541 TTS_ENGINE_SETTINGS = 93;
Chris Wren7c516842016-03-01 16:44:32 -0500542
543 // OPEN: Settings > Language & input > Text-to-speech output
544 // CATEGORY: SETTINGS
545 // OS: 6.0
546 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500547 TTS_TEXT_TO_SPEECH = 94;
Chris Wren7c516842016-03-01 16:44:32 -0500548
549 // OPEN: Settings > Security > Apps with usage access
550 // CATEGORY: SETTINGS
551 // OS: 6.0
552 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500553 USAGE_ACCESS = 95;
Chris Wren7c516842016-03-01 16:44:32 -0500554
555 // OPEN: Settings > Users
556 // CATEGORY: SETTINGS
557 // OS: 6.0
558 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500559 USER = 96;
Chris Wren7c516842016-03-01 16:44:32 -0500560
561 // OPEN: Settings > Users > [Restricted profile app & content access]
562 // CATEGORY: SETTINGS
563 // OS: 6.0
564 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500565 USERS_APP_RESTRICTIONS = 97;
Chris Wren7c516842016-03-01 16:44:32 -0500566
567 // OPEN: Settings > Users > [User settings]
568 // CATEGORY: SETTINGS
569 // OS: 6.0
570 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500571 USER_DETAILS = 98;
Chris Wren7c516842016-03-01 16:44:32 -0500572
573 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500574 VOICE_INPUT = 99;
Chris Wren7c516842016-03-01 16:44:32 -0500575
576 // OPEN: Settings > More > VPN
577 // CATEGORY: SETTINGS
578 // OS: 6.0
579 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500580 VPN = 100;
Chris Wren7c516842016-03-01 16:44:32 -0500581
582 // OPEN: Settings > Display > Choose wallpaper from
583 // CATEGORY: SETTINGS
584 // OS: 6.0
585 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500586 WALLPAPER_TYPE = 101;
Chris Wren7c516842016-03-01 16:44:32 -0500587
588 // OPEN: Settings > Display > Cast
589 // CATEGORY: SETTINGS
590 // OS: 6.0
591 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500592 WFD_WIFI_DISPLAY = 102;
Chris Wren7c516842016-03-01 16:44:32 -0500593
594 // OPEN: Settings > Wi-Fi
595 // CATEGORY: SETTINGS
596 // OS: 6.0
597 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500598 WIFI = 103;
Chris Wren7c516842016-03-01 16:44:32 -0500599
600 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi
601 // CATEGORY: SETTINGS
602 // OS: 6.0
603 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500604 WIFI_ADVANCED = 104;
Chris Wren7c516842016-03-01 16:44:32 -0500605
606 // OPEN: Settings > More > Wi-Fi Calling
607 // CATEGORY: SETTINGS
608 // OS: 6.0
609 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500610 WIFI_CALLING = 105;
Chris Wren7c516842016-03-01 16:44:32 -0500611
612 // OPEN: Settings > Wi-Fi > Saved networks
613 // CATEGORY: SETTINGS
614 // OS: 6.0
615 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500616 WIFI_SAVED_ACCESS_POINTS = 106;
Chris Wren7c516842016-03-01 16:44:32 -0500617
618 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500619 WIFI_APITEST = 107;
Chris Wren7c516842016-03-01 16:44:32 -0500620
621 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500622 WIFI_INFO = 108;
Chris Wren7c516842016-03-01 16:44:32 -0500623
624 // OPEN: Settings > Wi-Fi > Advanced Wi-Fi > Wi-Fi Direct
625 // CATEGORY: SETTINGS
626 // OS: 6.0
627 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500628 WIFI_P2P = 109;
Chris Wren7c516842016-03-01 16:44:32 -0500629
630 // OPEN: Settings > More
631 // CATEGORY: SETTINGS
632 // OS: 6.0
633 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500634 WIRELESS = 110;
Chris Wren7c516842016-03-01 16:44:32 -0500635
636 // OPEN: Quick Settings Panel
637 // CATEGORY: QUICK_SETTINGS
638 // OS: 6.0
639 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500640 QS_PANEL = 111;
Chris Wren7c516842016-03-01 16:44:32 -0500641
642 // OPEN: QS Airplane mode tile shown
643 // ACTION: QS Airplane mode tile tapped
644 // SUBTYPE: 0 is off, 1 is on
645 // CATEGORY: QUICK_SETTINGS
646 // OS: 6.0
647 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500648 QS_AIRPLANEMODE = 112;
Chris Wren7c516842016-03-01 16:44:32 -0500649
650 // OPEN: QS Bluetooth tile shown
651 // ACTION: QS Bluetooth tile tapped
652 // SUBTYPE: 0 is off, 1 is on
653 // CATEGORY: QUICK_SETTINGS
654 // OS: 6.0
655 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500656 QS_BLUETOOTH = 113;
Chris Wren7c516842016-03-01 16:44:32 -0500657
658 // OPEN: QS Cast tile shown
659 // ACTION: QS Cast tile tapped
660 // CATEGORY: QUICK_SETTINGS
661 // OS: 6.0
662 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500663 QS_CAST = 114;
Chris Wren7c516842016-03-01 16:44:32 -0500664
665 // OPEN: QS Cellular tile shown
666 // ACTION: QS Cellular tile tapped
667 // CATEGORY: QUICK_SETTINGS
668 // OS: 6.0
669 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500670 QS_CELLULAR = 115;
Chris Wren7c516842016-03-01 16:44:32 -0500671
672 // OPEN: QS Color inversion tile shown
673 // ACTION: QS Color inversion tile tapped
674 // SUBTYPE: 0 is off, 1 is on
675 // CATEGORY: QUICK_SETTINGS
676 // OS: 6.0
677 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500678 QS_COLORINVERSION = 116;
Chris Wren7c516842016-03-01 16:44:32 -0500679
680 // OPEN: QS Cellular tile > Cellular detail panel
681 // CATEGORY: QUICK_SETTINGS
682 // OS: 6.0
683 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500684 QS_DATAUSAGEDETAIL = 117;
Chris Wren7c516842016-03-01 16:44:32 -0500685
686 // OPEN: QS Do not disturb tile shown
687 // ACTION: QS Do not disturb tile tapped
688 // SUBTYPE: 0 is off, 1 is on
689 // CATEGORY: QUICK_SETTINGS
690 // OS: 6.0
691 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500692 QS_DND = 118;
Chris Wren7c516842016-03-01 16:44:32 -0500693
694 // OPEN: QS Flashlight tile shown
695 // ACTION: QS Flashlight tile tapped
696 // SUBTYPE: 0 is off, 1 is on
697 // CATEGORY: QUICK_SETTINGS
698 // OS: 6.0
699 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500700 QS_FLASHLIGHT = 119;
Chris Wren7c516842016-03-01 16:44:32 -0500701
702 // OPEN: QS Hotspot tile shown
703 // ACTION: QS Hotspot tile tapped
704 // SUBTYPE: 0 is off, 1 is on
705 // CATEGORY: QUICK_SETTINGS
706 // OS: 6.0
707 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500708 QS_HOTSPOT = 120;
Chris Wren7c516842016-03-01 16:44:32 -0500709
710 // OPEN: QS 3P tile shown
711 // ACTION: QS 3P tile tapped
712 // CATEGORY: QUICK_SETTINGS
713 // OS: 6.0
714 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500715 QS_INTENT = 121;
Chris Wren7c516842016-03-01 16:44:32 -0500716
717 // OPEN: QS Location tile shown
718 // ACTION: QS Location tile tapped
719 // SUBTYPE: 0 is off, 1 is on
720 // CATEGORY: QUICK_SETTINGS
721 // OS: 6.0
722 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500723 QS_LOCATION = 122;
Chris Wren7c516842016-03-01 16:44:32 -0500724
725 // OPEN: QS Rotation tile shown
726 // ACTION: QS Rotation tile tapped
727 // SUBTYPE: 0 is off, 1 is on
728 // CATEGORY: QUICK_SETTINGS
729 // OS: 6.0
730 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500731 QS_ROTATIONLOCK = 123;
Chris Wren7c516842016-03-01 16:44:32 -0500732
733 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500734 QS_USERDETAILITE = 124;
Chris Wren7c516842016-03-01 16:44:32 -0500735
736 // OPEN: QS User list panel
737 // CATEGORY: QUICK_SETTINGS
738 // OS: 6.0
739 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500740 QS_USERDETAIL = 125;
Chris Wren7c516842016-03-01 16:44:32 -0500741
742 // OPEN: QS WiFi tile shown
743 // ACTION: QS WiFi tile tapped
744 // SUBTYPE: 0 is off, 1 is on
745 // CATEGORY: QUICK_SETTINGS
746 // OS: 6.0
747 // GMS: 7.5.46
Chris Wren77781d32016-01-11 14:49:26 -0500748 QS_WIFI = 126;
Chris Wren7c516842016-03-01 16:44:32 -0500749
750 // OPEN: Notification Panel (including lockscreen)
751 // CATEGORY: NOTIFICATION
752 // OS: 5.1.1
753 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500754 NOTIFICATION_PANEL = 127;
Chris Wren7c516842016-03-01 16:44:32 -0500755
756 // OPEN: Notification in panel became visible.
757 // PACKAGE: App that posted the notification.
758 // ACTION: Notification is tapped.
759 // PACKAGE: App that posted the notification
760 // DETAIL: Notification is expanded by user.
761 // PACKAGE: App that posted the notification
762 // DISMISS: Notification is dismissed.
763 // PACKAGE: App that posted the notification
764 // SUBTYPE: Dismiss reason from NotificationManagerService.java
765 // CATEGORY: NOTIFICATION
766 // OS: 5.1.1
767 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500768 NOTIFICATION_ITEM = 128;
Chris Wren7c516842016-03-01 16:44:32 -0500769
770 // ACTION: User tapped notification action
771 // PACKAGE: App that posted the notification
772 // SUBTYPE: Index of action on notification
773 // CATEGORY: NOTIFICATION
774 // OS: 5.0
775 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500776 NOTIFICATION_ITEM_ACTION = 129;
Chris Wren7c516842016-03-01 16:44:32 -0500777
778 // OPEN: Settings > Apps > Configure apps > App permissions
779 // CATEGORY: SETTINGS
780 // OS: 6.0
781 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500782 APPLICATIONS_ADVANCED = 130;
Chris Wren7c516842016-03-01 16:44:32 -0500783
784 // OPEN: Settings > Location > Scanning
785 // CATEGORY: SETTINGS
786 // OS: 6.0
787 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500788 LOCATION_SCANNING = 131;
Chris Wren7c516842016-03-01 16:44:32 -0500789
790 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500791 MANAGE_APPLICATIONS_ALL = 132;
Chris Wren7c516842016-03-01 16:44:32 -0500792
793 // OPEN: Settings > Sound & notification > App notifications
794 // CATEGORY: SETTINGS
795 // OS: 6.0
796 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500797 MANAGE_APPLICATIONS_NOTIFICATIONS = 133;
Chris Wren7c516842016-03-01 16:44:32 -0500798
799 // ACTION: Settings > Wi-Fi > Overflow > Add Network
800 // CATEGORY: SETTINGS
801 // OS: 6.0
802 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500803 ACTION_WIFI_ADD_NETWORK = 134;
Chris Wren7c516842016-03-01 16:44:32 -0500804
805 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
806 // CATEGORY: SETTINGS
807 // OS: 6.0
808 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500809 ACTION_WIFI_CONNECT = 135;
Chris Wren7c516842016-03-01 16:44:32 -0500810
811 // ACTION: Settings > Wi-Fi > Overflow > Refresh
812 // CATEGORY: SETTINGS
813 // OS: 6.0
814 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500815 ACTION_WIFI_FORCE_SCAN = 136;
Chris Wren7c516842016-03-01 16:44:32 -0500816
817 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
818 // CATEGORY: SETTINGS
819 // OS: 6.0
820 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500821 ACTION_WIFI_FORGET = 137;
Chris Wren7c516842016-03-01 16:44:32 -0500822
823 // ACTION: Settings > Wi-Fi > Toggle off
824 // CATEGORY: SETTINGS
825 // OS: 6.0
826 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500827 ACTION_WIFI_OFF = 138;
Chris Wren7c516842016-03-01 16:44:32 -0500828
829 // ACTION: Settings > Wi-Fi > Toggle on
830 // CATEGORY: SETTINGS
831 // OS: 6.0
832 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500833 ACTION_WIFI_ON = 139;
Chris Wren7c516842016-03-01 16:44:32 -0500834
835 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -0500836 MANAGE_PERMISSIONS = 140;
Chris Wren7c516842016-03-01 16:44:32 -0500837
838 // OPEN: Settings > Sound & notification > DND > Priority only allows
839 // CATEGORY: SETTINGS
840 // OS: 6.0
841 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500842 NOTIFICATION_ZEN_MODE_PRIORITY = 141;
Chris Wren7c516842016-03-01 16:44:32 -0500843
844 // OPEN: Settings > Sound & notification > DND > Automatic rules
845 // CATEGORY: SETTINGS
846 // OS: 6.0
847 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500848 NOTIFICATION_ZEN_MODE_AUTOMATION = 142;
Chris Wren7c516842016-03-01 16:44:32 -0500849
850 // OPEN: Settings > Apps > Configure apps > App links
851 // CATEGORY: SETTINGS
852 // OS: 6.0
853 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500854 MANAGE_DOMAIN_URLS = 143;
Chris Wren7c516842016-03-01 16:44:32 -0500855
856 // OPEN: Settings > Sound & notification > DND > [Time based rule]
857 // CATEGORY: SETTINGS
858 // OS: 6.0
859 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500860 NOTIFICATION_ZEN_MODE_SCHEDULE_RULE = 144;
Chris Wren7c516842016-03-01 16:44:32 -0500861
862 // OPEN: Settings > Sound & notification > DND > [External rule]
863 // CATEGORY: SETTINGS
864 // OS: 6.0
865 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500866 NOTIFICATION_ZEN_MODE_EXTERNAL_RULE = 145;
Chris Wren7c516842016-03-01 16:44:32 -0500867
868 // OPEN: Settings > Sound & notification > DND > [Event rule]
869 // CATEGORY: SETTINGS
870 // OS: 6.0
871 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500872 NOTIFICATION_ZEN_MODE_EVENT_RULE = 146;
Chris Wren7c516842016-03-01 16:44:32 -0500873
874 // ACTION: App notification settings > Block Notifications
875 // CATEGORY: SETTINGS
876 // OS: 6.0
877 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500878 ACTION_BAN_APP_NOTES = 147;
Chris Wren7c516842016-03-01 16:44:32 -0500879
880 // ACTION: Notification shade > Dismiss all button
881 // CATEGORY: NOTIFICATION
882 // OS: 6.0
883 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500884 ACTION_DISMISS_ALL_NOTES = 148;
Chris Wren7c516842016-03-01 16:44:32 -0500885
886 // OPEN: QS Do Not Disturb detail panel
887 // CATEGORY: QUICK_SETTINGS
888 // OS: 6.0
889 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500890 QS_DND_DETAILS = 149;
Chris Wren7c516842016-03-01 16:44:32 -0500891
892 // OPEN: QS Bluetooth detail panel
893 // CATEGORY: QUICK_SETTINGS
894 // OS: 6.0
895 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500896 QS_BLUETOOTH_DETAILS = 150;
Chris Wren7c516842016-03-01 16:44:32 -0500897
898 // OPEN: QS Cast detail panel
899 // CATEGORY: QUICK_SETTINGS
900 // OS: 6.0
901 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500902 QS_CAST_DETAILS = 151;
Chris Wren7c516842016-03-01 16:44:32 -0500903
904 // OPEN: QS Wi-Fi detail panel
905 // CATEGORY: QUICK_SETTINGS
906 // OS: 6.0
907 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500908 QS_WIFI_DETAILS = 152;
Chris Wren7c516842016-03-01 16:44:32 -0500909
910 // ACTION: QS Wi-Fi detail panel > Wi-Fi toggle
911 // SUBTYPE: 0 is off, 1 is on
912 // CATEGORY: QUICK_SETTINGS
913 // OS: 6.0
914 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500915 QS_WIFI_TOGGLE = 153;
Chris Wren7c516842016-03-01 16:44:32 -0500916
917 // ACTION: QS Bluetooth detail panel > Bluetooth toggle
918 // SUBTYPE: 0 is off, 1 is on
919 // CATEGORY: QUICK_SETTINGS
920 // OS: 6.0
921 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500922 QS_BLUETOOTH_TOGGLE = 154;
Chris Wren7c516842016-03-01 16:44:32 -0500923
924 // ACTION: QS Cellular detail panel > Cellular toggle
925 // SUBTYPE: 0 is off, 1 is on
926 // CATEGORY: QUICK_SETTINGS
927 // OS: 6.0
928 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500929 QS_CELLULAR_TOGGLE = 155;
Chris Wren7c516842016-03-01 16:44:32 -0500930
931 // ACTION: QS User list panel > Select different user
932 // CATEGORY: QUICK_SETTINGS
933 // OS: 6.0
934 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500935 QS_SWITCH_USER = 156;
Chris Wren7c516842016-03-01 16:44:32 -0500936
937 // ACTION: QS Cast detail panel > Select cast device
938 // CATEGORY: QUICK_SETTINGS
939 // OS: 6.0
940 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500941 QS_CAST_SELECT = 157;
Chris Wren7c516842016-03-01 16:44:32 -0500942
943 // ACTION: QS Cast detail panel > Disconnect cast device
944 // CATEGORY: QUICK_SETTINGS
945 // OS: 6.0
946 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500947 QS_CAST_DISCONNECT = 158;
Chris Wren7c516842016-03-01 16:44:32 -0500948
949 // ACTION: Settings > Bluetooth > Toggle
950 // SUBTYPE: 0 is off, 1 is on
951 // CATEGORY: SETTINGS
952 // OS: 6.0
953 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500954 ACTION_BLUETOOTH_TOGGLE = 159;
Chris Wren7c516842016-03-01 16:44:32 -0500955
956 // ACTION: Settings > Bluetooth > Overflow > Refresh
957 // CATEGORY: SETTINGS
958 // OS: 6.0
959 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500960 ACTION_BLUETOOTH_SCAN = 160;
Chris Wren7c516842016-03-01 16:44:32 -0500961
962 // ACTION: Settings > Bluetooth > Overflow > Rename this device
963 // CATEGORY: SETTINGS
964 // OS: 6.0
965 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500966 ACTION_BLUETOOTH_RENAME = 161;
Chris Wren7c516842016-03-01 16:44:32 -0500967
968 // ACTION: Settings > Bluetooth > Overflow > Show received files
969 // CATEGORY: SETTINGS
970 // OS: 6.0
971 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500972 ACTION_BLUETOOTH_FILES = 162;
Chris Wren7c516842016-03-01 16:44:32 -0500973
974 // ACTION: QS DND details panel > Increase / Decrease exit time
975 // SUBTYPE: true is increase, false is decrease
976 // CATEGORY: QUICK_SETTINGS
977 // OS: 6.0
978 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500979 QS_DND_TIME = 163;
Chris Wren7c516842016-03-01 16:44:32 -0500980
981 // ACTION: QS DND details panel > [Exit condition]
982 // CATEGORY: QUICK_SETTINGS
983 // OS: 6.0
984 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500985 QS_DND_CONDITION_SELECT = 164;
Chris Wren7c516842016-03-01 16:44:32 -0500986
987 // ACTION: QS DND details panel > [DND mode]
988 // SUBTYPE: 1 is priority, 2 is silence, 3 is alarms only
989 // CATEGORY: QUICK_SETTINGS
990 // OS: 6.0
991 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500992 QS_DND_ZEN_SELECT = 165;
Chris Wren7c516842016-03-01 16:44:32 -0500993
994 // ACTION: QS DND detail panel > DND toggle
995 // SUBTYPE: 0 is off, 1 is on
996 // CATEGORY: QUICK_SETTINGS
997 // OS: 6.0
998 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -0500999 QS_DND_TOGGLE = 166;
Chris Wren7c516842016-03-01 16:44:32 -05001000
1001 // ACTION: DND Settings > Priority only allows > Reminder toggle
1002 // SUBTYPE: 0 is off, 1 is on
1003 // CATEGORY: SETTINGS
1004 // OS: 6.0
1005 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001006 ACTION_ZEN_ALLOW_REMINDERS = 167;
Chris Wren7c516842016-03-01 16:44:32 -05001007
1008 // ACTION: DND Settings > Priority only allows > Event toggle
1009 // SUBTYPE: 0 is off, 1 is on
1010 // CATEGORY: SETTINGS
1011 // OS: 6.0
1012 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001013 ACTION_ZEN_ALLOW_EVENTS = 168;
Chris Wren7c516842016-03-01 16:44:32 -05001014
1015 // ACTION: DND Settings > Priority only allows > Messages
1016 // SUBTYPE: 0 is off, 1 is on
1017 // CATEGORY: SETTINGS
1018 // OS: 6.0
1019 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001020 ACTION_ZEN_ALLOW_MESSAGES = 169;
Chris Wren7c516842016-03-01 16:44:32 -05001021
1022 // ACTION: DND Settings > Priority only allows > Calls
1023 // SUBTYPE: 0 is off, 1 is on
1024 // CATEGORY: SETTINGS
1025 // OS: 6.0
1026 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001027 ACTION_ZEN_ALLOW_CALLS = 170;
Chris Wren7c516842016-03-01 16:44:32 -05001028
1029 // ACTION: DND Settings > Priority only allows > Repeat callers toggle
1030 // SUBTYPE: 0 is off, 1 is on
1031 // CATEGORY: SETTINGS
1032 // OS: 6.0
1033 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001034 ACTION_ZEN_ALLOW_REPEAT_CALLS = 171;
Chris Wren7c516842016-03-01 16:44:32 -05001035
1036 // ACTION: DND Settings > Automatic rules > Add rule
1037 // CATEGORY: SETTINGS
1038 // OS: 6.0
1039 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001040 ACTION_ZEN_ADD_RULE = 172;
Chris Wren7c516842016-03-01 16:44:32 -05001041
1042 // ACTION: DND Settings > Automatic rules > Add rule > OK
1043 // CATEGORY: SETTINGS
1044 // OS: 6.0
1045 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001046 ACTION_ZEN_ADD_RULE_OK = 173;
Chris Wren7c516842016-03-01 16:44:32 -05001047
1048 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule
1049 // CATEGORY: SETTINGS
1050 // OS: 6.0
1051 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001052 ACTION_ZEN_DELETE_RULE = 174;
Chris Wren7c516842016-03-01 16:44:32 -05001053
1054 // ACTION: DND Settings > Automatic rules > [Rule] > Delete rule > Delete
1055 // CATEGORY: SETTINGS
1056 // OS: 6.0
1057 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001058 ACTION_ZEN_DELETE_RULE_OK = 175;
Chris Wren7c516842016-03-01 16:44:32 -05001059
1060 // ACTION: DND Settings > Automatic rules > [Rule] > Toggle
1061 // SUBTYPE: 0 is off, 1 is on
1062 // CATEGORY: SETTINGS
1063 // OS: 6.0
1064 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001065 ACTION_ZEN_ENABLE_RULE = 176;
Chris Wren7c516842016-03-01 16:44:32 -05001066
1067 // ACTION: Settings > More > Airplane mode toggle
1068 // SUBTYPE: 0 is off, 1 is on
1069 // CATEGORY: SETTINGS
1070 // OS: 6.0
1071 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001072 ACTION_AIRPLANE_TOGGLE = 177;
Chris Wren7c516842016-03-01 16:44:32 -05001073
1074 // ACTION: Settings > Data usage > Cellular data toggle
1075 // SUBTYPE: 0 is off, 1 is on
1076 // CATEGORY: SETTINGS
1077 // OS: 6.0
1078 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001079 ACTION_CELL_DATA_TOGGLE = 178;
Chris Wren7c516842016-03-01 16:44:32 -05001080
1081 // OPEN: Settings > Sound & notification > Notification access
1082 // CATEGORY: SETTINGS
1083 // OS: 6.0
1084 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001085 NOTIFICATION_ACCESS = 179;
Chris Wren7c516842016-03-01 16:44:32 -05001086
1087 // OPEN: Settings > Sound & notification > Do Not Disturb access
1088 // CATEGORY: SETTINGS
1089 // OS: 6.0
1090 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001091 NOTIFICATION_ZEN_MODE_ACCESS = 180;
Chris Wren7c516842016-03-01 16:44:32 -05001092
1093 // OPEN: Settings > Apps > Configure apps > Default Apps
1094 // CATEGORY: SETTINGS
1095 // OS: 6.0
1096 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001097 APPLICATIONS_DEFAULT_APPS = 181;
Chris Wren7c516842016-03-01 16:44:32 -05001098
1099 // OPEN: Settings > Internal storage > Apps storage
1100 // CATEGORY: SETTINGS
1101 // OS: 6.0
1102 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001103 APPLICATIONS_STORAGE_APPS = 182;
Chris Wren7c516842016-03-01 16:44:32 -05001104
1105 // OPEN: Settings > Security > Usage access
1106 // CATEGORY: SETTINGS
1107 // OS: 6.0
1108 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001109 APPLICATIONS_USAGE_ACCESS_DETAIL = 183;
Chris Wren7c516842016-03-01 16:44:32 -05001110
1111 // OPEN: Settings > Battery > Battery optimization
1112 // CATEGORY: SETTINGS
1113 // OS: 6.0
1114 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001115 APPLICATIONS_HIGH_POWER_APPS = 184;
Chris Wren7c516842016-03-01 16:44:32 -05001116
1117 // OBSOLETE
Chris Wren77781d32016-01-11 14:49:26 -05001118 FUELGAUGE_HIGH_POWER_DETAILS = 185;
Chris Wren7c516842016-03-01 16:44:32 -05001119
1120 // ACTION: Lockscreen > Unlock gesture
1121 // CATEGORY: GLOBAL_SYSTEM_UI
1122 // OS: 5.1.1
1123 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001124 ACTION_LS_UNLOCK = 186;
Chris Wren7c516842016-03-01 16:44:32 -05001125
1126 // ACTION: Lockscreen > Pull shade open
1127 // CATEGORY: GLOBAL_SYSTEM_UI
1128 // OS: 5.1.1
1129 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001130 ACTION_LS_SHADE = 187;
Chris Wren7c516842016-03-01 16:44:32 -05001131
1132 // ACTION: Lockscreen > Tap on lock, shows hint
1133 // CATEGORY: GLOBAL_SYSTEM_UI
1134 // OS: 5.1.1
1135 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001136 ACTION_LS_HINT = 188;
Chris Wren7c516842016-03-01 16:44:32 -05001137
1138 // ACTION: Lockscreen > Camera
1139 // CATEGORY: GLOBAL_SYSTEM_UI
1140 // OS: 5.1.1
1141 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001142 ACTION_LS_CAMERA = 189;
Chris Wren7c516842016-03-01 16:44:32 -05001143
1144 // ACTION: Lockscreen > Dialer
1145 // CATEGORY: GLOBAL_SYSTEM_UI
1146 // OS: 5.1.1
1147 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001148 ACTION_LS_DIALER = 190;
Chris Wren7c516842016-03-01 16:44:32 -05001149
1150 // ACTION: Lockscreen > Tap on lock, locks phone
1151 // CATEGORY: GLOBAL_SYSTEM_UI
1152 // OS: 5.1.1
1153 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001154 ACTION_LS_LOCK = 191;
Chris Wren7c516842016-03-01 16:44:32 -05001155
1156 // ACTION: Lockscreen > Tap on notification, false touch rejection
1157 // CATEGORY: GLOBAL_SYSTEM_UI
1158 // OS: 5.1.1
1159 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001160 ACTION_LS_NOTE = 192;
Chris Wren7c516842016-03-01 16:44:32 -05001161
1162 // ACTION: Lockscreen > Swipe down to open quick settings
1163 // CATEGORY: GLOBAL_SYSTEM_UI
1164 // OS: 6.0
1165 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001166 ACTION_LS_QS = 193;
Chris Wren7c516842016-03-01 16:44:32 -05001167
1168 // ACTION: Swipe down to open quick settings when unlocked
1169 // CATEGORY: GLOBAL_SYSTEM_UI
1170 // OS: 6.0
1171 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001172 ACTION_SHADE_QS_PULL = 194;
Chris Wren7c516842016-03-01 16:44:32 -05001173
1174 // ACTION: Notification shade > Tap to open quick settings
1175 // CATEGORY: GLOBAL_SYSTEM_UI
1176 // OS: 6.0
1177 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001178 ACTION_SHADE_QS_TAP = 195;
Chris Wren7c516842016-03-01 16:44:32 -05001179
1180 // OPEN: Lockscreen
1181 // SUBTYPE: 0 is unsecure, 1 is secured by password / pattern / PIN
1182 // CATEGORY: GLOBAL_SYSTEM_UI
1183 // OS: 5.1.1
1184 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001185 LOCKSCREEN = 196;
Chris Wren7c516842016-03-01 16:44:32 -05001186
1187 // OPEN: Lockscreen > Screen to enter password / pattern / PIN
1188 // CATEGORY: GLOBAL_SYSTEM_UI
1189 // OS: 5.1.1
1190 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001191 BOUNCER = 197;
Chris Wren7c516842016-03-01 16:44:32 -05001192
1193 // OPEN: Screen turned on
1194 // SUBTYPE: 2 is user action
1195 // CATEGORY: GLOBAL_SYSTEM_UI
1196 // OS: 5.1.1
1197 // GMS: 7.8.22
Chris Wren77781d32016-01-11 14:49:26 -05001198 SCREEN = 198;
Chris Wren7c516842016-03-01 16:44:32 -05001199
1200 // OPEN: Notification caused sound, vibration, and/or LED blink
1201 // SUBTYPE: 1 is buzz, 2 is beep, blink is 4, or'd together
1202 // CATEGORY: NOTIFICATION
1203 // OS: 5.1.1
1204 // GMS: 7.8.53
Chris Wren77781d32016-01-11 14:49:26 -05001205 NOTIFICATION_ALERT = 199;
Chris Wren7c516842016-03-01 16:44:32 -05001206
1207 // ACTION: Lockscreen > Emergency Call button
1208 // CATEGORY: GLOBAL_SYSTEM_UI
1209 // OS: 5.1.1
1210 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001211 ACTION_EMERGENCY_CALL = 200;
Chris Wren7c516842016-03-01 16:44:32 -05001212
1213 // OPEN: Settings > Apps > Configure > Default apps > Assist & voice input
1214 // CATEGORY: SETTINGS
1215 // OS: 6.0
1216 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001217 APPLICATIONS_MANAGE_ASSIST = 201;
Chris Wren7c516842016-03-01 16:44:32 -05001218
1219 // OPEN: Settings > Memory
1220 // CATEGORY: SETTINGS
1221 // OS: 6.0
1222 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001223 PROCESS_STATS_SUMMARY = 202;
Chris Wren7c516842016-03-01 16:44:32 -05001224
1225 // ACTION: Settings > Display > When device is rotated
1226 // CATEGORY: SETTINGS
1227 // OS: 6.0
1228 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001229 ACTION_ROTATION_LOCK = 203;
Chris Wren7c516842016-03-01 16:44:32 -05001230
1231 // ACTION: Long press on notification to view controls
1232 // CATEGORY: NOTIFICATION
1233 // OS: 6.0
1234 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001235 ACTION_NOTE_CONTROLS = 204;
Chris Wren7c516842016-03-01 16:44:32 -05001236
1237 // ACTION: Notificatoin controls > Info button
1238 // CATEGORY: NOTIFICATION
1239 // OS: 6.0
1240 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001241 ACTION_NOTE_INFO = 205;
Chris Wren7c516842016-03-01 16:44:32 -05001242
1243 // ACTION: Notification controls > Settings button
1244 // CATEGORY: NOTIFICATION
1245 // OS: 6.0
1246 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001247 ACTION_APP_NOTE_SETTINGS = 206;
Chris Wren7c516842016-03-01 16:44:32 -05001248
1249 // OPEN: Volume Dialog (with hardware buttons)
1250 // CATEGORY: GLOBAL_SYSTEM_UI
1251 // OS: 6.0
1252 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001253 VOLUME_DIALOG = 207;
Chris Wren7c516842016-03-01 16:44:32 -05001254
1255 // OPEN: Volume dialog > Expanded volume dialog (multiple sliders)
1256 // CATEGORY: GLOBAL_SYSTEM_UI
1257 // OS: 6.0
1258 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001259 VOLUME_DIALOG_DETAILS = 208;
Chris Wren7c516842016-03-01 16:44:32 -05001260
1261 // ACTION: Volume dialog > Adjust volume slider
1262 // SUBTYPE: volume level (0-7)
1263 // CATEGORY: GLOBAL_SYSTEM_UI
1264 // OS: 6.0
1265 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001266 ACTION_VOLUME_SLIDER = 209;
Chris Wren7c516842016-03-01 16:44:32 -05001267
1268 // ACTION: Volume dialog > Select non-active stream
1269 // SUBTYPE: stream (defined in AudioSystem.java)
1270 // CATEGORY: GLOBAL_SYSTEM_UI
1271 // OS: 6.0
1272 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001273 ACTION_VOLUME_STREAM = 210;
Chris Wren7c516842016-03-01 16:44:32 -05001274
1275 // ACTION: Adjust volume with hardware key
1276 // SUBTYPE: volume level (0-7)
1277 // CATEGORY: GLOBAL_SYSTEM_UI
1278 // OS: 6.0
1279 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001280 ACTION_VOLUME_KEY = 211;
Chris Wren7c516842016-03-01 16:44:32 -05001281
1282 // ACTION: Volume dialog > Mute a stream by tapping icon
1283 // SUBTYPE: mute is 1, audible is 2
1284 // CATEGORY: GLOBAL_SYSTEM_UI
1285 // OS: 6.0
1286 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001287 ACTION_VOLUME_ICON = 212;
Chris Wren7c516842016-03-01 16:44:32 -05001288
1289 // ACTION: Volume dialog > Change ringer mode by tapping icon
1290 // SUBTYPE: 2 is audible, 3 is vibrate
1291 // CATEGORY: GLOBAL_SYSTEM_UI
1292 // OS: 6.0
1293 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001294 ACTION_RINGER_MODE = 213;
Chris Wren7c516842016-03-01 16:44:32 -05001295
1296 // ACTION: Chooser shown (share target, file open, etc.)
1297 // CATEGORY: GLOBAL_SYSTEM_UI
1298 // OS: 6.0
1299 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001300 ACTION_ACTIVITY_CHOOSER_SHOWN = 214;
Chris Wren7c516842016-03-01 16:44:32 -05001301
1302 // ACTION: Chooser > User taps an app target
1303 // SUBTYPE: Index of target
1304 // CATEGORY: GLOBAL_SYSTEM_UI
1305 // OS: 6.0
1306 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001307 ACTION_ACTIVITY_CHOOSER_PICKED_APP_TARGET = 215;
Chris Wren7c516842016-03-01 16:44:32 -05001308
1309 // ACTION: Chooser > User taps a service target
1310 // SUBTYPE: Index of target
1311 // CATEGORY: GLOBAL_SYSTEM_UI
1312 // OS: 6.0
1313 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001314 ACTION_ACTIVITY_CHOOSER_PICKED_SERVICE_TARGET = 216;
Chris Wren7c516842016-03-01 16:44:32 -05001315
1316 // ACTION: Chooser > User taps a standard target
1317 // SUBTYPE: Index of target
1318 // CATEGORY: GLOBAL_SYSTEM_UI
1319 // OS: 6.0
1320 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001321 ACTION_ACTIVITY_CHOOSER_PICKED_STANDARD_TARGET = 217;
Chris Wren7c516842016-03-01 16:44:32 -05001322
1323 // ACTION: QS Brightness Slider (with auto brightness disabled)
1324 // SUBTYPE: slider value
1325 // CATEGORY: QUICK_SETTINGS
1326 // OS: 6.0
1327 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001328 ACTION_BRIGHTNESS = 218;
Chris Wren7c516842016-03-01 16:44:32 -05001329
1330 // ACTION: QS Brightness Slider (with auto brightness enabled)
1331 // SUBTYPE: slider value
1332 // CATEGORY: QUICK_SETTINGS
1333 // OS: 6.0
1334 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001335 ACTION_BRIGHTNESS_AUTO = 219;
Chris Wren7c516842016-03-01 16:44:32 -05001336
1337 // OPEN: Settings > Display > Brightness Slider
1338 // CATEGORY: SETTINGS
1339 // OS: 6.0
1340 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001341 BRIGHTNESS_DIALOG = 220;
Chris Wren7c516842016-03-01 16:44:32 -05001342
1343 // OPEN: Settings > Apps > Configure Apps > Draw over other apps
1344 // CATEGORY: SETTINGS
1345 // OS: 6.0
1346 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001347 SYSTEM_ALERT_WINDOW_APPS = 221;
Chris Wren7c516842016-03-01 16:44:32 -05001348
1349 // OPEN: Display has entered dream mode
1350 // CATEGORY: GLOBAL_SYSTEM_UI
1351 // OS: 6.0
1352 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001353 DREAMING = 222;
Chris Wren7c516842016-03-01 16:44:32 -05001354
1355 // OPEN: Display has entered ambient notification mode
1356 // CATEGORY: GLOBAL_SYSTEM_UI
1357 // OS: 6.0
1358 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001359 DOZING = 223;
Chris Wren7c516842016-03-01 16:44:32 -05001360
1361 // OPEN: Overview
1362 // CATEGORY: GLOBAL_SYSTEM_UI
1363 // OS: 6.0
1364 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001365 OVERVIEW_ACTIVITY = 224;
Chris Wren7c516842016-03-01 16:44:32 -05001366
1367 // OPEN: Settings > About phone > Legal information
1368 // CATEGORY: SETTINGS
1369 // OS: 6.0
1370 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001371 ABOUT_LEGAL_SETTINGS = 225;
Chris Wren7c516842016-03-01 16:44:32 -05001372
1373 // OPEN: Settings > Search > Perform search
1374 // CATEGORY: SETTINGS
1375 // OS: 6.0
1376 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001377 ACTION_SEARCH_RESULTS = 226;
Chris Wren7c516842016-03-01 16:44:32 -05001378
1379 // OPEN: Settings > System UI Tuner
1380 // CATEGORY: SETTINGS
1381 // OS: 6.0
1382 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001383 TUNER = 227;
Chris Wren7c516842016-03-01 16:44:32 -05001384
1385 // OPEN: Settings > System UI Tuner > Quick Settings
1386 // CATEGORY: SETTINGS
1387 // OS: 6.0
1388 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001389 TUNER_QS = 228;
Chris Wren7c516842016-03-01 16:44:32 -05001390
1391 // OPEN: Settings > System UI Tuner > Demo mode
1392 // CATEGORY: SETTINGS
1393 // OS: 6.0
1394 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001395 TUNER_DEMO_MODE = 229;
Chris Wren7c516842016-03-01 16:44:32 -05001396
1397 // ACTION: Settings > System UI Tuner > Quick Settings > Move tile
1398 // PACKAGE: Tile
1399 // CATEGORY: SETTINGS
1400 // OS: 6.0
1401 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001402 TUNER_QS_REORDER = 230;
Chris Wren7c516842016-03-01 16:44:32 -05001403
1404 // ACTION: Settings > System UI Tuner > Quick Settings > Add tile
1405 // PACKAGE: Tile
1406 // CATEGORY: SETTINGS
1407 // OS: 6.0
1408 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001409 TUNER_QS_ADD = 231;
Chris Wren7c516842016-03-01 16:44:32 -05001410
1411 // ACTION: Settings > System UI Tuner > Quick Settings > Remove tile
1412 // PACKAGE: Tile
1413 // CATEGORY: SETTINGS
1414 // OS: 6.0
1415 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001416 TUNER_QS_REMOVE = 232;
Chris Wren7c516842016-03-01 16:44:32 -05001417
1418 // ACTION: Settings > System UI Tuner > Status bar > Enable icon
1419 // PACKAGE: Icon
1420 // CATEGORY: SETTINGS
1421 // OS: 6.0
1422 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001423 TUNER_STATUS_BAR_ENABLE = 233;
Chris Wren7c516842016-03-01 16:44:32 -05001424
1425 // ACTION: Settings > System UI Tuner > Status bar > Disable icon
1426 // PACKAGE: Icon
1427 // CATEGORY: SETTINGS
1428 // OS: 6.0
1429 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001430 TUNER_STATUS_BAR_DISABLE = 234;
Chris Wren7c516842016-03-01 16:44:32 -05001431
1432 // ACTION: Settings > System UI Tuner > Demo mode > Enable demo mode
1433 // SUBTYPE: false is disabled, true is enabled
1434 // CATEGORY: SETTINGS
1435 // OS: 6.0
1436 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001437 TUNER_DEMO_MODE_ENABLED = 235;
Chris Wren7c516842016-03-01 16:44:32 -05001438
1439 // ACTION: Settings > System UI Tuner > Demo mode > Show demo mode
1440 // SUBTYPE: false is disabled, true is enabled
1441 // CATEGORY: SETTINGS
1442 // OS: 6.0
1443 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001444 TUNER_DEMO_MODE_ON = 236;
Chris Wren7c516842016-03-01 16:44:32 -05001445
1446 // ACTION: Settings > System UI Tuner > Show embedded battery percentage
1447 // SUBTYPE: 0 is disabled, 1 is enabled
1448 // CATEGORY: SETTINGS
1449 // OS: 6.0
1450 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001451 TUNER_BATTERY_PERCENTAGE = 237;
Chris Wren7c516842016-03-01 16:44:32 -05001452
1453 // OPEN: Settings > Developer options > Inactive apps
1454 // CATEGORY: SETTINGS
1455 // OS: 6.0
1456 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001457 FUELGAUGE_INACTIVE_APPS = 238;
Chris Wren7c516842016-03-01 16:44:32 -05001458
1459 // ACTION: Long press home to bring up assistant
1460 // CATEGORY: GLOBAL_SYSTEM_UI
1461 // OS: 6.0
1462 // GMS: 7.5.26
Chris Wren77781d32016-01-11 14:49:26 -05001463 ACTION_ASSIST_LONG_PRESS = 239;
Chris Wren7c516842016-03-01 16:44:32 -05001464
1465 // OPEN: Settings > Security > Nexus Imprint > Add Fingerprint
1466 // CATEGORY: SETTINGS
1467 // OS: 6.0
1468 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001469 FINGERPRINT_ENROLLING = 240;
Chris Wren7c516842016-03-01 16:44:32 -05001470
1471 // OPEN: Fingerprint Enroll > Find Sensor
1472 // CATEGORY: SETTINGS
1473 // OS: 6.0
1474 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001475 FINGERPRINT_FIND_SENSOR = 241;
Chris Wren7c516842016-03-01 16:44:32 -05001476
1477 // OPEN: Fingerprint Enroll > Fingerprint Enrolled!
1478 // CATEGORY: SETTINGS
1479 // OS: 6.0
1480 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001481 FINGERPRINT_ENROLL_FINISH = 242;
Chris Wren7c516842016-03-01 16:44:32 -05001482
1483 // OPEN: Fingerprint Enroll introduction
1484 // CATEGORY: SETTINGS
1485 // OS: 6.0
1486 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001487 FINGERPRINT_ENROLL_INTRO = 243;
Chris Wren7c516842016-03-01 16:44:32 -05001488
1489 // OPEN: Fingerprint Enroll onboarding
1490 // CATEGORY: SETTINGS
1491 // OS: 6.0
1492 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001493 FINGERPRINT_ENROLL_ONBOARD = 244;
Chris Wren7c516842016-03-01 16:44:32 -05001494
1495 // OPEN: Fingerprint Enroll > Let's Start!
1496 // CATEGORY: SETTINGS
1497 // OS: 6.0
1498 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001499 FINGERPRINT_ENROLL_SIDECAR = 245;
Chris Wren7c516842016-03-01 16:44:32 -05001500
1501 // OPEN: Fingerprint Enroll SUW > Let's Start!
1502 // CATEGORY: SETTINGS
1503 // OS: 6.0
1504 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001505 FINGERPRINT_ENROLLING_SETUP = 246;
Chris Wren7c516842016-03-01 16:44:32 -05001506
1507 // OPEN: Fingerprint Enroll SUW > Find Sensor
1508 // CATEGORY: SETTINGS
1509 // OS: 6.0
1510 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001511 FINGERPRINT_FIND_SENSOR_SETUP = 247;
Chris Wren7c516842016-03-01 16:44:32 -05001512
1513 // OPEN: Fingerprint Enroll SUW > Fingerprint Enrolled!
1514 // CATEGORY: SETTINGS
1515 // OS: 6.0
1516 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001517 FINGERPRINT_ENROLL_FINISH_SETUP = 248;
Chris Wren7c516842016-03-01 16:44:32 -05001518
1519 // OPEN: Fingerprint Enroll SUW introduction
1520 // CATEGORY: SETTINGS
1521 // OS: 6.0
1522 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001523 FINGERPRINT_ENROLL_INTRO_SETUP = 249;
Chris Wren7c516842016-03-01 16:44:32 -05001524
1525 // OPEN: Fingerprint Enroll SUW onboarding
1526 // CATEGORY: SETTINGS
1527 // OS: 6.0
1528 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001529 FINGERPRINT_ENROLL_ONBOARD_SETUP = 250;
Chris Wren7c516842016-03-01 16:44:32 -05001530
1531 // ACTION: Add fingerprint > Enroll fingerprint
1532 // CATEGORY: SETTINGS
1533 // OS: 6.0
1534 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001535 ACTION_FINGERPRINT_ENROLL = 251;
Chris Wren7c516842016-03-01 16:44:32 -05001536
1537 // ACTION: Authenticate using fingerprint
1538 // CATEGORY: SETTINGS
1539 // OS: 6.0
1540 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001541 ACTION_FINGERPRINT_AUTH = 252;
Chris Wren7c516842016-03-01 16:44:32 -05001542
1543 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Delete
1544 // CATEGORY: SETTINGS
1545 // OS: 6.0
1546 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001547 ACTION_FINGERPRINT_DELETE = 253;
Chris Wren7c516842016-03-01 16:44:32 -05001548
1549 // ACTION: Settings > Security > Nexus Imprint > [Fingerprint] > Rename
1550 // CATEGORY: SETTINGS
1551 // OS: 6.0
1552 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001553 ACTION_FINGERPRINT_RENAME = 254;
Chris Wren7c516842016-03-01 16:44:32 -05001554
1555 // ACTION: Double tap camera shortcut
1556 // CATEGORY: GLOBAL_SYSTEM_UI
1557 // OS: 6.0
1558 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001559 ACTION_DOUBLE_TAP_POWER_CAMERA_GESTURE = 255;
Chris Wren7c516842016-03-01 16:44:32 -05001560
1561 // ACTION: Double twist camera shortcut
1562 // CATEGORY: GLOBAL_SYSTEM_UI
1563 // OS: 6.0
1564 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001565 ACTION_WIGGLE_CAMERA_GESTURE = 256;
Chris Wren7c516842016-03-01 16:44:32 -05001566
1567 // OPEN: QS Work Mode tile shown
1568 // ACTION: QS Work Mode tile tapped
1569 // SUBTYPE: 0 is off, 1 is on
1570 // CATEGORY: QUICK_SETTINGS
1571 // OS: N
1572 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001573 QS_WORKMODE = 257;
Chris Wren7c516842016-03-01 16:44:32 -05001574
1575 // OPEN: Settings > Developer Options > Background Check
1576 // CATEGORY: SETTINGS
1577 // OS: N
1578 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001579 BACKGROUND_CHECK_SUMMARY = 258;
Chris Wren7c516842016-03-01 16:44:32 -05001580
1581 // OPEN: QS Lock tile shown
1582 // ACTION: QS Lock tile tapped
1583 // SUBTYPE: 0 is off, 1 is on
1584 // CATEGORY: QUICK_SETTINGS
1585 // OS: N
1586 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001587 QS_LOCK_TILE = 259;
Chris Wren7c516842016-03-01 16:44:32 -05001588
1589 // OPEN: QS User Tile shown
1590 // CATEGORY: QUICK_SETTINGS
1591 // OS: N
1592 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001593 QS_USER_TILE = 260;
Chris Wren7c516842016-03-01 16:44:32 -05001594
1595 // OPEN: QS Battery tile shown
1596 // CATEGORY: QUICK_SETTINGS
1597 // OS: N
1598 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001599 QS_BATTERY_TILE = 261;
Chris Wren7c516842016-03-01 16:44:32 -05001600
1601 // OPEN: Settings > Sound > Do not disturb > Visual interruptions
1602 // CATEGORY: SETTINGS
1603 // OS: N
1604 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001605 NOTIFICATION_ZEN_MODE_VISUAL_INTERRUPTIONS = 262;
Chris Wren7c516842016-03-01 16:44:32 -05001606
1607 // ACTION: Visual interruptions > No screen interuptions toggle
1608 // SUBTYPE: 0 is off, 1 is on
1609 // CATEGORY: SETTINGS
1610 // OS: N
1611 // GMS: 7.8.99
Julia Reynoldsd5607292016-02-05 15:25:58 -05001612 ACTION_ZEN_ALLOW_WHEN_SCREEN_OFF = 263;
Chris Wren7c516842016-03-01 16:44:32 -05001613
1614 // ACTION: Visual interruptions > No notification light toggle
1615 // SUBTYPE: 0 is off, 1 is on
1616 // CATEGORY: SETTINGS
1617 // OS: N
1618 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001619 ACTION_ZEN_ALLOW_LIGHTS = 264;
Chris Wren7c516842016-03-01 16:44:32 -05001620
1621 // OPEN: Settings > Notifications > [App] > Topic Notifications
1622 // CATEGORY: SETTINGS
1623 // OS: N
1624 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001625 NOTIFICATION_TOPIC_NOTIFICATION = 265;
Chris Wren7c516842016-03-01 16:44:32 -05001626
1627 // ACTION: Settings > Apps > Default Apps > Select different SMS app
1628 // PACKAGE: Selected SMS app
1629 // CATEGORY: SETTINGS
1630 // OS: N
1631 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001632 ACTION_DEFAULT_SMS_APP_CHANGED = 266;
Chris Wren7c516842016-03-01 16:44:32 -05001633
1634 // OPEN: QS Color modification tile shown
1635 // ACTION: QS Color modification tile tapped
1636 // SUBTYPE: 0 is off, 1 is on
1637 // CATEGORY: QUICK_SETTINGS
1638 // OS: N
1639 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001640 QS_COLOR_MATRIX = 267;
Chris Wren7c516842016-03-01 16:44:32 -05001641
1642 // OPEN: QS Custom tile shown
1643 // ACTION: QS Work Mode tile tapped
1644 // CATEGORY: QUICK_SETTINGS
1645 // OS: N
1646 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001647 QS_CUSTOM = 268;
Chris Wren7c516842016-03-01 16:44:32 -05001648
1649 // ACTION: Visual interruptions > Never turn off the screen toggle
1650 // SUBTYPE: 0 is off, 1 is on
1651 // CATEGORY: SETTINGS
1652 // OS: N
1653 // GMS: 7.8.99
Julia Reynoldsd5607292016-02-05 15:25:58 -05001654 ACTION_ZEN_ALLOW_WHEN_SCREEN_ON = 269;
Chris Wren77781d32016-01-11 14:49:26 -05001655
Chris Wren7c516842016-03-01 16:44:32 -05001656 // ACTION: Overview > Long-press task, drag to enter split-screen
1657 // CATEGORY: GLOBAL_SYSTEM_UI
1658 // OS: N
1659 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001660 ACTION_WINDOW_DOCK_DRAG_DROP = 270;
1661
Chris Wren7c516842016-03-01 16:44:32 -05001662 // ACTION: In App > Long-press Overview button to enter split-screen
1663 // CATEGORY: GLOBAL_SYSTEM_UI
1664 // OS: N
1665 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001666 ACTION_WINDOW_DOCK_LONGPRESS = 271;
1667
Chris Wren7c516842016-03-01 16:44:32 -05001668 // ACTION: In App > Swipe Overview button to enter split-screen
1669 // CATEGORY: GLOBAL_SYSTEM_UI
1670 // OS: N
1671 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001672 ACTION_WINDOW_DOCK_SWIPE = 272;
1673
Chris Wren7c516842016-03-01 16:44:32 -05001674 // ACTION: Launch profile-specific app > Confirm credentials
1675 // CATEGORY: GLOBAL_SYSTEM_UI
1676 // OS: N
1677 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001678 PROFILE_CHALLENGE = 273;
1679
Chris Wren7c516842016-03-01 16:44:32 -05001680 // OPEN: QS Battery detail panel
1681 // CATEGORY: GLOBAL_SYSTEM_UI
1682 // OS: N
1683 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001684 QS_BATTERY_DETAIL = 274;
1685
Chris Wren7c516842016-03-01 16:44:32 -05001686 // OPEN: Overview > History
1687 // CATEGORY: GLOBAL_SYSTEM_UI
1688 // OS: N
1689 // GMS: 7.8.99
Chris Wren77781d32016-01-11 14:49:26 -05001690 OVERVIEW_HISTORY = 275;
1691
Chris Wren7c516842016-03-01 16:44:32 -05001692 // ACTION: Overview > Page by tapping Overview button
1693 // CATEGORY: GLOBAL_SYSTEM_UI
1694 // OS: N
1695 // GMS: 7.8.99
1696 ACTION_OVERVIEW_PAGE = 276;
Chris Wren77781d32016-01-11 14:49:26 -05001697
Chris Wren7c516842016-03-01 16:44:32 -05001698 // ACTION: Overview > Select app
1699 // CATEGORY: GLOBAL_SYSTEM_UI
1700 // OS: N
1701 // GMS: 7.8.99
1702 ACTION_OVERVIEW_SELECT = 277;
mariagpuyol64916b72016-01-21 13:53:21 -08001703
Chris Wren7c516842016-03-01 16:44:32 -05001704 // ACTION: View emergency info
1705 // CATEGORY: GLOBAL_SYSTEM_UI
1706 // OS: N
1707 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001708 ACTION_VIEW_EMERGENCY_INFO = 278;
1709
Chris Wren7c516842016-03-01 16:44:32 -05001710 // ACTION: Edit emergency info activity
1711 // CATEGORY: SETTINGS
1712 // OS: N
1713 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001714 ACTION_EDIT_EMERGENCY_INFO = 279;
1715
Chris Wren7c516842016-03-01 16:44:32 -05001716 // ACTION: Edit emergency info field
1717 // CATEGORY: SETTINGS
1718 // OS: N
1719 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001720 ACTION_EDIT_EMERGENCY_INFO_FIELD = 280;
1721
Chris Wren7c516842016-03-01 16:44:32 -05001722 // ACTION: Add emergency contact
1723 // CATEGORY: SETTINGS
1724 // OS: N
1725 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001726 ACTION_ADD_EMERGENCY_CONTACT = 281;
1727
Chris Wren7c516842016-03-01 16:44:32 -05001728 // ACTION: Delete emergency contact
1729 // CATEGORY: SETTINGS
1730 // OS: N
1731 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001732 ACTION_DELETE_EMERGENCY_CONTACT = 282;
1733
Chris Wren7c516842016-03-01 16:44:32 -05001734 // ACTION: Call emergency contact
1735 // CATEGORY: SETTINGS
1736 // OS: N
1737 // GMS: 7.8.99
mariagpuyol64916b72016-01-21 13:53:21 -08001738 ACTION_CALL_EMERGENCY_CONTACT = 283;
Jason Monk9a4ce132016-01-21 15:27:17 -05001739
Chris Wren7c516842016-03-01 16:44:32 -05001740 // OPEN: QS Data Saver tile shown
1741 // ACTION: QS Data Saver tile tapped
1742 // CATEGORY: QUICK_SETTINGS
Jason Monk9a4ce132016-01-21 15:27:17 -05001743 QS_DATA_SAVER = 284;
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001744
Robin Lee8c1306e2016-02-01 11:37:02 +00001745 // OPEN: Settings > Security > User credentials
1746 // CATEGORY: Settings
Chris Wren7c516842016-03-01 16:44:32 -05001747 // OS: N
Robin Lee8c1306e2016-02-01 11:37:02 +00001748 // GMS: 7.8.99
1749 USER_CREDENTIALS = 285;
Jorim Jaggiea4a19f2016-02-03 21:31:27 -08001750
Chris Wren7c516842016-03-01 16:44:32 -05001751 // ACTION: In App (splitscreen) > Long-press Overview to exit split-screen
1752 // CATEGORY: GLOBAL_SYSTEM_UI
1753 // OS: N
1754 // GMS: 7.8.99
Jorim Jaggidd50c3f2016-02-04 14:55:07 -08001755 ACTION_WINDOW_UNDOCK_LONGPRESS = 286;
Winson42329522016-02-05 10:39:46 -08001756
1757 // Logged when the user scrolls through overview manually
1758 OVERVIEW_SCROLL = 287;
1759
1760 // Logged when the overview times out automatically selecting an app
1761 OVERVIEW_SELECT_TIMEOUT = 288;
1762
1763 // Logged when a user dismisses a task in overview
1764 OVERVIEW_DISMISS = 289;
Julia Reynoldsb1a235f2016-02-09 12:57:02 -05001765
1766 // Logged when the user modifying the notification importance slider.
1767 ACTION_MODIFY_IMPORTANCE_SLIDER = 290;
1768
1769 // Logged when the user saves a modification to notification importance. Negative numbers
1770 // indicate the user lowered the importance; positive means they increased it.
1771 ACTION_SAVE_IMPORTANCE = 291;
Felipe Leme6605bd82016-02-22 15:22:20 -08001772
Chris Wren7c516842016-03-01 16:44:32 -05001773 // ACTION: Long-press power button, then tap "Take bug report" option.
1774 // CATEGORY: GLOBAL_SYSTEM_UI
1775 // OS: N
1776 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001777 ACTION_BUGREPORT_FROM_POWER_MENU_INTERACTIVE = 292;
1778
Chris Wren7c516842016-03-01 16:44:32 -05001779 // ACTION: Long-press power button, then long-press "Take bug report" option.
1780 // CATEGORY: GLOBAL_SYSTEM_UI
1781 // OS: N
1782 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001783 ACTION_BUGREPORT_FROM_POWER_MENU_FULL = 293;
1784
Chris Wren7c516842016-03-01 16:44:32 -05001785 // ACTION: Settings -> Developer Options -> Take bug report -> Interactive report
1786 // CATEGORY: SETTINGS
1787 // OS: N
1788 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001789 // Interactive bug report initiated from Settings.
1790 ACTION_BUGREPORT_FROM_SETTINGS_INTERACTIVE = 294;
1791
Chris Wren7c516842016-03-01 16:44:32 -05001792 // ACTION: Settings -> Developer Options -> Take bug report -> Full report
1793 // CATEGORY: SETTINGS
1794 // OS: N
1795 // GMS: 7.8.99
1796 // Interactive bug report initiated from Settings.
Felipe Leme6605bd82016-02-22 15:22:20 -08001797 ACTION_BUGREPORT_FROM_SETTINGS_FULL = 295;
1798
Chris Wren7c516842016-03-01 16:44:32 -05001799 // ACTION: User tapped notification action to cancel a bug report
1800 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001801 // OS: N
1802 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001803 ACTION_BUGREPORT_NOTIFICATION_ACTION_CANCEL = 296;
1804
Chris Wren7c516842016-03-01 16:44:32 -05001805 // ACTION: User tapped notification action to launch bug report details screen
1806 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001807 // OS: N
1808 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001809 ACTION_BUGREPORT_NOTIFICATION_ACTION_DETAILS = 297;
1810
Chris Wren7c516842016-03-01 16:44:32 -05001811 // ACTION: User tapped notification action to take adition screenshot on bug report
1812 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001813 // OS: N
1814 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001815 ACTION_BUGREPORT_NOTIFICATION_ACTION_SCREENSHOT = 298;
1816
Chris Wren7c516842016-03-01 16:44:32 -05001817 // ACTION: User tapped notification to share bug report
1818 // CATEGORY: NOTIFICATION
Chris Wrendc86f342016-03-03 15:38:40 -05001819 // OS: N
1820 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001821 ACTION_BUGREPORT_NOTIFICATION_ACTION_SHARE = 299;
1822
Chris Wren7c516842016-03-01 16:44:32 -05001823 // ACTION: User changed bug report name using the details screen
1824 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001825 // OS: N
1826 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001827 ACTION_BUGREPORT_DETAILS_NAME_CHANGED = 300;
1828
Chris Wren7c516842016-03-01 16:44:32 -05001829 // ACTION: User changed bug report title using the details screen
1830 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001831 // OS: N
1832 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001833 ACTION_BUGREPORT_DETAILS_TITLE_CHANGED = 301;
1834
Chris Wren7c516842016-03-01 16:44:32 -05001835 // ACTION: User changed bug report description using the details screen
1836 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001837 // OS: N
1838 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001839 ACTION_BUGREPORT_DETAILS_DESCRIPTION_CHANGED = 302;
1840
Chris Wren7c516842016-03-01 16:44:32 -05001841 // ACTION: User tapped Save in the bug report details screen.
1842 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001843 // OS: N
1844 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001845 ACTION_BUGREPORT_DETAILS_SAVED = 303;
1846
Chris Wren7c516842016-03-01 16:44:32 -05001847 // ACTION: User tapped Cancel in the bug report details screen.
1848 // CATEGORY: GLOBAL_SYSTEM_UI
Chris Wrendc86f342016-03-03 15:38:40 -05001849 // OS: N
1850 // GMS: 7.8.99
Felipe Leme6605bd82016-02-22 15:22:20 -08001851 ACTION_BUGREPORT_DETAILS_CANCELED = 304;
Jason Monk5732df42016-02-24 16:24:55 -05001852
1853 // Tuner: Open/close calibrate dialog.
1854 TUNER_CALIBRATE_DISPLAY = 305;
1855
1856 // Tuner: Open/close color and appearance.
1857 TUNER_COLOR_AND_APPEARANCE = 306;
1858
1859 // Tuner: Apply calibrate dialog.
1860 ACTION_TUNER_CALIBRATE_DISPLAY_CHANGED = 307;
1861
1862 // Tuner: Open/close night mode.
1863 TUNER_NIGHT_MODE = 308;
1864
1865 // Tuner: Change night mode.
1866 ACTION_TUNER_NIGHT_MODE = 309;
1867
1868 // Tuner: Change night mode auto.
1869 ACTION_TUNER_NIGHT_MODE_AUTO = 310;
1870
1871 // Tuner: Change night mode adjust dark theme.
1872 ACTION_TUNER_NIGHT_MODE_ADJUST_DARK_THEME = 311;
1873
1874 // Tuner: Change night mode adjust tint.
1875 ACTION_TUNER_NIGHT_MODE_ADJUST_TINT = 312;
1876
1877 // Tuner: Change night mode adjust brightness.
1878 ACTION_TUNER_NIGHT_MODE_ADJUST_BRIGHTNESS = 313;
1879
1880 // Tuner: Change do not disturb in volume panel.
1881 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_PANEL = 314;
1882
1883 // Tuner: Change do not disturb volume buttons shortcut.
1884 ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT = 315;
Adrian Roos90462222016-02-17 15:45:09 -08001885
1886 // Logs the action the user takes when an app crashed.
1887 ACTION_APP_CRASH = 316;
1888
1889 // Logs the action the user takes when an app ANR'd.
1890 ACTION_APP_ANR = 317;
Winsond9342902016-02-25 10:18:33 -08001891
1892 // Logged when a user double taps the overview button to launch the previous task
1893 OVERVIEW_LAUNCH_PREVIOUS_TASK = 318;
Jorim Jaggi275561a2016-02-23 10:11:02 -05001894
1895 // Logged when we execute an app transition. This indicates the total delay from startActivity
1896 // until the app transition is starting to animate, in milliseconds.
1897 APP_TRANSITION_DELAY_MS = 319;
1898
1899 // Logged when we execute an app transition. This indicates the reason why the transition
1900 // started. Must be one of ActivityManagerInternal.APP_TRANSITION_* reasons.
1901 APP_TRANSITION_REASON = 320;
1902
1903 // Logged when we execute an app transition and we drew a starting window. This indicates the
1904 // delay from startActivity until the starting window was drawn.
1905 APP_TRANSITION_STARTING_WINDOW_DELAY_MS = 321;
1906
1907 // Logged when we execute an app transition and all windows of the app got drawn. This indicates
1908 // the delay from startActivity until all windows have been drawn.
1909 APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS = 322;
1910
1911 // Logged when we execute an app transition. This indicates the component name of the current
1912 // transition.
1913 APP_TRANSITION_COMPONENT_NAME = 323;
1914
1915 // Logged when we execute an app transition. This indicates whether the process was already
1916 // running.
1917 APP_TRANSITION_PROCESS_RUNNING = 324;
1918
1919 // Logged when we execute an app transition. This indicates the device uptime in seconds when
1920 // the transition was executed.
1921 APP_TRANSITION_DEVICE_UPTIME_SECONDS = 325;
Felipe Leme3e166b22016-02-24 10:17:41 -08001922
1923 // User granted access to the request folder; action takes an integer
1924 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001925 // (or -2 for root access, or -1 or unknown directory).
Felipe Leme3e166b22016-02-24 10:17:41 -08001926 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_FOLDER = 326;
1927
1928 // User denied access to the request folder; action takes an integer
1929 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001930 // (or -2 for root access, or -1 or unknown directory).
Felipe Leme3e166b22016-02-24 10:17:41 -08001931 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_FOLDER = 327;
1932
1933 // User granted access to the request folder; action pass package name
1934 // of calling package.
1935 ACTION_SCOPED_DIRECTORY_ACCESS_GRANTED_BY_PACKAGE = 328;
1936
1937 // User denied access to the request folder; action pass package name
1938 // of calling package.
1939 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_BY_PACKAGE = 329;
1940
1941 // App requested access to a directory it has already been granted
1942 // access before; action takes an integer representing the folder's
1943 // index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07001944 // (or -2 for root access, or -1 or unknown directory).
Felipe Leme3e166b22016-02-24 10:17:41 -08001945 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_FOLDER = 330;
1946
1947 // App requested access to a directory it has already been granted
1948 // access before; action pass package name of calling package.
1949 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_GRANTED_BY_PACKAGE = 331;
Adrian Roos159ef7b2016-02-25 11:58:32 -08001950
Mady Mellora41587b2016-02-11 18:43:06 -08001951 // Logged when the user slides a notification and
1952 // reveals the gear beneath it.
1953 ACTION_REVEAL_GEAR = 332;
1954
1955 // Logged when the user taps on the gear beneath
1956 // a notification.
1957 ACTION_TOUCH_GEAR = 333;
1958
Ruben Brunke24b9a62016-02-16 21:38:24 -08001959 // Logs that the user has edited the enabled VR listeners.
1960 VR_MANAGE_LISTENERS = 334;
1961
Jason Monk6f5354d2016-03-08 14:18:08 -05001962 // Settings -> Accessibility -> Click after pointer stops moving
1963 ACCESSIBILITY_TOGGLE_AUTOCLICK = 335;
1964 // Settings -> Sound
1965 SOUND = 336;
1966 // Settings -> Notifications -> Gear
1967 CONFIGURE_NOTIFICATION = 337;
1968 // Settings -> Wi-Fi -> Gear
1969 CONFIGURE_WIFI = 338;
1970 // Settings -> Display -> Display size
1971 DISPLAY_SCREEN_ZOOM = 339;
1972 // Settings -> Display -> Font size
1973 ACCESSIBILITY_FONT_SIZE = 340;
1974 // Settings -> Data usage -> Cellular/Wi-Fi data usage
1975 DATA_USAGE_LIST = 341;
1976 // Settings -> Data usage -> Billing cycle or DATA_USAGE_LIST -> Gear
1977 BILLING_CYCLE = 342;
1978 // DATA_USAGE_LIST -> Any item or App info -> Data usage
1979 APP_DATA_USAGE = 343;
1980 // Settings -> Language & input -> Language
1981 USER_LOCALE_LIST = 344;
1982 // Settings -> Language & input -> Virtual keyboard
1983 VIRTUAL_KEYBOARDS = 345;
1984 // Settings -> Language & input -> Physical keyboard
1985 PHYSICAL_KEYBOARDS = 346;
1986 // Settings -> Language & input -> Virtual keyboard -> Add a virtual keyboard
1987 ENABLE_VIRTUAL_KEYBOARDS = 347;
1988 // Settings -> Data usage -> Data Saver
1989 DATA_SAVER_SUMMARY = 348;
1990 // Settings -> Data usage -> Data Saver -> Unrestricted data access
1991 DATA_USAGE_UNRESTRICTED_ACCESS = 349;
1992
1993 // Used for generic logging of Settings Preference Persistence, should not be used
1994 // outside SharedPreferencesLogger.
1995 ACTION_GENERIC_PACKAGE = 350;
1996 // Settings -> Apps -> Gear -> Special access
1997 SPECIAL_ACCESS = 351;
1998
Muyuan Lia2129992016-03-03 18:30:39 -08001999 // Logs that the user docks window via shortcut key.
2000 WINDOW_DOCK_SHORTCUTS = 352;
2001
Felipe Lemeadccb992016-03-09 17:40:49 -08002002 // User already denied access to the request folder; action takes an integer
2003 // representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002004 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002005 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_FOLDER = 353;
2006
2007 // User already denied access to the request folder; action pass package name
2008 // of calling package.
2009 ACTION_SCOPED_DIRECTORY_ACCESS_ALREADY_DENIED_BY_PACKAGE = 354;
2010
2011 // User denied access to the request folder and checked 'Do not ask again';
2012 // action takes an integer representing the folder's index on Environment.STANDARD_DIRECTORIES
Felipe Lemedb892b82016-03-17 18:56:20 -07002013 // (or -2 for root access, or -1 or unknown directory).
Felipe Lemeadccb992016-03-09 17:40:49 -08002014 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_FOLDER = 355;
2015
2016 // User denied access to the request folder and checked 'Do not ask again';
2017 // action pass package name of calling package.
2018 ACTION_SCOPED_DIRECTORY_ACCESS_DENIED_AND_PERSIST_BY_PACKAGE = 356;
2019
Winson3b6ba1a2016-03-22 15:37:54 -07002020 // Logged when a user dismisses all task in overview
2021 OVERVIEW_DISMISS_ALL = 357;
2022
Jason Monk96defbe2016-03-29 16:51:03 -04002023 // Quick Settings -> Edit
2024 QS_EDIT = 358;
2025
2026 // Quick Settings -> Edit -> Overflow -> Reset
2027 ACTION_QS_EDIT_RESET = 359;
2028
2029 // QS -> Edit - Drag a tile out of the active tiles.
2030 // The _SPEC contains either the spec of the tile or
2031 // the package of the 3rd party app in the PKG field.
2032 ACTION_QS_EDIT_REMOVE_SPEC = 360;
2033 ACTION_QS_EDIT_REMOVE = 361;
2034
2035 // QS -> Edit - Drag a tile into the active tiles.
2036 // The _SPEC contains either the spec of the tile or
2037 // the package of the 3rd party app in the PKG field.
2038 ACTION_QS_EDIT_ADD_SPEC = 362;
2039 ACTION_QS_EDIT_ADD = 363;
2040
2041 // QS -> Edit - Drag a tile within the active tiles.
2042 // The _SPEC contains either the spec of the tile or
2043 // the package of the 3rd party app in the PKG field.
2044 ACTION_QS_EDIT_MOVE_SPEC = 364;
2045 ACTION_QS_EDIT_MOVE = 365;
2046
2047 // Long-press on a QS tile. Tile spec in package field.
2048 ACTION_QS_LONG_PRESS = 366;
2049
Anna Galuszadad131f2016-03-22 13:49:02 -07002050 // OPEN: SUW Welcome Screen -> Vision Settings
2051 // CATEGORY: SETTINGS
2052 // OS: N
2053 SUW_ACCESSIBILITY = 367;
2054
2055 // OPEN: SUW Welcome Screen -> Vision Settings -> Magnification gesture
2056 // ACTION: New magnification gesture configuration is chosen
2057 // SUBTYPE: 0 is off, 1 is on
2058 // CATEGORY: SETTINGS
2059 // OS: N
2060 SUW_ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION = 368;
2061
2062 // OPEN: SUW Welcome Screen -> Vision Settings -> Font size
2063 // ACTION: New font size is chosen
2064 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is largest
2065 // CATEGORY: SETTINGS
2066 // OS: N
2067 SUW_ACCESSIBILITY_FONT_SIZE = 369;
2068
2069 // OPEN: SUW Welcome Screen -> Vision Settings -> Display size
2070 // ACTION: New display size is chosen
2071 // SUBTYPE: 0 is small, 1 is default, 2 is large, 3 is larger, 4 is largest
2072 // CATEGORY: SETTINGS
2073 // OS: N
2074 SUW_ACCESSIBILITY_DISPLAY_SIZE = 370;
2075
2076 // OPEN: SUW Welcome Screen -> Vision Settings -> TalkBack
2077 // ACTION: New screen reader configuration is chosen
2078 // SUBTYPE: 0 is off, 1 is on
2079 // CATEGORY: SETTINGS
2080 // OS: N
2081 SUW_ACCESSIBILITY_TOGGLE_SCREEN_READER = 371;
2082
Jason Monkc3620392016-03-30 15:46:03 -04002083 // ------- Begin N Settings conditionals -----
2084 // Conditionals are the green bars at the top of the settings dashboard
2085 // All conditionals will have visible/hide events onResume/onPause
2086 // but they will also be used as extra ints in the
2087 // dismiss/expand/collapse/click/button events
2088
2089 // swipe away conditional
2090 ACTION_SETTINGS_CONDITION_DISMISS = 372;
2091
2092 // click on collapsed conditional or clicks expand button
2093 ACTION_SETTINGS_CONDITION_EXPAND = 373;
2094
2095 // click collapse button on expanded conditional
2096 ACTION_SETTINGS_CONDITION_COLLAPSE = 374;
2097
2098 // click main area of expanded conditional
2099 ACTION_SETTINGS_CONDITION_CLICK = 375;
2100
2101 // click a direct button on expanded conditional
2102 ACTION_SETTINGS_CONDITION_BUTTON = 376;
2103
2104 // Airplane mode on
2105 SETTINGS_CONDITION_AIRPLANE_MODE = 377;
2106 // AKA Data saver on
2107 SETTINGS_CONDITION_BACKGROUND_DATA = 378;
2108 // Battery saver on
2109 SETTINGS_CONDITION_BATTERY_SAVER = 379;
2110 // Cellular data off
2111 SETTINGS_CONDITION_CELLULAR_DATA = 380;
2112 // Do not disturb on
2113 SETTINGS_CONDITION_DND = 381;
2114 // Hotspot on
2115 SETTINGS_CONDITION_HOTSPOT = 382;
2116 // Work profile off
2117 SETTINGS_CONDITION_WORK_MODE = 383;
2118
Jason Monk1b5d87b2016-03-30 16:03:15 -04002119 // ------- Begin N Settings suggestions -----
2120 // Since suggestions come from system apps, suggestions will
2121 // have generic constants and the package providing the suggestion
2122 // will be put in the package field. For suggestions in the Settings
2123 // package, the class name will be filled in instead (since settings
2124 // provides several suggetions).
2125
2126 // Settings shown/hidden on main settings dashboard.
2127 // These are actually visibility events, but visible/hidden doesn't
2128 // take a package, so these are being logged as actions.
Jason Monkd9b79092016-03-31 10:00:09 -04002129 ACTION_SHOW_SETTINGS_SUGGESTION = 384;
2130 ACTION_HIDE_SETTINGS_SUGGESTION = 385;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002131
2132 // Click on a suggestion.
Jason Monkd9b79092016-03-31 10:00:09 -04002133 ACTION_SETTINGS_SUGGESTION = 386;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002134
2135 // Suggestion -> Overflow -> Remove.
Jason Monkd9b79092016-03-31 10:00:09 -04002136 ACTION_SETTINGS_DISMISS_SUGGESTION = 387;
Jason Monk1b5d87b2016-03-30 16:03:15 -04002137
Adrian Roos159ef7b2016-02-25 11:58:32 -08002138 // Add new aosp constants above this line.
2139 // END OF AOSP CONSTANTS
Chris Wren77781d32016-01-11 14:49:26 -05002140 }
2141}